FirestackApp icon indicating copy to clipboard operation
FirestackApp copied to clipboard

CFBundleIdentifier Does Not Exist from react-native run-ios

Open tam-borine opened this issue 8 years ago • 14 comments

When I try to run the ios simulator for FirestackApp with react-native run-ios from project root I get this error. Any thoughts? image

tam-borine avatar Dec 22 '16 12:12 tam-borine

I think as per our discussion on Facebook this is POSSIBLY because you just did npm install without using the link command? So your xcode wasn't really configured properly?

I've just done a npm install, react-native link and cd ios && pod install and still getting this error. But it looks like something to do with an unspecified bundle ID in XCode. Will post updates..

tam-borine avatar Dec 24 '16 11:12 tam-borine

screen shot 2016-12-24 at 11 54 07

The bundle ID in a working project of mine above. screen shot 2016-12-24 at 11 54 26 The bundle ID of FirestackApp above.

These screenshots are of Info.plist files in XCode.

tam-borine avatar Dec 24 '16 11:12 tam-borine

@tam-borine Hello, Tam! Did you find which problem it was? Thank you!

danielcolgan avatar Jan 06 '17 19:01 danielcolgan

I am getting this problem as well. How did you solve it?

annelorraineuy avatar Jan 16 '17 22:01 annelorraineuy

I also have the same problem here. Has anyone solved it?

henrycity avatar Jan 24 '17 12:01 henrycity

Running into the same problem..would love to see a solution!

screengroove avatar Jan 26 '17 04:01 screengroove

I haven't checked the master branch but v3 is just around the corner so make sure you're on feature/v3, and use yarn instead of npm install. I don't know what exactly is causing this error but using the locked down versions fixes it. You may want to remove node_modules to avoid errors, or just start from scratch:

git clone [email protected]:fullstackreact/FirestackApp.git
cd FirestackApp
git checkout feature/v3
yarn
react-native link
cd ios
pod install
cd ..
react-native run-ios

designorant avatar Jan 31 '17 22:01 designorant

Thanks so much replying...Any idea on when v3 will get out the door?

On Tue, Jan 31, 2017 at 2:35 PM, Michał Ordon [email protected] wrote:

I haven't checked the master branch but v3 is just around the corner so make sure you're on feature/v3, and use yarn https://yarnpkg.com/en/docs/install instead of npm install. I don't know what exactly is causing this error but using the locked down versions fixes it. You may want to remove node_modules to avoid errors, or just start from scratch:

git clone [email protected]:fullstackreact/FirestackApp.git cd FirestackApp git checkout feature/v3 yarn react-native link cd ios pod install cd .. react-native run-ios

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/fullstackreact/FirestackApp/issues/7#issuecomment-276515525, or mute the thread https://github.com/notifications/unsubscribe-auth/ABmBE8-5e6KGA7n_Rv6wCzoV5uB3GDefks5rX7cpgaJpZM4LT7nD .

screengroove avatar Jan 31 '17 23:01 screengroove

@designorant the yarn command just hangs at fetching packages. although npm install works but the error exists: Print: Entry, ":CFBundleIdentifier", Does Not Exist

jasan-s avatar Mar 12 '17 01:03 jasan-s

Same issue, is it possible MacOS 10.12 or perhaps some related Xcode version/library is required?

MacOS 10.11

ajostergaard avatar Mar 20 '17 19:03 ajostergaard

I had to edit my Podfile after the link step and before pod install. The below works for me. :)

ios aj$ cat Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'FirestackApp' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for FirestackApp

  target 'FirestackAppTests' do
    inherit! :search_paths
    # Pods for testing
  end

end
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

[
  'Firebase',
  'Firebase/Core',
  'Firebase/Auth',
  'Firebase/Storage',
  'Firebase/Database',
  'Firebase/RemoteConfig',
  'Firebase/Messaging'
].each do |lib|
  pod lib
end
pod 'DCTAuth', :git => 'https://github.com/danielctull/DCTAuth.git'

ajostergaard avatar Mar 21 '17 09:03 ajostergaard

Same for me with ajostergaard's updated Podfile (above)

...

Installing build/Build/Products/Debug-iphonesimulator/FirestackApp.app
An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2):
Failed to install the requested application
An application bundle was not found at the provided path.
Provide a valid path to the desired application bundle.
Print: Entry, ":CFBundleIdentifier", Does Not Exist

Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/FirestackApp.app/Info.plist
Print: Entry, ":CFBundleIdentifier", Does Not Exist

SailingSteve avatar Sep 20 '17 21:09 SailingSteve

See the same error in the react-native repository at

   https://github.com/facebook/react-native/issues/7308

Using with ajostergaard's updated Podfile (above) (I'm not sure if it helped?)

I got it to compile by ... cd to the FirestackApp directory npm install react-native-git-upgrade npm install -g react-native-cli npm install react-native upgrade react-native run-ios

This resolved the problem described in this issue.

Sadly... The app came up in the simulator for a second and displayed "Native module cannot be null"

See the same error in

   https://github.com/zo0r/react-native-push-notification/issues/160

SailingSteve avatar Sep 21 '17 17:09 SailingSteve