My ionic3 project build IOS successed, but when I upload it to itunes connect error showing
then I try follow this ANSWER, but showing this for me find: convert: No such file or directory
EDIT:
I installed imagemagick
using npm install imagemagick
not brew install imagemagick
then running find ./resources/ -name "*.png" -exec convert "{}" -alpha off "{}" \;
showing find: convert: No such file or directory
.
Error solved!! Because of my ionic3 project contains icon alpha channel
problem. And thanks to @Raptor.
alpha channel
by photoshop../resources/ios/icon
all icons which in IOS
folder.ionic cordova resources ios
.ionic cordova build ios --prod
, error solved.If still got error or any problem, just comment here and I will try to help you.
You need to do this on XCode on your Assets catalog. Like (from Apple)
At the bottom of that screen you will see the required field:
It should be a 1024x1024 image
The find command syntax is not correct, this way you get the message, this how you should use find command :
find . -type f \( -iname \*.png \) -exec convert "{}" -alpha off "{}" \;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With