You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
976 B
29 lines
976 B
val store_password by extra("123456")
|
|
val key_alias by extra("csams")
|
|
val key_password by extra("123456")
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
//Jetpack Compose版本
|
|
val compose_version by extra("1.0.0-beta07")
|
|
|
|
val SERVER_ADDRESS by extra("http://192.168.50.107:8080")
|
|
val kotlin_version by extra("1.4.32")
|
|
|
|
repositories {
|
|
maven("https://maven.aliyun.com/repository/google")
|
|
maven("https://maven.aliyun.com/repository/public")
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.1.0-alpha01")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle.kts files
|
|
}
|
|
}
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
} |