64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
id("applovin-quality-service")
|
|
id("com.google.gms.google-services")
|
|
id("com.google.firebase.crashlytics")
|
|
}
|
|
applovin{
|
|
apiKey = "BAorLOnK5J2flG9XoJ_9GHUnqETtkiGRooRrcLMv6NTkcN1TGQblSvTkB4kdKPmVomCyvusXDiNfVk0_eegmSt"
|
|
}
|
|
android {
|
|
namespace = "emoticon.wasticker.app"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "emoticon.wasticker.app"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 5
|
|
versionName = "1.0.4"
|
|
|
|
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
|
|
}
|
|
sourceSets {
|
|
getByName("main") {
|
|
assets {
|
|
srcDirs("src\\main\\assets", "src\\main\\assets")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
implementation("com.google.android.material:material:1.11.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
|
|
implementation ("com.google.code.gson:gson:2.10.1")
|
|
implementation ("com.github.bumptech.glide:glide:4.16.0")
|
|
|
|
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")
|
|
|
|
} |