I have some apps i wanna resign with a different apple developer license,

Problem is, i dont have source code, only the ipa file, the app and the archiveinfo.plist is it possible for me to resign the app if i dont have the source code?

Thanks! Ompah

link|improve this question
feedback

3 Answers

The ability to replace the signature on an already-signed binary is built into the codesign utility. That way, if your developer certificate expires (as they do annoyingly often), you don't have to rebuild your app.

This can be important, especially if you need to support an old app version, and you've made code alterations since you archived your IPA.

I usually use this script. It comes in handy when trading debug build IPAs with people who have their own developer accounts and who I don't want to burn a UDID slot for, and who don't want to have to load my provisioning profiles on their devices.

#!/bin/sh

TEMPDIR=/tmp/$RANDOM-$RANDOM-$RANDOM
RESOURCERULES=/tmp/ResourceRules-$RANDOM$RANDOM.plist
CURRENTDIR=`pwd`

mkdir -p "$TEMPDIR"

cat - > "$RESOURCERULES" <<ResourceRulesPlistDelimiter
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>rules</key>
    <dict>
        <key>.*</key>
        <true/>
        <key>Info.plist</key>
        <dict>
            <key>omit</key>
            <true/>
            <key>weight</key>
            <real>10</real>
        </dict>
        <key>ResourceRules.plist</key>
        <dict>
            <key>omit</key>
            <true/>
            <key>weight</key>
            <real>100</real>
        </dict>
    </dict>
</dict>
</plist>
ResourceRulesPlistDelimiter

unzip -q "$1" -d "$TEMPDIR" || exit 1
xattr -d -r com.apple.quarantine "$TEMPDIR"

for APPBUNDLE in "`find "$TEMPDIR" -name "*.app"`"; do
    codesign --resource-rules="$RESOURCERULES" -f -s "iPhone Developer" "$APPBUNDLE"
    codesign -dvvvv -r- "$APPBUNDLE"
done

cd "$TEMPDIR"
zip -qr "$TEMPDIR.zip" "Payload" && cd "$CURRENTDIR" && mv "$1" "$1.bak" && mv "$TEMPDIR.zip" "$1"
cd "$CURRENTDIR"
rm -rf "$TEMPDIR.zip"
rm -rf "$TEMPDIR"
rm -rf "$RESOURCERULES"
link|improve this answer
Cool, thanks man! But how do i use the script :) I have an ipa with com.something.something and i wanna change to com.mycompany.something would that be possible? – Ompah Jul 13 '11 at 7:45
Yes. Just change it in the Info.plist. I signed a test app with the ID com.apple.iBooks yesterday just to see what would happen, and it worked fine. – MrNerdHair Jul 13 '11 at 19:24
Save the script as a text file, go into the terminal, cd into the script's directory, chmod +x NameOfFile.sh, and then run ./NameOfScript.sh IPAName.ipa – MrNerdHair Jul 13 '11 at 19:25
BTW, the IPA is a zip file with a single directory named "Payload". Inside that dir is the Info.plist file to change. – MrNerdHair Jul 13 '11 at 19:26
Awesome, I would not have read this and favorited this question if someone had not downvoted my answer. +1 to you anyways. – Praveen S Jul 14 '11 at 10:51
feedback

You can't resign already signed ipa file with a different key. It breaks PKI.

link|improve this answer
feedback

I highly doubt it.

However, crack open the ipad (view package contents) and see what you can replace in that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.