diff options
| author | danhealy <[email protected]> | 2020-11-15 14:58:41 -0800 |
|---|---|---|
| committer | danhealy <[email protected]> | 2020-11-15 14:58:41 -0800 |
| commit | eaaa933d08c8848227262a04cacc2c46e4b6a0fe (patch) | |
| tree | 8acc6bf30ed6ac12165dc88df8cb4179ba8c86ba /dragon/ios_wizard.rb | |
| parent | 128fa1d90cea6289605a49daf56a0cbb72e2dd28 (diff) | |
| download | dragonruby-game-toolkit-contrib-eaaa933d08c8848227262a04cacc2c46e4b6a0fe.tar.gz dragonruby-game-toolkit-contrib-eaaa933d08c8848227262a04cacc2c46e4b6a0fe.zip | |
iOS wizard: fix app id in Info.plist, fix dev profile path
Diffstat (limited to 'dragon/ios_wizard.rb')
| -rw-r--r-- | dragon/ios_wizard.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dragon/ios_wizard.rb b/dragon/ios_wizard.rb index e38faf1..55bf9ce 100644 --- a/dragon/ios_wizard.rb +++ b/dragon/ios_wizard.rb @@ -140,7 +140,8 @@ class IOSWizard end def check_for_dev_profile - if !($gtk.read_file 'profiles/development.mobileprovision') + @dev_profile_path = "profiles/development.mobileprovision" + if !($gtk.read_file @dev_profile_path) $gtk.system "mkdir -p #{relative_path}/profiles" $gtk.system "open #{relative_path}/profiles" $gtk.system "echo Download the mobile provisioning profile and place it here with the name development.mobileprovision > #{relative_path}/profiles/README.txt" @@ -409,7 +410,7 @@ XML </dict> </dict> <key>CFBundleIdentifier</key> - <string>com.carlile.swisscheese</string> + <string>:app_id</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> |
