无法解决:com.android.installreferrer:installreferrer

时间:2017-11-22 08:37:47

标签: android android-studio referrer

问候https://android-developers.googleblog.com/2017/11/google-play-referrer-api-track-and.html

Play Install Referrer Library 1.0现已推出

  

为了便于集成Install Referrer API,我们发布了适用于Android的Install Referrer Library 1.0。该库可在我们的Maven存储库中找到。要开始使用它,请将以下依赖项添加到app模块build.gradle文件中:

dependencies {
      ...
      compile 'com.android.installreferrer:installreferrer:1.0'
  }

然而它给了我错误:

  

无法解决:com.android.installreferrer:installreferrer:1.0

1 个答案:

答案 0 :(得分:5)

请确保您在项目根目录中添加了google(),即:

allprojects {
    repositories {
        google()

        // If you're using a version of Gradle lower than 4.1, you must
        // instead use:
        // maven {
        //     url 'https://maven.google.com'
        // }
    } }

他们的DOC中没有提到