Build input file cannot be found: '/Users/Downloads/GoogleService-Info.plist' #1810
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceHello, I have set up Workflow editor CI as per the docs. and I configured firebase accordingly. However, I encountered this error, which points to the Users/Downloads/GoogleService-Info.plist instead of *ios/Runner/GoogleService-Info.plist. I was also able to log and confirm that the GoogleService-Info.plist file exists under the Runner folder during the prebuild script. #!/bin/sh
echo $IOS_FIREBASE_JSON | base64 --decode \
> $CM_BUILD_DIR/ios/Runner/GoogleService-Info.plist
search_dir=$CM_BUILD_DIR/ios/Runner/
for entry in "$search_dir"/*
do
echo "$entry"
done Script logs
Expected resultsError (Xcode): Build input file cannot be found: '.../ios/Runner/GoogleService-Info.plist'.
Did you forget to declare this file as an output of a script phase or custom build rule which produces it? Actual resultsError (Xcode): Build input file cannot be found: '/Users/Downloads/GoogleService-Info.plist'.
Did you forget to declare this file as an output of a script phase or custom build rule which produces it? Build id (optional)649603a71c6c8c1d02e29d78 |
Beta Was this translation helpful? Give feedback.
Answered by
TradePointTech
Jun 24, 2023
Replies: 1 comment
-
This solution fixed my issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
TradePointTech
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This solution fixed my issue.