Hi, I got an error ITMS-90072 : The IPA is invalid. It does not included a Payload directory during the submission process via both the XCode Archives and Application Loader attempt. I'm try to update in next version of new apple watch application. The two responses that I've read are located in the info.plist file Two keys must be added : - LSRequiresIPhoneOS: YES (Boolean) - CFBundleInfoDictionaryVersion: 6.0 (String) The project has been cleaned. This is the contents of my file info.plist:How can I solve this problem?<?xml version=1.0 encoding=UTF-8?><!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd><plist version=1.0><dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleDisplayName</key> <string>Nation TV</string> <key>CFBundleExecutable</key> <string>com.company.appname</string> <key>CFBundleGetInfoString</key> <stri
ITMS-90338
1,571 results found
Post
Replies
Boosts
Views
Activity
Our application uses UIApplication openUrl with the itms-services scheme to apply runtime updates.Since updating to iOS 10, the UIApplication openURL method is returning returning NO even though the update does install.This is causing a problem because we use the NO result to trigger reporting that the install has failed.We are using the canOpenUrl method first, before attempting openUrl.Is there a security change causing this, or any changes I need to make to my applications Info.plist?This is our code; NSURL * url = [NSURL URLWithString:[@itms-services://?action=download-manifest&url= stringByAppendingString:urlString]]; if (![[UIApplication sharedApplication] canOpenURL:url]) { LOG_(ERROR, @canOpenURL returned NO); return NO; } if (![[UIApplication sharedApplication] openURL:url]) { LOG_(ERROR, @openURL returned NO); return NO; }
Because I don't know how to launch App Clips from a website(developer.apple.com/forums/thread/657921 - https://developer.apple.com/forums/thread/657921), I decided to give TestFlight a try! I had Xcode 12 beta 3 on my Mac(10.15.4), and archived it. When I tried to distribute it, it said I am trying to upload my build to iTunes connect, but from this morning I see this error: ERROR ITMS-90744: Unsupported Xcode or SDK Version. Your app was built with a version of Xcode or SDK that is not yet supported for upload to App Store Connect. For more information about supported versions of Xcode and SDK for Testflight or App Store submissions, view the App Store Connect What's New page (developer.apple.com/app-store-connect/whats-new/) I don't want to update my Xcode to beta 5(it takes 3 hours just to unzip the XIP! Please help! If I need to update Xcode, please help me in this question - https://developer.apple.com/forums/thread/657921 instead
I'm uploading a new SwiftUI app to Testflight. I use Combine to get data from my own REST API. I got an email from Apple saying that i'm using non-public APIs.We identified one or more issues with a recent delivery for your app, Tailosive Hub 1.0 (30). Please correct the following issues, then upload again. ITMS-90338: Non-public API usage - The app references non-public symbols in Tailosive Hub: _$s7Combine18PassthroughSubjectC4sendyyxF, _$s7Combine18PassthroughSubjectCACyxq_Gycfc, _$s7Combine18PassthroughSubjectCMa, _$s7Combine18PassthroughSubjectCyxq_GAA9PublisherAAMc.I'm not using any private APIs and following public documentations.Thanks in advance!
My app is 64bit only, but I still got the error?ERROR ITMS-90096: Your binary is not optimized for iPhone 5 - New iPhone apps and app updates submitted must support the 4-inch display on iPhone 5 and must include a launch image referenced in the Info.plist under UILaunchImages with a UILaunchImageSize value set to {320, 568}. Launch images must be PNG files and located at the ...
I'm getting this error for all the libswift .dylib when I'm submitting my app to the appstore:ERROR ITMS-90171: Invalid Bundle Structure - The binary file myApp.app/frameworks/libswiftCoreLocation.dylib is not permitted. Your app can't contain standalone executables or libraries, other than the CFBundleExecutable of supported bundles.I get the same error formyApp.app/frameworks/libswiftCoreLocation.dylibmyApp.app/frameworks/libswiftCoreGraphics.dylibmyApp.app/frameworks/libswiftUIKit.dylibmyApp.app/frameworks/libswiftCore.dylibmyApp.app/frameworks/libswiftDispatch.dylibmyApp.app/frameworks/libswiftCoreImage.dylibmyApp.app/frameworks/libswiftObjectiveC.dylibmyApp.app/frameworks/libswiftFoundation.dylibmyApp.app/frameworks/libswiftContacts.dylibmyApp.app/frameworks/libswiftDarwin.dylibThe app is buildt with Xcode 7.2.1 and I'm using cocoapodsWhat have I missed?
Hello, Trying to upload build to AppStore but reciving ITMS-90809: Deprecated API Usage. We have tried all possible solutions i think. Searching some help and advice here. All help is appreciated. cmd + shift + f) to find if UIWebView command grep -r UIWebView. Searched out in the code. There is no web view WKwebview is used in every file ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).
Does anyone know where this is wrong?Dear Developer,We identified one or more issues with a recent delivery for your app, APPNAME. Please correct the following issues, then upload again.ITMS-90427: Invalid Swift Support - The expected dylibs are missing from the app’s Framework location, such as /Payload/appname.app/Frameworks.
I'm using deployment Info in Xcode for all targets as 12.0 (12.0 and above) and I got an email after submitting our app (didn't get this for any previous submissions of the app which has same deployment info for 12.0.ITMS-90747: Architecture incompatible with MinimumOSVersion. The app bundle at 'Orangetheory.app/PlugIns/StickerPack.appex' specifies a MinimumOSVersion of '12.0' but contains a 32-bit architecture that is unsupported on iOS 12 and later.What's the proper solution for this?
I have a service that returns the itms-service:// url to perform a update on the app that makes the request.I also NSURLProtocol to handle https challenges and authentication space trust with my backend.when I unregister the NSURLProtocol, the system loads the itms-services:// download request fine. When I add my own protocol, the unsupported URL message starts to happen.I tried returning NO to canInitWithRequest: methods containing the itms-services URL scheme with no success. The only way I got it to work is:unregistering the custom NSURLProtocol for the time the service update and the subsequent call to itms-services occuradding an arbitrary statement that returns no when a request to my app update backend URL is detected, therefore not performing custom trust verification to my backend to avoid MITM.Does anyone know how to solve this?
Trying to submit a tvOS build of an app I'm working on, and I'm getting the following error:ERROR ITMS-90471: Missing Image Asset. Your app is missing the Large App Icon asset 'App Icon - Small' in 'Payload/MadBombzTV.app'.Confused on what it thinks is missing? Large or small? Either way I have all the assets setup in the Assets.xcassets, 'App Icon - Large', 'App Icon - Small', 'Top Shelf Image', and 'LaunchImage'.Any thoughts to what's going on?Thanks!Kevin
Hello Recently I updated one pod version and because of that I needed to set the ALWAYSEMBEDSWIFTSTANDARDLIBRARIES setting to YES. But then while sending the build to the iTunes there was an error with code ITMS-90668 that mentions Bitcode problem. But I have bitcode disabled for the project and all of the pods. However by looking to the build logs I can see that the bitcode was being stripped from that standard Swift libraries which means that it is enabled for them. My question is why is that and how to disable bitcode for swift standard libs as well? The pod mentioned earlier is Helpshift 7.9.1-withCampaigns.
After uploading a debug build to testflight getting an email stating ITMS-90755: Invalid Binary - The following binaries in your app contains prohibited instructions: AppName.app/App. Remove the instructions from the binaries, rebuild and resubmit.. To the best of our knowledge we haven't added any prohibited instructions of any kind, and the email also doesn't provide any information on what the offending instruction is. After much trial and error we found switching a property from an array to a non-array makes the error go away and testflight accepts the build, which obviously doesn't make any sense as to why that change produces this error. Is this some kind of false positive happening or what else is going wrong? Any help to resolving the issue is much appreciated.
this happends today.ERROR ITMS-90190: Invalid Info.plist Key. The key 'UIUserInterfaceStyle' in the Payload/brownie.appInfo.plist file is not valid.
ITMS-90809: Deprecated API Usage - Apple will no longer accept submissions of new apps that use UIWebView as of April 30, 2020 and app updates that use UIWebView as of December 2020. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview). We have removed every single instance of UIWebView from our app mostly the pods were using that and we fixed that but still we are getting the error. We don't understand how to submit our app to App Store