相关疑难解决方法(0)

Google Developer Console中的“我们检测到您的应用程序正在使用旧版本的Google Play开发者API”警告是什么?

我们没有明确使用任何Google Play开发者API,但是我们收到以下警告:

在此处输入图片说明

这与https://developer.android.com/google/play/billing/billing_library_releases_notes相关吗?

我们当前正在使用Google Play计费库1.2.2版本(2019-03-07)

我们不打算迁移Google Play Billing Library 2.0.1版本(2019-06-06),因为它将花费很多时间,而且工作量很大。

购买必须在三天内确认

但这只是我的猜测-Google Play结算库与Google Play开发者API相关。它们可能彼此相关,也可能彼此不相关。

“我们检测到您的应用正在使用旧版本的Google Play开发者API”是什么意思?

以下是我们完整的依赖项。知道导致此警告的原因是什么?

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])


    implementation 'com.android.billingclient:billing:1.2.2'


    implementation 'androidx.multidex:multidex:2.0.1'


    def lifecycle_version = '2.0.0-beta01'
    // ViewModel and LiveData
    implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"


    // alternately - if using Java8, use the following instead of compiler
    implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"


    def room_version = '2.1.0'
    implementation "androidx.room:room-runtime:$room_version"
    annotationProcessor "androidx.room:room-compiler:$room_version"

    def work_version = "2.1.0"
    implementation "androidx.work:work-runtime:$work_version"

    // https://github.com/yccheok/SmoothProgressBar
    implementation 'com.github.castorflex.smoothprogressbar:library:1.1.0'

    // For Google …
Run Code Online (Sandbox Code Playgroud)

android google-api-java-client google-developers-console

54
推荐指数
3
解决办法
1万
查看次数