From a9378d75d2a1b0f53bcb9db122ab128a0fe31847 Mon Sep 17 00:00:00 2001 From: calvin0x00 <35786944+calvin0x00@users.noreply.github.com> Date: Thu, 31 May 2018 17:50:34 +0800 Subject: [PATCH] Fixed processDebugGoogleServices building error 1. Move the google-services plugin to the bottom to avoid a building time error 2. Error message: app:processDebugGoogleServices FAILED --- Examples/simple-fcm-client/android/app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples/simple-fcm-client/android/app/build.gradle b/Examples/simple-fcm-client/android/app/build.gradle index 7425d33..fd9274e 100644 --- a/Examples/simple-fcm-client/android/app/build.gradle +++ b/Examples/simple-fcm-client/android/app/build.gradle @@ -1,5 +1,4 @@ apply plugin: "com.android.application" -apply plugin: "com.google.gms.google-services" import com.android.build.OutputFile @@ -145,3 +144,5 @@ task copyDownloadableDepsToLibs(type: Copy) { from configurations.compile into 'libs' } + +apply plugin: "com.google.gms.google-services" -- 2.26.2