diff options
| author | danhealy <[email protected]> | 2020-11-15 19:01:14 -0800 |
|---|---|---|
| committer | danhealy <[email protected]> | 2020-11-15 19:01:14 -0800 |
| commit | 3447c4f75ac8422617082579dd9b15a9f1aa374a (patch) | |
| tree | e1449cc3e33df467ed0e46d7f8a6013d6b33cffb /dragon | |
| parent | eaaa933d08c8848227262a04cacc2c46e4b6a0fe (diff) | |
| download | dragonruby-game-toolkit-contrib-3447c4f75ac8422617082579dd9b15a9f1aa374a.tar.gz dragonruby-game-toolkit-contrib-3447c4f75ac8422617082579dd9b15a9f1aa374a.zip | |
iOS wizard: actually substitute app_id in plist
Diffstat (limited to 'dragon')
| -rw-r--r-- | dragon/ios_wizard.rb | 5 |
1 files changed, 4 insertions, 1 deletions
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 # <string>UIInterfaceOrientationPortrait</string> # <string>UIInterfaceOrientationLandscapeRight</string> - $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 |
