I am using libgdx to create an ios app. I checked the sdk that is is compiling with, and it is 7.0.2. How do I fix this?
1 package(s) were not uploaded because they had problems:
/var/folders/cj/t7129jm93gv3pj_wjdfjq2qm0000gn/T/834524929.itmsp -
Error Messages: Apple's web service operation was not
successful Unable to authenticate the package:
834524929.itmsp ERROR ITMS-9000: "This bundle is invalid. New apps and app updates submitted to the App Store must be built with
public (GM) versions of Xcode 5 and iOS 7 SDK. Do not submit apps
built with beta software." at SoftwareAssets/SoftwareAsset
(MZItmspSoftwareAssetPackage) Could not start delivery: all
transports failed diagnostics
This bundle is invalid. New apps and app updates submitted to the App
Store must be built with public (GM) versions of Xcode 5 and iOS 7
SDK. Do not submit apps built with beta software.
Let's look at this part carefully:
Must be built with public (GM) versions of Xcode 5 and iOS 7
SDK. Do not submit apps built with beta software.
Zoom in a bit, please?
Do not submit apps built with beta software.
You are using the Xcode developer preview, probably Xcode 5.1 for iOS 7.1 beta. Since this iOS version is not out, Apple does not allow you to submit apps compiled under this version of Xcode, hence your bundle is "invalid".
Simply open up Xcode with this project, fix any errors that may come, recompile and submit.
Related
enter image description hereERROR ITMS-90534: "Invalid Toolchain. New apps and app updates must be built with the public (GM) versions of Xcode 6 or later, macOS, and iOS SDK or later. Don't submit apps built with beta software including beta macOS builds." ERROR ITMS-90534: "Invalid Toolchain. New apps and app updates must be built with the public (GM) versions of Xcode 6 or later, macOS, and iOS SDK or later. Don't submit apps built with beta software including beta macOS builds."
Please Resolve This Problem
The error is self-explanatory - don't use OS X or Xcode betas for apps you are going to submit, use current versions (from the App Store, for example).
Right after updating to Xcode 6.2 which was released hours ago, my app stops passing the validation phase. It shows "This bundle is invalid. New apps and app updates submitted to the App Store must be built with public (GM) versions of Xcode 5.1.1 or higher and iOS 7 SDK. Do not submit apps built with beta software."
Well....my Xcode is an official release by Apple and its version is 6.2.
Is this a bug or?
Thanks!
I've found my own solution. Don't waste your time setting configurations etc. What I did was pretty "brutal". Just delete/uninstall the Xcode app and download it from the App Store again. Then it works as before, as it should.
I am trying to upload a new version of my iPhone app but I am getting following error:
unable to validate application archives of type 0x0
I can't upload it from Xcode 5 as I am getting error because of new api of push notification. My app is not using swift and has a small code change in previous version. How can I upload this new version of the app?
Apple does not allow developers to upload apps using beta versions of Xcode. Xcode 6 is now out on the App Store, and the GM can also be downloaded from their developer site.
Do not submit apps built using beta software, as beta versions of Xcode, Operating Systems, and SDKs are for development and testing only.
Source: Apple's Dev Site
I'm using XCode 5.1 (5B130a) that I got from the mac appstore. I'm compiling an app and when I submit it to the store, I get this error :
"New apps and app updates submitted to the App Store must be built with public (GM) versions of Xcode 5 and iOS 7 SDK"
You need to update XCode to the last version.
Also that 'b' in 5B130a release means that you are in BETA Version of XCode
Also the Apple Guidelines say:
Do not submit apps built with beta software
I had same problem but i am using this version xcode6 beta4 and ios8.
When i have submit app that time below error is occurs:
Apps and app updates submitted to the App Store must be built with the public (GM) versions of Xcode 5.1.1 or later, and iOS 7 SDK or later. Don’t submit apps built with beta software.
Since yesterday I can not validate the app but in last week it works great and now it didn't. I get the error:
The bundle is invalid. New apps and app updates submitted to the App Store must be built with public.
I'm using xcode 5.1 and SDK 7.1
Have someone any idea?
Problem is not compliance with apple's role. According to apple's news,
Starting May 15, 2014, new apps and app updates submitted to the App
Store must be built with Xcode 5.1.1
Take build with Xcode 5.1.1 and check it. Xcode version info taken into binary during archive process, see this post.
i also had the same problem with Xcode 5.1.1
you have to update your Application loader for resolve this problem because today onwards Apple accept APP Binary only from applications loader,
for latest version of application loader.
go to iTune Connect login with your Apple credential
Go to --> Manage Your Apps
from the bottom links goto Download Application Loader . its 82 MB .dmg
open your project with XCODE 5.1.1
now set your app deployment target to 7.1 or 7.0 (minimum)
now try to upload your binary with latest Application Loader
Thanks