Add release codesigning for Android

This commit is contained in:
2026-02-01 23:33:36 +01:00
parent 87c9a74b97
commit 17c5596710

View File

@@ -1,3 +1,6 @@
import java.util.Properties
import java.io.FileInputStream
plugins { plugins {
id("com.android.application") id("com.android.application")
id("kotlin-android") id("kotlin-android")
@@ -5,6 +8,12 @@ plugins {
id("dev.flutter.flutter-gradle-plugin") id("dev.flutter.flutter-gradle-plugin")
} }
val keystorePropertiesFile = rootProject.file("key.properties")
val keystoreProperties = Properties()
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(FileInputStream(keystorePropertiesFile))
}
android { android {
namespace = "gmbh.bearologics.brandmanager" namespace = "gmbh.bearologics.brandmanager"
compileSdk = flutter.compileSdkVersion compileSdk = flutter.compileSdkVersion
@@ -19,6 +28,15 @@ android {
jvmTarget = JavaVersion.VERSION_17.toString() jvmTarget = JavaVersion.VERSION_17.toString()
} }
signingConfigs {
create("release") {
keyAlias = keystoreProperties["keyAlias"] as String?
keyPassword = keystoreProperties["keyPassword"] as String?
storeFile = keystoreProperties["storeFile"]?.let { file(it) }
storePassword = keystoreProperties["storePassword"] as String?
}
}
defaultConfig { defaultConfig {
applicationId = "gmbh.bearologics.brandmanager" applicationId = "gmbh.bearologics.brandmanager"
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
@@ -31,9 +49,7 @@ android {
buildTypes { buildTypes {
release { release {
// TODO: Add your own signing config for the release build. signingConfig = signingConfigs.getByName("release")
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
} }
} }
} }