5

I’m having issue when uploading to app store an app with this framework.

ERROR ITMS-90207 "Invalid bundle. The bundle at .../TesseractOCR.framework' does not contain a bundle executable.

In my Xcodeproj i have another project inside, i'm including the framework on dependencies, linked libraries and Copy Files.

Do you know something about this issue?.

Many Thanks, Nahuel.

Sruit A.Suk
  • 7,073
  • 7
  • 61
  • 71
user3700603
  • 71
  • 1
  • 6

3 Answers3

2

I was having the same problem. I fixed the issue by following this process:

In your info.plist file, under the key Executable file, add the value $(EXECUTABLE_NAME).

Paul Roub
  • 36,322
  • 27
  • 84
  • 93
Ashik
  • 1,204
  • 12
  • 22
0

I solved this by changing Mach-O Type to Dynamic Library in Build Settings. Xcode wasn't generating an executable.

user3700603
  • 71
  • 1
  • 6
0

I solved it by setting Bitcode off. (below two are related settings)

  1. Build Settings > Build Options > Enable Bitcode : NO
  2. Uncheck "Include Bitcode" when uploading app to Itunes Connect (after archiving)
Yuichi Kato
  • 863
  • 7
  • 16