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
# Create the .itmsp folder | |
mkdir <path to your .itmsp folder>/<name of your .itmsp folder>.itmsp | |
# Move your .ipa file into the .itmsp folder | |
cp <path to where your .ipa file is stored> <path to your .itmsp folder>/<name of your .itmsp folder >.itmsp | |
# Generate the metadata.xml file | |
fileSize=` stat -f %z <Your .ipa file>` | |
md5Checksum=`md5 <Your .ipa file> | cut -d "=" -f 2 | awk '{print $1}'` |
OlderNewer