SMAPI-Android-Installer/build.gradle

33 lines
833 B
Groovy
Raw Normal View History

2020-03-04 18:05:03 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenCentral()
2020-03-04 18:05:03 +08:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0-beta01"
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
2020-03-04 18:05:03 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
2020-03-11 03:15:13 +08:00
maven { url 'https://jitpack.io' }
2020-03-04 18:05:03 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}