2017-03-06 3 views
-1

이 오류를 해결하는 방법? 사용할 수android studio 버전 충돌

error image

Error:Execution failed for task ':app:processDebugGoogleServices'.

Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 9.0.0.

+1

Google Play 서비스 버전을 9.0.0으로 변경하십시오. – tyczj

+0

오류 메시지는 문자 그대로 답입니다. . . . . . . . . . . . – Andrew

답변

0

실제 플레이 서비스는 10.2.0

내가 강력하게 build.gradle 응용 프로그램의 설정에 그것을 사용하는 것이 좋습니다 : 내 프로젝트에서 전에

dependencies { 
     compile 'com.google.android.gms:play-services:10.2.0' 
    } 
0

나는 같은 문제에 부딪쳤다. 나는 다음과 같은 build.gradle 모듈을 사용하여 내 문제를 해결 : 응용 프로그램 구성 : 강력하게 선택적으로 응용 프로그램의 .apk 파일 크기를 최소화하기 위해 플레이 서비스를 사용하는 것이 좋습니다

dependencies { 
    compile 'com.google.android.gms:play-services:10.0.1' 
} 

합니다. 예 :

dependencies { 
    compile 'com.google.android.gms:play-services-maps:10.0.1' 
} 

Goodluck!