I am trying to run eas build with my expo app. I have this in app.json:
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.myapp.myapp",
"googleServicesFile": "GoogleService-Info.plist"
},
I have the file committed in my private repo (I will be less stupid about this later but just want it to work). I run eas build --platform ios --profile development --clear-cache
and it says:
File specified via "ios.googleServicesFile" field in your app.json is not checked in to your repository and won't be uploaded to the builder.
But then I run git ls-files | grep GoogleService-Info.plist
and get the name of the file back. Might eas build be looking at a different branch? If so, how could I tell it to look at my desired branch.
I tried to run eas build with firebase and was expecting the build to find a file that exists in my repo.
Will Mears is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.