I was looking into tutorials about how to build an iOS app with react native and firebase, and they always get the bundle iOS. In my case, since i'm using windows, i went to the project.pbxproj file and search for bundle and found this.
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/firebase.app/firebase";
Usually in the product_bundle_identifier, they only have like "org.reactjs.native.example". Do you think I have to delete what comes after the dollar sign, or i can just put "org.reactjs.native.example" on the firebase and it will work?