Replies: 1 comment 1 reply
-
Hey @smikheiev ! I noticed this myself in #5152 and thought I fixed it in #5153 but perhaps I got it wrong 🤔 - if you can test altering it and get a more reliable + correct dependency I would be forever grateful for a PR |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I noticed that sometimes values from
firebase.json
are not taken into account on iOS. I investigated a bit and found out that sometimes build stepProcessing Info.plist
is done after[RNFB] Core Configuration
and it overwrites theInfo.plist
file, so it doesn't contain values fromfirebase.json
.The path to the
Info.plist
file set in the "Input files" is$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)
, but in the script it is_TARGET_PLIST="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}"
. I wonder if the input file should not be$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)
, as the generatedInfo.plist
file is not located in the source directory? 🤔Beta Was this translation helpful? Give feedback.
All reactions