73 lines
2.2 KiB
Plaintext
73 lines
2.2 KiB
Plaintext
import java.util.Date
|
|
import java.text.SimpleDateFormat
|
|
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.jetbrains.kotlin.android)
|
|
id("com.google.gms.google-services")
|
|
id("com.google.firebase.crashlytics")
|
|
}
|
|
|
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
|
android {
|
|
namespace = "com.sunny.app.soft.timberkeyboardnew"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
//com.sunny.tools.app.soft
|
|
applicationId = "com.sunny.tools.app.soft"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 3
|
|
versionName = "1.0.2"
|
|
setProperty("archivesBaseName", "Custom Keyboard_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_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.androidx.activity)
|
|
implementation(libs.androidx.constraintlayout)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.junit)
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
implementation("com.geyifeng.immersionbar:immersionbar:3.2.2")
|
|
implementation("com.geyifeng.immersionbar:immersionbar-ktx:3.2.2")
|
|
|
|
implementation ("com.google.code.gson:gson:2.10.1")
|
|
implementation ("com.github.bumptech.glide:glide:4.12.0")
|
|
annotationProcessor ("com.github.bumptech.glide:compiler:4.12.0")
|
|
|
|
|
|
|
|
implementation(platform("com.google.firebase:firebase-bom:32.3.1"))
|
|
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
implementation("com.google.firebase:firebase-crashlytics-ktx")
|
|
|
|
//-----------------------------Unity Ads SDK
|
|
implementation("com.unity3d.ads:unity-ads:4.9.1")
|
|
|
|
|
|
|
|
} |