Simple-Commons/build.gradle

39 lines
961 B
Groovy
Raw Normal View History

2016-12-10 23:22:27 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-08-12 19:51:04 +00:00
propCompileSdkVersion = 33
propMinSdkVersion = 23
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.34.26'
2022-08-08 18:25:38 +00:00
kotlin_version = '1.7.10'
}
2016-12-10 23:22:27 +00:00
repositories {
google()
jcenter()
2016-12-10 23:22:27 +00:00
}
2016-12-10 23:22:27 +00:00
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-12-10 23:22:27 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
2016-12-10 23:22:27 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}