错误无法解决:com.google.android.gms:play-services-wallet:11.4.0

时间:2017-10-15 22:23:09

标签: android android-gradle google-play-services android-support-library android-pay

我尝试按照此处的Google Payment API教程进行操作: https://developers.google.com/payments/setup

我同步gradle时出现以下错误

image with errors

主要是 - 我收到错误:

  

无法解决:com.google.android.gms:play-services-wallet:11.4.0

错误下有一个链接"Install Repository and sync project"但是当我点击它时,没有任何反应。

有没有办法手动安装必要的存储库?还有其他我想念的东西吗?我甚至需要安装什么存储库?我试图更新所有内容。

摇篮:

{
 apply plugin: 'com.android.application'

    android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"
    defaultConfig {
        applicationId "com.google.android.gms.samples.wallet"
        minSdkVersion 26
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
}
    buildTypes {
        release {
            shrinkResources true
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 
    'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:26.0.2'
    compile 'com.google.android.gms:play-services-wallet:11.4.0'
    compile 'com.google.android.gms:play-services-tasks:11.4.0'
    compile 'com.google.android.gms:play-services-base:11.4.0'
    compile 'com.google.android.gms:play-services-basement:11.4.0'
}

顶级Gradle

buildscript {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

清单

<?xml version="1.0" encoding="utf-8"?>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name="MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <!-- Enables the Google Payment API -->
    <meta-data
        android:name="com.google.android.gms.wallet.api.enabled"
        android:value="true" />
</application>

我一直试图让这个运行大约一个星期,并且每当我加入谷歌钱包时都无法同步。我尽可能地按照教程进行操作。我已经尝试过来自github的示例应用程序,来自我自己的应用程序,以及来自几个应用程序的应用程序。我不知道如何让这个存储库工作。

感谢。 约翰

2 个答案:

答案 0 :(得分:2)

您应该将Google maven添加到allprojects而不是buildscript。所以,把它改成这样的东西:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

答案 1 :(得分:0)

今天早上我也遇到了同样的问题......但修复不是使用“11.4.0”,而应该使用“11.0.4”。可能是他们网站上的错误,因为当你输入“11.4.0”时,Android Studio会给你这个错误并且它会告诉你更新到最新版本是“11.0.4”。

总结一下,使用这个,它应该工作

compile 'com.google.android.gms:play-services-wallet:11.0.4'