Reputation: 640
How can I change app icon after creating the ipa file?
I am following the below steps:
But the ipa is not installed. It shows Modified (add or delete) file error.
Upvotes: 1
Views: 6203
Reputation: 9410
Payload
directory):$ unzip MyApp.ipa
Info.plist
$ plutil -p ./Payload/MyApp.app/Info.plist
"CFBundleIcons" => {
"CFBundlePrimaryIcon" => {
"CFBundleIconFiles" => [
0 => "AppIcon60x60"
]
"CFBundleIconName" => "AppIcon"
}
}
"CFBundleIcons~ipad" => {
"CFBundlePrimaryIcon" => {
"CFBundleIconFiles" => [
0 => "AppIcon60x60"
1 => "AppIcon76x76"
]
"CFBundleIconName" => "AppIcon"
}
}
Replace all listed icons in ./Payload/MyApp.app/
with new icons.
Zip modified ./Payload
to new IPA
$ zip -vr NewMyApp.ipa ./Payload
NewMyApp.ipa
with new icons is ready for useUpvotes: 0