import java.util.Date import java.text.SimpleDateFormat plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("com.google.gms.google-services") id("com.google.firebase.crashlytics") id("io.objectbox") } val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date()) android { namespace = "com.nature.free.test" compileSdk = 34 defaultConfig { //com.nature.free.variouswallpaper applicationId = "com.nature.free.variouswallpaper" minSdk = 23 targetSdk = 34 versionCode = 4 versionName = "1.0.3" setProperty( "archivesBaseName", "Various Wallpapers_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 } buildFeatures { viewBinding = true } } dependencies { implementation("androidx.appcompat:appcompat:1.7.0") implementation("com.google.android.material:material:1.12.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.github.bumptech.glide:glide:4.16.0") annotationProcessor("com.github.bumptech.glide:compiler:4.16.0") //----------------firebase implementation(platform("com.google.firebase:firebase-bom:33.1.1")) implementation("com.google.firebase:firebase-crashlytics") implementation("com.google.firebase:firebase-analytics") }