import java.text.SimpleDateFormat import java.util.Date plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("io.objectbox") kotlin("kapt") } val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date()) android { namespace = "com.wall.proshot.wallpapers" compileSdk = 36 defaultConfig { applicationId = "com.proshot.wallpapers.wallpapers" minSdk = 24 targetSdk = 36 versionCode = 1 versionName = "1.0" project.setProperty("archivesBaseName", "proshotwallpapers" + 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 } buildFeatures { viewBinding = true } kotlinOptions { jvmTarget = "1.8" } } dependencies { implementation("androidx.appcompat:appcompat:1.7.1") implementation("com.google.android.material:material:1.11.0") implementation("androidx.constraintlayout:constraintlayout:2.2.1") testImplementation("junit:junit:4.13.2") implementation("com.github.bumptech.glide:glide:5.0.5") implementation("jp.wasabeef:glide-transformations:4.3.0") implementation("com.squareup.okhttp3:okhttp:5.3.1") }