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
Jun 2 17:26:46 Nullphone com.apple.xpc.launchd[1] (com.apple.xpc.launchd.domain.pid.SpringBoard.63) <Warning>: Attempt to re-bootstrap service from different path, will use existing: service = com.[ORG].[APP].[EXTENSION], existing = /private/var/containers/Bundle/Application/2718DB18-1E2C-4702-A7E8-568E25C589B0/[APP].app/PlugIns/[EXTENSION].appex, conflicting = /private/var/containers/Bundle/Application/5E3541F1-6545-4F4B-9399-9FD779DFC568/[APP].app/PlugIns/[EXTENSION].appex |
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 | |
# This script will check an IPA and determine if the specified UDID is in the embedded provisioning profile | |
IPA=$1 | |
UDID=$2 | |
if [ $# -eq "1" ] | |
then | |
echo "Please specify a UDID to check for." |
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 | |
# This script will check an IPA and determine if the specified UDID is in the embedded provisioning profile | |
IPA=$1 | |
UDID=$2 | |
# Eventually if no UDID is specified, we'll print all UDIDs. | |
if [ $# -eq "1" ] | |
then |
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 | |
############################################################################################################## | |
### 1. Name your profiles with the convention of ProjectName_TargetName_ConfigurationName.mobileprovision ### | |
### 2. Create a directory called CodeSign in your project directory ### | |
### 3. Move all your project's provisioning profiles into the CodeSign directory ### | |
### ### | |
### Running this script will update your project file to point to the correct UUIDs of each corresponding ### | |
### profile in your CodeSign directory. ### | |
############################################################################################################## |
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 | |
function getUDID { | |
udid=($(system_profiler SPUSBDataType | grep -A 11 -w "iPad\|iPhone\|iPod\|AppleTV" | grep "Serial Number" | awk '{ print $3 }')) | |
if [ -z $udid ]; then | |
echo "No device detected. Please ensure an iOS device is plugged in." | |
exit 1 | |
else | |
for id in "${udid[@]}"; do | |
if [ ${#id} -eq 24 ]; then |