2017-08-16 63 views
0

我剛剛創建了一個新的android項目與科爾多瓦,當我在android studio中加載項目。我得到了下面的錯誤。 我已更新我的谷歌播放服務,但仍然給我這個錯誤。安卓谷歌播放服務錯誤在應用程序構建在mac上

Error:Execution failed for task ':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 11.0.1. 

回答

0

可以嘗試使用最新版本

compile 'com.google.android.gms:play-services:11.2.0' 

,並檢查是否有

dependencies { 
    classpath 'com.google.gms:google-services:3.0.0' 
    // ... 
} 
在上 build.gradle文件

相關問題