84 lines
2.5 KiB
Plaintext
84 lines
2.5 KiB
Plaintext
|
|
import java.util.Date
|
|
import java.text.SimpleDateFormat
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
kotlin("kapt")
|
|
id ("kotlin-android")
|
|
}
|
|
|
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
|
android {
|
|
namespace = "com.app.input.personalised.board"
|
|
compileSdk = 36
|
|
defaultConfig {
|
|
applicationId = "com.app.personalised.board"
|
|
minSdk = 24
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
setProperty(
|
|
"archivesBaseName",
|
|
"PersonalisedKeyboard_V" + versionName + "(${versionCode})_$timestamp"
|
|
)
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
buildFeatures {
|
|
buildConfig = true
|
|
viewBinding = true
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.core:core-ktx:1.15.0")
|
|
implementation("androidx.appcompat:appcompat:1.7.1")
|
|
implementation("com.google.android.material:material:1.13.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
|
|
implementation("androidx.activity:activity:1.12.1")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.3.0")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
|
|
|
|
|
|
implementation("com.squareup.okhttp3:okhttp:5.3.2")
|
|
implementation("com.github.bumptech.glide:glide:5.0.5")
|
|
implementation ("jp.wasabeef:glide-transformations:4.3.0")
|
|
//Glide支持webp动图的库
|
|
implementation("com.github.zjupure:webpdecoder:2.7.4.16.0")
|
|
implementation("com.github.omicronapps:7-Zip-JBinding-4Android:Release-16.02-2.03")
|
|
|
|
val room_version = "2.8.4"
|
|
implementation ("androidx.room:room-runtime:$room_version")
|
|
kapt("androidx.room:room-compiler:$room_version")
|
|
implementation ("androidx.room:room-ktx:$room_version")
|
|
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
|
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2")
|
|
|
|
implementation("com.google.android.material:material:1.8.0")
|
|
|
|
|
|
|
|
} |