Add signing configuration for APK installation

Added debug keystore signing for release builds to enable
installation on devices. Using Android debug keystore for now.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-05 17:12:34 +01:00
parent 25de798b2a
commit f68fce83e6

View File

@@ -22,13 +22,27 @@ android {
}
}
signingConfigs {
create("release") {
// Using debug keystore for now - replace with your own keystore
storeFile = file("${System.getProperty("user.home")}/.android/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}
buildTypes {
debug {
signingConfig = signingConfigs.getByName("debug")
}
release {
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("release")
}
}