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.
62 lines
1.9 KiB
62 lines
1.9 KiB
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = 30
|
|
|
|
defaultConfig {
|
|
applicationId = "com.gyf.csams.background"
|
|
minSdk = 21
|
|
targetSdk = 30
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
useIR = true
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = rootProject.extra["compose_version"] as String
|
|
kotlinCompilerVersion = "1.4.32"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.core:core-ktx:1.3.2")
|
|
implementation("androidx.appcompat:appcompat:1.2.0")
|
|
implementation("com.google.android.material:material:1.3.0")
|
|
implementation("androidx.compose.ui:ui:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.compose.material:material:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.compose.ui:ui-tooling:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.3.1")
|
|
implementation("androidx.activity:activity-compose:1.3.0-alpha07")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.2")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4:${rootProject.extra["compose_version"]}")
|
|
} |