93 lines
2.7 KiB
Plaintext
93 lines
2.7 KiB
Plaintext
plugins {
|
||
alias(libs.plugins.android.application)
|
||
alias(libs.plugins.kotlin.android)
|
||
id("kotlin-kapt")
|
||
}
|
||
|
||
android {
|
||
namespace = "com.dano.test1"
|
||
compileSdk = 35
|
||
|
||
defaultConfig {
|
||
applicationId = "com.dano.test1"
|
||
minSdk = 29
|
||
targetSdk = 35
|
||
versionCode = 1
|
||
versionName = "1.3"
|
||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
}
|
||
|
||
buildTypes {
|
||
release {
|
||
isMinifyEnabled = false
|
||
proguardFiles(
|
||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
"proguard-rules.pro"
|
||
)
|
||
}
|
||
}
|
||
|
||
// Apache POI bringt viele META-INF-Dateien mit – hier aus dem APK ausschließen
|
||
packaging {
|
||
resources {
|
||
excludes += listOf(
|
||
"META-INF/DEPENDENCIES",
|
||
"META-INF/LICENSE",
|
||
"META-INF/LICENSE.txt",
|
||
"META-INF/NOTICE",
|
||
"META-INF/NOTICE.txt",
|
||
"META-INF/NOTICE.md",
|
||
"META-INF/LICENSE.md",
|
||
"META-INF/*.kotlin_module",
|
||
"META-INF/versions/**"
|
||
)
|
||
}
|
||
}
|
||
|
||
compileOptions {
|
||
sourceCompatibility = JavaVersion.VERSION_11
|
||
targetCompatibility = JavaVersion.VERSION_11
|
||
}
|
||
kotlinOptions {
|
||
jvmTarget = "11"
|
||
}
|
||
}
|
||
|
||
val room_version = "2.6.1"
|
||
|
||
dependencies {
|
||
implementation(libs.androidx.core.ktx)
|
||
implementation(libs.androidx.appcompat)
|
||
implementation(libs.material)
|
||
implementation(libs.androidx.activity)
|
||
implementation(libs.androidx.constraintlayout)
|
||
|
||
testImplementation(libs.junit)
|
||
androidTestImplementation(libs.androidx.junit)
|
||
androidTestImplementation(libs.androidx.espresso.core)
|
||
|
||
implementation("com.google.code.gson:gson:2.10.1")
|
||
|
||
implementation("androidx.room:room-runtime:$room_version")
|
||
kapt("androidx.room:room-compiler:$room_version")
|
||
implementation("androidx.room:room-ktx:$room_version")
|
||
|
||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
|
||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
|
||
|
||
// SQLCipher
|
||
implementation("net.zetetic:android-database-sqlcipher:4.5.3@aar")
|
||
implementation("androidx.sqlite:sqlite:2.1.0")
|
||
implementation("androidx.sqlite:sqlite-framework:2.1.0")
|
||
|
||
// Server Upload
|
||
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
||
|
||
// ---- Excel-Export (Apache POI) ----
|
||
// Leichtgewichtige OOXML-Implementierung + Kernbibliothek
|
||
implementation("org.apache.poi:poi:5.2.5")
|
||
implementation("org.apache.poi:poi-ooxml:5.2.5")
|
||
implementation("org.apache.poi:poi-ooxml-lite:5.2.5") //für kleinere Schemas
|
||
}
|