2026-06-15 14:42:40 -04:00
|
|
|
import java.util.Properties
|
|
|
|
|
|
2026-02-11 14:07:27 -05:00
|
|
|
plugins {
|
|
|
|
|
id("com.android.application")
|
|
|
|
|
id("kotlin-android")
|
|
|
|
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
|
|
|
|
id("dev.flutter.flutter-gradle-plugin")
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-15 14:42:40 -04:00
|
|
|
// Load the upload keystore credentials from key.properties (gitignored, never
|
|
|
|
|
// committed). Absent on machines without the keystore (e.g. CI or a fresh
|
|
|
|
|
// clone), in which case release builds fall back to the debug signing key.
|
|
|
|
|
val keystoreProperties = Properties()
|
|
|
|
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
|
keystorePropertiesFile.inputStream().use { keystoreProperties.load(it) }
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-11 14:07:27 -05:00
|
|
|
android {
|
2026-06-08 14:46:55 -04:00
|
|
|
namespace = "net.oottsecurity.app"
|
2026-02-11 14:07:27 -05:00
|
|
|
compileSdk = flutter.compileSdkVersion
|
|
|
|
|
ndkVersion = flutter.ndkVersion
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2026-06-08 14:46:55 -04:00
|
|
|
// flutter_local_notifications uses java.time APIs that need desugaring on older Android.
|
|
|
|
|
isCoreLibraryDesugaringEnabled = true
|
2026-02-11 14:07:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2026-06-08 14:46:55 -04:00
|
|
|
applicationId = "net.oottsecurity.app"
|
2026-02-11 14:07:27 -05:00
|
|
|
// You can update the following values to match your application needs.
|
|
|
|
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
|
|
|
|
minSdk = flutter.minSdkVersion
|
|
|
|
|
targetSdk = flutter.targetSdkVersion
|
|
|
|
|
versionCode = flutter.versionCode
|
|
|
|
|
versionName = flutter.versionName
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-15 14:42:40 -04:00
|
|
|
signingConfigs {
|
|
|
|
|
// Only registered when key.properties is present; otherwise release
|
|
|
|
|
// builds fall back to the debug key below.
|
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
|
create("release") {
|
|
|
|
|
keyAlias = keystoreProperties["keyAlias"] as String
|
|
|
|
|
keyPassword = keystoreProperties["keyPassword"] as String
|
|
|
|
|
storeFile = file(keystoreProperties["storeFile"] as String)
|
|
|
|
|
storePassword = keystoreProperties["storePassword"] as String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-11 14:07:27 -05:00
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2026-06-15 14:42:40 -04:00
|
|
|
// Sign with the upload key for Play Store builds. When key.properties
|
|
|
|
|
// is missing, fall back to the debug key so `flutter run --release`
|
|
|
|
|
// still works locally.
|
|
|
|
|
signingConfig =
|
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
|
signingConfigs.getByName("release")
|
|
|
|
|
} else {
|
|
|
|
|
signingConfigs.getByName("debug")
|
|
|
|
|
}
|
2026-02-11 14:07:27 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
flutter {
|
|
|
|
|
source = "../.."
|
|
|
|
|
}
|
2026-06-08 14:46:55 -04:00
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
// Backport of java.time etc. required by flutter_local_notifications (see
|
|
|
|
|
// isCoreLibraryDesugaringEnabled above).
|
|
|
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4")
|
|
|
|
|
}
|