You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.3 KiB
Kotlin
104 lines
3.3 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("org.jetbrains.kotlin.plugin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.onlinemsg.client"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.onlinemsg.client"
|
|
minSdk = 26
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0.0.1"
|
|
|
|
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_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.5.14"
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.core:core-ktx:1.13.1")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.6")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.8.6")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.6")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.6")
|
|
implementation("androidx.activity:activity-compose:1.9.2")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
|
|
implementation(platform("androidx.compose:compose-bom:2024.09.03"))
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
|
|
implementation("androidx.datastore:datastore-preferences:1.1.1")
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.03"))
|
|
androidTestImplementation("androidx.test.ext:junit:1.2.1")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
}
|
|
|
|
val debugApkExportDir: String = providers.gradleProperty("debugApkExportDir")
|
|
.orElse(providers.environmentVariable("DEBUG_APK_EXPORT_DIR"))
|
|
.orElse(layout.buildDirectory.dir("exports/apk-debug").map { it.asFile.absolutePath })
|
|
.get()
|
|
val debugApkExportName = "onlinemsgclient-debug.apk"
|
|
|
|
val exportDebugApk by tasks.registering(Copy::class) {
|
|
from(layout.buildDirectory.file("outputs/apk/debug/app-debug.apk"))
|
|
into(debugApkExportDir)
|
|
rename { debugApkExportName }
|
|
doFirst {
|
|
file(debugApkExportDir).mkdirs()
|
|
}
|
|
}
|
|
|
|
tasks.matching { it.name == "assembleDebug" }.configureEach {
|
|
finalizedBy(exportDebugApk)
|
|
}
|