Android Mobile Deployment - google-services.json is missing

0
The Build in the cloud option fails for me with the following error.  Error - The following splash screen or icon file does not exist: google-services.json.  I am not sure why. Another app which used to work fine no longer is working either.  I am attempting to do this manually now but according to the documentation this is not the usual way of doing it.   Any ideas as to why this is happening? Thanks    
asked
1 answers
9

Please check the release notes of January 6th under Pushnotifications. 

https://docs.mendix.com/releasenotes/mobile/hybrid-app

 

If your app does not use pushnotifications you can use the automatic build in the cloud but you have to uncheck the Pushnotifications checkbox under Permissions.

 

If you do use pushnotifications you can not use the automatic build and you have to do it manually with phonegap.

The google-services.json file will be provided by Google when you set up your FCM project. Put it in the correct directory as indicated in the config.xml file of your phonegap package:

 <resource-file src="config/google-services.json" target="app/google-services.json" />

answered