24
Gradle错误:任务':app:processDebugGoogleServices'的执行失败
我正在跟踪此链接以将Google登录集成到我的android应用中。https://developers.google.com/identity/sign-in/android/start-integrating 如上述页面的最后一步所示,我们必须包含依赖项 compile 'com.google.android.gms:play-services-auth:8.3.0' 在应用程序级别的build.gradle文件中,但这样做并构建项目时出现错误提示 Error:Execution failed for task ':app:processDebugGoogleServices'. > Please fix the version conflict. build.gradle(模块:应用) apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.brainbreaker.socialbuttons" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), …