Created
December 19, 2013 13:23
-
-
Save bananita/8039021 to your computer and use it in GitHub Desktop.
How to convert *app to *ipa
This file contains 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
1. Create a folder called Payload | |
2. Place the .app folder inside of that | |
3. Zip up the Payload folder using normal compression | |
4. Then rename the file with a .ipa extension |
but cant install on iphone
can it be installed on iphone? and
then how to install .ipa to iphone?
mkdir Payload
?? is it actually Payload
name?
I made an easy-to-use windows tool for this purpose, you can check it out here: apptoipa-converter.
thx!
03.07.2020, 22:23, Alex <[email protected]> @AlexSimpler commented on
this gist.
…----------------------------------------------------------------------------
I made an easy-to-use tool for this purpose, you can check it out here: repo.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
Would you do this on a mac? Or on a different device?
mkdir -p ios/iphoneos/Payload
mv ios/iphoneos/youe_app_name.app ios/iphoneos/Payload
cd ios/iphoneos
zip -r app.ipa Payload
rm -rf Payload
rename youe_app_name
If you're on windows, you can use this program I made a long time ago. http://fumacrom.com/3hfQl
Looks like this doesn't deal with the required info.plist in an IPA.
Thank you
This gist was created 11 years ago but it's still useful 👏🏻.
Thank you very much! 👍
Muchas gracias!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hero