Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the GoogleServices preference since cordova-android supports it
wrt e-mission/e-mission-docs#554 (comment) the native instructions suggest adding it to build.gradle So I looked at `build.gradle` and found ``` if (cdvHelpers.getConfigPreference('GradlePluginGoogleServicesEnabled', 'false').toBoolean()) { apply plugin: 'com.google.gms.google-services' } ``` That just clarified that we don't have to wait for the plugins to edit the config file, we can just edit the config file directly. After adding the preferences, I don't get the push notification error on startup, AND ``` platforms/android/app//build/generated/res/google-services/debug/values/values.xml ``` has the appropriate value. This should be the last pending issue
- Loading branch information