Magisk/build.gradle

26 lines
564 B
Groovy
Raw Normal View History

2016-08-05 16:58:05 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2016-08-21 13:29:42 +00:00
mavenCentral()
2016-08-05 16:58:05 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
2016-08-05 16:58:05 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2016-08-25 09:04:56 +00:00
maven { url "https://jitpack.io" }
2016-08-05 16:58:05 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}