plugins { id("com.android.application") id("com.google.gms.google-services") } android { namespace = "com.nurulwafa.nufakuproject" compileSdk = 34 defaultConfig { applicationId = "com.nurulwafa.nufakuproject" minSdk = 24 targetSdk = 34 versionCode = 1 versionName = "1.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } signingConfigs { create("release") { storeFile = rootProject.file("keystore.jks") storePassword = "NufaAra2025!" keyAlias = "nufaku-key" keyPassword = "NufaAra2025!" } } buildTypes { getByName("release") { isMinifyEnabled = false isShrinkResources = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) signingConfig = signingConfigs.getByName("release") } } compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } 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.2.1") androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1") implementation ("com.android.volley:volley:1.2.1") implementation ("org.json:json:20210307") implementation ("com.github.bumptech.glide:glide:4.16.0") annotationProcessor ("com.github.bumptech.glide:compiler:4.16.0") implementation(platform("com.google.firebase:firebase-bom:33.16.0")) implementation("com.google.firebase:firebase-messaging") implementation("com.google.firebase:firebase-analytics") } }