Mayank Patel
Mayank Patel

Reputation: 3908

iOS app showing Invalid Binary Xcode 11 beta 6

I am uploading the app from Xcode 11 Beta6 and it is showing invalid binary

Error is like this:

Dear Developer,

We identified one or more issues with a recent submission for App Store review for your app, "app" 2.40 (5821). Please correct the following issues, then upload again.

ITMS-90111: Invalid Toolchain - Your app was built with a beta version of Xcode or SDK. Apps submitted to the App Store must be built with the GM version of Xcode 9 and the SDK for iOS 11, tvOS 11, watchOS 4, or macOS 10.13 or later.

Can anyone help me out from this problem?

I have tried all this answers ERROR ITMS-90534: "Invalid Toolchain

UPDATE :

Based on the answer and comment i have tried to run my app in xcode 10.2 now it is showing me error like this (it is because i have some fixed UI related to iOS13)

The document "Main.storyboard" could not be opened. Failed to unarchive element named "collectionViewCellContentView".

enter image description here

Upvotes: 0

Views: 898

Answers (2)

Mayank Patel
Mayank Patel

Reputation: 3908

In Xcode beta version I have used collection view in once screen now when I open the project in XCode 10 version then it was showing the issue in collection view "collectionViewCellContentView" I have renamed it to "view"

Xcode 11 Beta - UICollectionview

<collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3lR-aq-iNR">
                                            <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
                                            <autoresizingMask key="autoresizingMask"/>
                                        </collectionViewCellContentView>

Xcode 10.2

<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3lR-aq-iNR">
                                            <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
                                            <autoresizingMask key="autoresizingMask"/>
                                        </view>

Upvotes: 2

CristiCh
CristiCh

Reputation: 11774

You should use a non-beta version of Xcode. You can use eg. Xcode 10.2

Upvotes: 0

Related Questions