Magisk/build.gradle

26 lines
564 B
Groovy
Raw Normal View History

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