ios-ota-buddy icon indicating copy to clipboard operation
ios-ota-buddy copied to clipboard

plist script will fail when there is any other Info.plist in .ipa (e.g. framework bundle plist)

Open dmitry-salnikov opened this issue 9 years ago • 1 comments

If your app contains any frameworks with own bundle, the following command (line 40 in otabuddy.sh)

unzip -p "$1" "**/Info.plist

will unpack and merge all the Info.plist files into one invalid binary. The simpliest workaround is to change the mask to:

Payload/*/Info.plist

Hope it helps :)

dmitry-salnikov avatar Mar 18 '15 12:03 dmitry-salnikov

I had to change the path to "Payload/*.app/Info.plist" because my app had another Info.plist under a launch screen storyboard: Payload/EXAMPLE.app/LaunchScreen.storyboardc/Info.plist

magnusk avatar Apr 02 '16 17:04 magnusk