Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invalid iOS Bundle [duplicate]

This bundle is invalid - The Info.plist file for /Payload/xxx.app/Frameworks/FBSDKCoreKit.framework/FacebookSDKStrings.bundle is missing or could not be read.

Invalid Bundle - The bundle at '/Payload/xxx.app/Frameworks/FBSDKCoreKit.framework/FacebookSDKStrings.bundle' does not contain a bundle executable.

I'm at the wits end now. I've spent over 6 hours trying to figure this one out. I've also manually downloaded the FB SDK for my Swift app and try to point the Framework to the FBSDKCoreKit.framework in the Downloaded package.

Deleted my derived date and cleaned everything before trying to upload again. Still can't figure out what's wrong. Any help would be appreciated.

like image 485
ibyte Avatar asked Feb 21 '19 03:02

ibyte


People also ask

Can two apps have the same bundle ID?

A bundle ID or bundle identifier uniquely identifies an application in Apple's ecosystem. This means that no two applications can have the same bundle identifier.

What is a valid bundle identifier?

yourcompany." Bundle identifiers must be unique and contain your actual domain name, company name, or email address. Change your Bundle Identifier in your Xcode project, rebuild with a matching provisioning profile, and submit your app again.

Can I make iOS app with C?

iOS applications are typically developed in a programming language called Objective-C and supported by a support library called Cocoa Touch.


1 Answers

I got a same issue.

This bundle is invalid - The Info.plist file for /Payload/Treats.app/Frameworks/FBSDKCoreKit.framework/FacebookSDKStrings.bundle is missing or could not be read. Invalid Bundle - The bundle at '/Payload/Treats.app/Frameworks/FBSDKCoreKit.framework/FacebookSDKStrings.bundle' does not contain a bundle executable.

I could resolve the issue by renaming FacebookSDKStrings.bundle to FacebookSDKStrings located in "Pods/Pods/FBSDKCoreKit/Resources/"

like image 111
Kevin Avatar answered Sep 21 '22 20:09

Kevin