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
| https://mymo-health.app.link/app?mymo_id=9a0f6ced1722adf56fcf417707773602&mymo_type=provider | |
| Pin Code: 6443 |
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
| { | |
| AAE: { | |
| Airport Name: "Annaba", | |
| Location: "Annaba", | |
| Country: "Algeria", | |
| Latitude: 36.822225, | |
| Longitude: 7.809167 | |
| }, | |
| AAL: { | |
| Airport Name: "Aalborg", |
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
| #!/bin/sh | |
| # | |
| API_TOKEN="" | |
| TEAM_TOKEN="" | |
| SIGNING_IDENTITY="iPhone Distribution: XXX" | |
| PROVISIONING_PROFILE="${HOME}/Library/MobileDevice/Provisioning Profiles/YYY.mobileprovision" | |
| #LOG="/tmp/testflight.log" | |
| DATE=$( /bin/date +"%Y-%m-%d" ) |
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
| #define TLC_DEBUG | |
| #ifdef TLC_DEBUG | |
| # define DebugLog(fmt, ...) NSLog((@"%s:%d - " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); | |
| #else | |
| # define DebugLog(...) | |
| #endif |
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
| #!/bin/bash | |
| if [ $CONFIGURATION == "InHouse" ]; then | |
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE") | |
| buildNumber=$(($buildNumber + 1)) | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE" | |
| productVersion=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "$INFOPLIST_FILE") | |
| /usr/libexec/PlistBuddy -c "Set PreferenceSpecifiers:1:DefaultValue $buildNumber" CannonballClient/Settings.bundle/Root.plist | |
| /usr/libexec/PlistBuddy -c "Set PreferenceSpecifiers:2:DefaultValue $productVersion" CannonballClient/Settings.bundle/Root.plist | |
| else |