salmon-wallpaper/proj.android-studio/build.gradle

36 lines
765 B
Groovy
Raw Permalink Normal View History

2017-01-10 15:02:51 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-11-18 10:36:37 +00:00
ext {
compileSdkVersion = 28
targetSdkVersion = 28
kotlin_version = "1.3.10"
supportLibraryVersion = "28.0.0"
}
2018-10-31 09:48:08 +00:00
2017-01-10 15:02:51 +00:00
repositories {
jcenter()
2018-10-31 09:48:08 +00:00
google()
2017-01-10 15:02:51 +00:00
}
dependencies {
2018-11-18 10:36:37 +00:00
classpath 'com.android.tools.build:gradle:3.2.1'
2018-10-31 09:48:08 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2017-01-10 15:02:51 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2018-10-31 09:48:08 +00:00
2017-01-10 15:02:51 +00:00
allprojects {
repositories {
jcenter()
2018-10-31 09:48:08 +00:00
google()
2017-01-10 15:02:51 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}