How to run the provided application with the iOS device
-------------------------------------------------------

- Set the appropriate values in the provided entitlements file (OrangeRadioFLOSS.xcent) including ${TeamIdentifierPrefix} and ${BundleId} to match yours
- Inside the provided application package (OrangeRadioFLOSS.app), edit the file Info.plist and the appropriate ${BundleId} to mach yours
- Sign the .app file with your developer certificate using the provided script (sign.sh, do not forget to edit script and set the signing identity to match yours, note that when running the script, the files sign.sh and .app should be located in the same directory)
- Finally package into an .ipa file using the following command:
xcrun -sdk iphoneos7.0 PackageApplication -v "/path/to/OrangeRadioFLOSS.app" -o "/path/to/OrangeRadioFLOSS.ipa" --sign "<your developer identity>" --embed "/path/to/<your mobileprovision file>"

Example:

xcrun -sdk iphoneos7.0 PackageApplication -v "/path/to/OrangeRadioFLOSS.app" -o "/path/to/OrangeRadioFLOSS.ipa" --sign "iPhone Developer: John Doe" --embed "/path/to/your.mobileprovision"

