Posts

Post not yet marked as solved
1 Replies
746 Views
I am getting all of theese errors when trying to send a working app to itunes connect sfter implementing a sticker pack extension:App Store Connect Operation ErrorERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'App Icon60x45'"App Store Connect Operation ErrorERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'App Icon67x50'"App Store Connect Operation ErrorERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'App Icon74x55'"App Store Connect Operation ErrorERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'App Icon27x20'"App Store Connect Operation ErrorERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'App Icon32x24'"App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 54x40 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 81x60 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 148x110 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 120x90 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 134x100 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 180x135 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 96x72 pixels in .png format."App Store Connect Operation ErrorERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 64x48 pixels in .png format."App Store Connect Operation WarningWARNING ITMS-90747: "Architecture incompatible with MinimumOSVersion. The app bundle at 'Hoodoji.app/PlugIns/YoMoji Stickers.appex' specifies a MinimumOSVersion of '13.2' but contains a 32-bit architecture that is unsupported on iOS 12 and later."I have tried lots of things and have not found anyone who has fixed it. Please help, thank you.
Posted Last updated
.
Post not yet marked as solved
1 Replies
1.3k Views
This is my code to copy an image on to the general UIPateBoard and paste it://image paste code let pb = UIPasteboard.general let imgData : Data? = image.pngData() pb.setData(imgData!, forPasteboardType: kUTTypePNG as String)This will not work unless full acess is granted. Even if i declare it this way:let pb = UIPasteboard.init(name: "New", create: true)OR://try to declare it local after its createdpb.setItems([["Key":"Data"]], options: [UIPasteboard.OptionsKey.localOnly : true])I am still not able to paste. Do I need to use the paste function from the UIInputViewController from the custom keyboard?
Posted Last updated
.