201 lines
5.9 KiB
Plaintext
201 lines
5.9 KiB
Plaintext
import java.util.Properties
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("com.google.dagger.hilt.android")
|
|
id("com.google.protobuf")
|
|
kotlin("kapt")
|
|
}
|
|
|
|
// Auto-increment version code from file
|
|
val versionFile = file("version.properties")
|
|
val versionProps = Properties()
|
|
if (versionFile.exists()) {
|
|
versionProps.load(versionFile.inputStream())
|
|
}
|
|
val autoVersionCode = (versionProps.getProperty("VERSION_CODE")?.toIntOrNull() ?: 0) + 1
|
|
val autoVersionName = "1.0.${autoVersionCode}"
|
|
|
|
// Save new version code
|
|
versionProps.setProperty("VERSION_CODE", autoVersionCode.toString())
|
|
versionFile.outputStream().use { versionProps.store(it, "Auto-generated version properties") }
|
|
|
|
android {
|
|
namespace = "com.durian.tssparty"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.durian.tssparty"
|
|
minSdk = 26
|
|
targetSdk = 34
|
|
versionCode = autoVersionCode
|
|
versionName = autoVersionName
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
|
|
// NDK configuration for TSS native library
|
|
ndk {
|
|
abiFilters += listOf("arm64-v8a", "armeabi-v7a", "x86_64")
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
create("release") {
|
|
// Use debug keystore for now - replace with production keystore for real release
|
|
storeFile = file("${System.getProperty("user.home")}/.android/debug.keystore")
|
|
storePassword = "android"
|
|
keyAlias = "androiddebugkey"
|
|
keyPassword = "android"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false // Disable minification for easier debugging
|
|
isShrinkResources = false
|
|
signingConfig = signingConfigs.getByName("release")
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
debug {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.5.6"
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
getByName("main") {
|
|
// Include the compiled TSS .aar library
|
|
jniLibs.srcDirs("libs")
|
|
}
|
|
}
|
|
}
|
|
|
|
// Protobuf configuration for gRPC
|
|
protobuf {
|
|
protoc {
|
|
artifact = "com.google.protobuf:protoc:3.25.1"
|
|
}
|
|
plugins {
|
|
create("grpc") {
|
|
artifact = "io.grpc:protoc-gen-grpc-java:1.60.0"
|
|
}
|
|
}
|
|
generateProtoTasks {
|
|
all().forEach { task ->
|
|
task.builtins {
|
|
create("java") {
|
|
option("lite")
|
|
}
|
|
}
|
|
task.plugins {
|
|
create("grpc") {
|
|
option("lite")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// TSS Library (gomobile generated)
|
|
implementation(files("libs/tsslib.aar"))
|
|
|
|
// Core Android
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
|
implementation("androidx.activity:activity-compose:1.8.2")
|
|
|
|
// Compose
|
|
implementation(platform("androidx.compose:compose-bom:2023.10.01"))
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-graphics")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
implementation("androidx.navigation:navigation-compose:2.7.6")
|
|
|
|
// Hilt DI
|
|
implementation("com.google.dagger:hilt-android:2.48.1")
|
|
kapt("com.google.dagger:hilt-android-compiler:2.48.1")
|
|
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
|
|
|
|
// Room Database
|
|
implementation("androidx.room:room-runtime:2.6.1")
|
|
implementation("androidx.room:room-ktx:2.6.1")
|
|
kapt("androidx.room:room-compiler:2.6.1")
|
|
|
|
// gRPC
|
|
implementation("io.grpc:grpc-okhttp:1.60.0")
|
|
implementation("io.grpc:grpc-protobuf-lite:1.60.0")
|
|
implementation("io.grpc:grpc-stub:1.60.0")
|
|
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
|
implementation("com.google.protobuf:protobuf-kotlin-lite:3.25.1")
|
|
|
|
// Networking
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
|
|
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
|
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
|
|
|
|
// Coroutines
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
|
|
|
|
// JSON
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
|
|
// QR Code
|
|
implementation("com.google.zxing:core:3.5.2")
|
|
implementation("com.journeyapps:zxing-android-embedded:4.3.0")
|
|
|
|
// Crypto
|
|
implementation("org.bouncycastle:bcprov-jdk18on:1.77")
|
|
|
|
// DataStore for preferences
|
|
implementation("androidx.datastore:datastore-preferences:1.0.0")
|
|
|
|
// Testing
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
androidTestImplementation(platform("androidx.compose:compose-bom:2023.10.01"))
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
}
|
|
|
|
kapt {
|
|
correctErrorTypes = true
|
|
}
|