Xcode 7.3: error: could not read CFBundleIdentifier from Info.plist (null) after pods configuration

812 Views Asked by At

I've downloaded Telegram's code and I'm playing around trying to add Auth0 with it, so I tried to used pods, replicating the practice code.

After some pain regarding PODS_ROOT, I finally managed to get it going, only to encounter the above error.

And now I'm not sure what to do. This answer leads me to believe there's an issue with the info.plist file location, but there's too many:

enter image description here

UPDATE:
I saw that the Bundle Identifiers for the Targets were blank, in contrast to the 'base' Telegram app (perhaps something to do with switching from config configuration to Pods-Telegraph?), which had values in it. So I copied over the Bundle Identifiers from the 'base' app like so:

enter image description here

And promptly ended with this new issue:

ld: library not found for -lPods-watchkitapp Extension clang: error: linker command failed with exit code 1 (use -v to see invocation)

EDIT:

For reference:
Telegram (iOS version is Objective-C)
Auth0

For replication, I:

  • Downloaded necessary files for each project. Telegram is missing some files scattered around the net, and Auth0 requires a (free) account for configuration.
  • Created a podfile for Telegram.
  • Modified it to resemble Auth0 podfile - Target main app only. If done right, this should replicate the error in question.
  • Filled in Bundle Filters (erased upon pod install), based off original values. If done right, this should replicate the UPDATE error in question.
1

There are 1 best solutions below

9
On

Close your project . Open Again. Clean your project and try to run.


And if its not works then Search info.plist right click -> Remove reference . And add it again. and try to Build.

enter image description here

EDIT :- After installing pod You need open project from .xcworkspace in place of .xcodeproject .

enter image description here