79 lines
2.5 KiB
Plaintext
79 lines
2.5 KiB
Plaintext
import java.util.Date
|
|
import java.text.SimpleDateFormat
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("applovin-quality-service")
|
|
id("com.google.gms.google-services")
|
|
id("com.google.firebase.crashlytics")
|
|
}
|
|
applovin{
|
|
apiKey = "y87o4e7vb5bbqzuGVTFyOIfZiyBG0Nf0Ksq8S3m2MJOHf_A5BcWGJnKuQqoxwxVvtdQdiTC4O3MPzFwy8rJ9Cc"
|
|
}
|
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
|
android {
|
|
namespace = "com.keyboardskinning.theme"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.keyboardskinning.theme"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 2
|
|
versionName = "1.0.1"
|
|
|
|
setProperty("archivesBaseName", "KeyboardSkinning_V" + versionName + "(${versionCode})_$timestamp")
|
|
testInstrumentationRunner = "androidx.theme.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
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 {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.4.3"
|
|
}
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
|
|
implementation("androidx.activity:activity-compose:1.8.2")
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
implementation("com.google.android.material:material:1.11.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation ("com.github.bumptech.glide:glide:4.16.0")
|
|
implementation("com.github.omicronapps:7-Zip-JBinding-4Android:Release-16.02-2.02")
|
|
|
|
implementation("com.applovin:applovin-sdk:+")
|
|
implementation("com.applovin.mediation:vungle-adapter:+")
|
|
implementation("com.applovin.mediation:bytedance-adapter:+")
|
|
implementation(platform("com.google.firebase:firebase-bom:32.3.1"))
|
|
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
implementation ("com.google.firebase:firebase-crashlytics-ktx")
|
|
} |