IONIC - Android Studio Error : ":processDebugGoogleServices" Please fix the version conflict either by updating the version of the google-services plugin
IONIC - Android Studio Error : ":processDebugGoogleServices" Please fix the version conflict either by updating the version of the google-services plugin 이 질문이 진짜 많다 저 오류로 고생하는 이들이 엄청나단건데 한국어로 블로깅된 내용이 없어서 정리해봅니다 1. 원인 cordova-plugin-fcm cordova-plugin-googleplus 위 두개의 플러그인을 사용할 경우 발생한다 1. Cause cordova-plugin-fcm cordova-plugin-googleplus Occurs when two plugins are used 2. 해결방법 ( Solutions) 1) build.gradle(Module:android) OPEN 2) dependencies modify buildscript { repositories { mavenCentral() } // Switch the Android Gradle plugin version requirement depending on the // installed version of Gradle. This dependency is documented at // http://tools.android.com/tech-docs/new-build-system/version-compatibility // and https://issues.apache.org/jira/browse/CB-8143 dependencies { classpath 'com.android.tools.build:gradle:1.5.0' classpath 'com.google.gms:google-services:3.1.0' } } // Allow plugins to declare Maven ...