This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSAllowsArbitraryLoads</key> | |
| <true/> | |
| </dict> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSExceptionDomains</key> | |
| <dict> | |
| <key>api.fixer.io</key> | |
| <dict> | |
| <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> | |
| <true/> | |
| </dict> | |
| </dict> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd <folder where repo was cloned>/app | |
| ./step2.sh | |
| cordova build ios | |
| cordova build android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd <folder where repo was cloned>/app | |
| ./step3.sh | |
| cordova build ios | |
| cordova build android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd <folder where repo was cloned>/app | |
| ./step1.sh | |
| cordova build ios | |
| cordova build android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| <platform name="ios"> | |
| <hook type="before_build" src="hooks/ios_ats.sh" /> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cordova create someapp com.mycompany.someapp SomeApp | |
| cd someapp | |
| cordova platform add ios | |
| cordova build ios | |
| cd platforms/ios | |
| xcodebuild -list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ xcodebuild -list | |
| Information about project "SomeApp": | |
| Targets: | |
| SomeApp | |
| Build Configurations: | |
| Debug | |
| Release | |
| If no build configuration is specified and -scheme is not passed then "Release" is used. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ xcodebuild -list | |
| Information about project "SomeApp": | |
| Targets: | |
| SomeApp | |
| Build Configurations: | |
| Debug | |
| Release | |
| If no build configuration is specified and -scheme is not passed then "Release" is used. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo gem install xcodeproj |