Raon
Raon

Reputation: 1286

Appstore FailureNo architectures in the binary. Lipo failed to detect any architectures in the bundle executable.” At SoftwareAssets/SoftwareAsset

Hi I just tried to upload my app to the app store but it failed with error.

**

No architectures in the binary. Lipo failed to detect any
architectures in the bundle executable.

**

enter image description here

Upvotes: 18

Views: 14921

Answers (7)

Imeksbank
Imeksbank

Reputation: 114

Same thing. Had this issue. I just changed Project -> Build Settings -> Produc Name (wrote: "Wundmanager")

then

Project -> General -> Identity -> Bundle Identifier (wrote "imeksbank.Wundmanager")

my nick is imeksbank

and then

iTunes Connect and the same to Bundle-ID (chnaged "imeksbank.Wundmanager")

After that it worked for me. I am also new and today is my first day i can Upload my first App. xcode 5.1.1 ios 7.1

Upvotes: 3

ianrandmckenzie
ianrandmckenzie

Reputation: 482

I was able to get past this error by restarting Xcode.

Upvotes: 1

Holtwick
Holtwick

Reputation: 1966

After a long struggle with an error message like this, I finally understood that mistakenly an iOS framework had been copied into the IPA. This was added automatically following the usual steps to add a framework to an iOS project.

So the solution would be to remove "Embed Frameworks" phase from "Build Phases".

enter image description here

Upvotes: 2

ak_ninan
ak_ninan

Reputation: 781

Sometimes cleaning your project quitting and re archiving will solve the issue. In my case it worked. I don't have any issues with the bundle name, identifier or plist.

Upvotes: 0

GAllan
GAllan

Reputation: 409

Can also be caused by embedding a static framework (mistaking it for a dynamic one) in your app. Easily done if you build in different phases and/or allow xcode to "build implicit dependencies".

Upvotes: 2

Fran Pugl
Fran Pugl

Reputation: 494

That can also happen when the Cocoapods cache is not in sync, then just

pod install

solves the issue.

Upvotes: 6

Raon
Raon

Reputation: 1286

Hi I'm glad i found the Answer. The problem was actually with my 'Productname' in info.plist . It was different in my first version.

Upvotes: 4

Related Questions