From e92a1f4a6babca0827410426ae59cc7b24f401da Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Mon, 30 Mar 2026 22:13:08 +1300 Subject: chore: Initial commit --- app/build.gradle.kts | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/build.gradle.kts (limited to 'app/build.gradle.kts') diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..e79455f --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,36 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.arslaancodes.zwznfreefit" + compileSdk = 35 + + defaultConfig { + applicationId = "com.arslaancodes.zwznfreefit" + minSdk = 26 + targetSdk = 35 + versionCode = 1 + versionName = "1.0" + } + + buildTypes { + release { + isMinifyEnabled = false + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } +} + +dependencies { + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.appcompat) + implementation(libs.material) +} -- cgit v1.2.3