aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-30 22:13:08 +1300
committerArslaan Pathan <[email protected]>2026-03-30 22:13:08 +1300
commite92a1f4a6babca0827410426ae59cc7b24f401da (patch)
treea9e93b75c41876368a4f66a7e4e9665c6832388f /app/build.gradle.kts
downloadzwzn-freefit-android-e92a1f4a6babca0827410426ae59cc7b24f401da.tar.xz
zwzn-freefit-android-e92a1f4a6babca0827410426ae59cc7b24f401da.zip
chore: Initial commit
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts36
1 files changed, 36 insertions, 0 deletions
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)
+}