From 3447c4f75ac8422617082579dd9b15a9f1aa374a Mon Sep 17 00:00:00 2001 From: danhealy Date: Sun, 15 Nov 2020 19:01:14 -0800 Subject: iOS wizard: actually substitute app_id in plist --- dragon/ios_wizard.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dragon/ios_wizard.rb b/dragon/ios_wizard.rb index 55bf9ce..77fd703 100644 --- a/dragon/ios_wizard.rb +++ b/dragon/ios_wizard.rb @@ -538,7 +538,10 @@ XML # UIInterfaceOrientationPortrait # UIInterfaceOrientationLandscapeRight - $gtk.write_file_root "tmp/ios/#{@app_name}.app/Info.plist", info_plist_string.gsub(":app_name", @app_name).strip + info_plist_string.gsub!(":app_name", @app_name) + info_plist_string.gsub!(":app_id", @app_id) + + $gtk.write_file_root "tmp/ios/#{@app_name}.app/Info.plist", info_plist_string.strip @info_plist_written = true end -- cgit v1.2.3