app build fixes for ios and android
This commit is contained in:
parent
a7e3553246
commit
bda87859ee
@ -77,7 +77,7 @@ android {
|
|||||||
versionCode flutterVersionCode.toInteger()
|
versionCode flutterVersionCode.toInteger()
|
||||||
versionName flutterVersionName
|
versionName flutterVersionName
|
||||||
// // Placeholders of keys that are replaced by the build system.
|
// // 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')]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,12 +28,22 @@ platform :ios do
|
|||||||
readonly: true,
|
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(
|
sh(
|
||||||
"flutter",
|
"flutter",
|
||||||
"build",
|
"build",
|
||||||
"ipa",
|
"ipa",
|
||||||
"--debug",
|
"--release",
|
||||||
"--build-name=#{build_name}",
|
"--build-name=#{build_name}",
|
||||||
"--build-number=#{build_number}",
|
"--build-number=#{build_number}",
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user