android app for https://otb-tracker.outsidethebox.top tracking
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
plugins { |
|
id("com.android.application") |
|
id("org.jetbrains.kotlin.android") |
|
} |
|
|
|
android { |
|
namespace = "top.outsidethebox.followme" |
|
compileSdk = 34 |
|
|
|
defaultConfig { |
|
applicationId = "top.outsidethebox.followme" |
|
minSdk = 23 |
|
targetSdk = 34 |
|
versionCode = 1 |
|
versionName = "0.1.0" |
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" |
|
} |
|
|
|
buildTypes { |
|
release { |
|
isMinifyEnabled = false |
|
proguardFiles( |
|
getDefaultProguardFile("proguard-android-optimize.txt"), |
|
"proguard-rules.pro" |
|
) |
|
} |
|
} |
|
|
|
compileOptions { |
|
sourceCompatibility = JavaVersion.VERSION_17 |
|
targetCompatibility = JavaVersion.VERSION_17 |
|
} |
|
|
|
kotlinOptions { |
|
jvmTarget = "17" |
|
} |
|
|
|
buildFeatures { |
|
viewBinding = true |
|
} |
|
} |
|
|
|
dependencies { |
|
implementation("androidx.core:core-ktx:1.12.0") |
|
implementation("androidx.appcompat:appcompat:1.7.0") |
|
implementation("com.google.android.material:material:1.11.0") |
|
implementation("androidx.activity:activity-ktx:1.8.2") |
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4") |
|
implementation("androidx.lifecycle:lifecycle-service:2.7.0") |
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0") |
|
implementation("com.google.android.gms:play-services-location:21.2.0") |
|
implementation("com.squareup.okhttp3:okhttp:4.12.0") |
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3") |
|
}
|
|
|