app build fixes for ios and android
All checks were successful
Build and release debugging app to ios testflight / build (pull_request) Successful in 26m46s
Build and release debug APK / build (pull_request) Successful in 37m2s

This commit is contained in:
Remy Moll 2025-03-24 12:55:00 +01:00
parent a7e3553246
commit bda87859ee
2 changed files with 12 additions and 2 deletions

View File

@ -77,7 +77,7 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
// // Placeholders of keys that are replaced by the build system.
manifestPlaceholders += ['MAPS_API_KEY': System.getenv('GOOGLE_MAPS_API_KEY')]
manifestPlaceholders += ['MAPS_API_KEY': System.getenv('ANDROID_GOOGLE_MAPS_API_KEY')]
}

View File

@ -28,12 +28,22 @@ platform :ios do
readonly: true,
)
# replace secrets by real values, the stupid way
sh(
"sed",
"-i",
"",
"s/IOS_GOOGLE_MAPS_API_KEY/#{ENV["IOS_GOOGLE_MAPS_API_KEY"]}/g",
"../Runner/AppDelegate.swift"
)
sh(
"flutter",
"build",
"ipa",
"--debug",
"--release",
"--build-name=#{build_name}",
"--build-number=#{build_number}",
)