2015-01-20 17:50:46 -05:00
|
|
|
buildscript {
|
2016-01-04 06:39:25 -05:00
|
|
|
repositories {
|
2018-04-29 13:04:13 -04:00
|
|
|
google()
|
2023-09-15 05:29:30 -04:00
|
|
|
mavenCentral()
|
2015-01-24 17:22:04 -05:00
|
|
|
}
|
2016-08-14 06:23:05 -04:00
|
|
|
|
|
|
|
ext {
|
2023-09-15 04:08:16 -04:00
|
|
|
versions = [supportLib: "28.0.0",
|
|
|
|
kotlin : "1.8.20",
|
|
|
|
sdk : [compile: 33, min: 21, target: 33]]
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:8.1.0'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
|
2016-08-14 06:23:05 -04:00
|
|
|
}
|
2016-01-04 06:39:25 -05:00
|
|
|
}
|
2015-01-20 17:52:52 -05:00
|
|
|
|
2016-01-04 06:39:25 -05:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-04-29 13:04:13 -04:00
|
|
|
google()
|
2023-09-15 05:29:30 -04:00
|
|
|
mavenCentral()
|
2016-01-04 06:39:25 -05:00
|
|
|
|
2016-01-06 06:38:39 -05:00
|
|
|
flatDir {
|
|
|
|
dirs 'misc/libs'
|
|
|
|
}
|
2016-02-28 15:34:58 -05:00
|
|
|
|
|
|
|
if (!project.hasProperty("ossrhUsername")) {
|
|
|
|
ext.ossrhUsername = "no-username"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!project.hasProperty("ossrhPassword")) {
|
|
|
|
ext.ossrhPassword = "no-password"
|
|
|
|
}
|
2015-01-20 17:52:52 -05:00
|
|
|
}
|
2018-04-30 08:38:41 -04:00
|
|
|
}
|