I am trying to connect the Firebase project to my current react-native app (Windows 10 OS). I am following steps from https://rnfirebase.io/.
However when I try to add iso app, I need the iOS bundle ID of the project, but I seem not to find it.
The only thing I find, after 2 hours of research on Google, is that the info.plist
suppose to have this data but mine got only this:
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
Does anyone have a solution?
that string is set in project.pbxproj
. You can find it by global searching PRODUCT_BUNDLE_IDENTIFIER
.
Or you can open the Xcode by opening .xcworkspace
file and
======EDIT
the ${PRODUCT_NAME: rfc1034identifier} is a formatted string with product_name
.
rfc1034Identifier: Replaces any non-rfc1034 identifier characters with a hyphen (-).
BTW, you should set one yourself.
FYI, using react-native-rename