Added a new functionality to mark one player as the primary player. This player is the main user of the app and the training data will be stored for that player only.
53 lines
1.3 KiB
Kotlin
53 lines
1.3 KiB
Kotlin
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.aldo.apps.ochecompanion"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId = "com.aldo.apps.ochecompanion"
|
|
minSdk = 24
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
base {
|
|
archivesName.set("OcheCompanion")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
implementation(libs.preference)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
implementation(libs.glide)
|
|
implementation(libs.room.runtime)
|
|
annotationProcessor(libs.room.compiler)
|
|
implementation(libs.preferences)
|
|
implementation(libs.konfetti)
|
|
implementation(libs.gson)
|
|
} |