All checks were successful
Release / meta (push) Successful in 9s
Release / linux-build (push) Successful in 6m37s
Release / web-build (push) Successful in 5m29s
Release / android-build (push) Successful in 15m58s
Release / release-master (push) Successful in 20s
Release / release-dev (push) Successful in 26s
93 lines
2.8 KiB
Kotlin
93 lines
2.8 KiB
Kotlin
import java.io.File
|
|
import java.util.Properties
|
|
|
|
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")
|
|
}
|
|
|
|
val keystoreProperties = Properties()
|
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystorePropertiesFile.inputStream().use { keystoreProperties.load(it) }
|
|
}
|
|
|
|
val releaseStoreFile = System.getenv("ANDROID_KEYSTORE_PATH")
|
|
?: keystoreProperties.getProperty("storeFile")
|
|
val releaseStorePassword = System.getenv("ANDROID_KEYSTORE_PASSWORD")
|
|
?: keystoreProperties.getProperty("storePassword")
|
|
val releaseKeyAlias = System.getenv("ANDROID_KEY_ALIAS")
|
|
?: keystoreProperties.getProperty("keyAlias")
|
|
val releaseKeyPassword = System.getenv("ANDROID_KEY_PASSWORD")
|
|
?: keystoreProperties.getProperty("keyPassword")
|
|
|
|
val releaseStoreFilePath: File? = releaseStoreFile?.let { path ->
|
|
val candidate = File(path)
|
|
if (candidate.isAbsolute) return@let candidate
|
|
|
|
val candidates = listOfNotNull(
|
|
rootProject.file(path),
|
|
rootProject.projectDir.parentFile?.let { File(it, path) },
|
|
project.file(path),
|
|
)
|
|
|
|
candidates.firstOrNull { it.exists() }
|
|
}
|
|
|
|
val hasReleaseKeystore = listOf(
|
|
releaseStoreFilePath?.path,
|
|
releaseStorePassword,
|
|
releaseKeyAlias,
|
|
releaseKeyPassword
|
|
).all { !it.isNullOrBlank() }
|
|
|
|
android {
|
|
namespace = "com.example.mileograph_flutter"
|
|
compileSdk = 36
|
|
ndkVersion = "27.0.12077973"
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
|
}
|
|
|
|
defaultConfig {
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
applicationId = "com.petegregoryy.mileograph_flutter"
|
|
// You can update the following values to match your application needs.
|
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
|
minSdk = 24
|
|
targetSdk = 36
|
|
versionCode = flutter.versionCode
|
|
versionName = flutter.versionName
|
|
}
|
|
|
|
signingConfigs {
|
|
if (hasReleaseKeystore) {
|
|
create("release") {
|
|
storeFile = releaseStoreFilePath
|
|
storePassword = releaseStorePassword
|
|
keyAlias = releaseKeyAlias!!
|
|
keyPassword = releaseKeyPassword
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
// Use a real release keystore when provided; fall back to debug keys otherwise.
|
|
signingConfig = signingConfigs.getByName(if (hasReleaseKeystore) "release" else "debug")
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|