安装在Android设备中的已发布APK被Play保护错误阻止

时间:2018-07-30 05:37:02

标签: android android-studio google-api

我已经生成了签名的Apk,并在Android设备上安装了它的“被Play Protect阻止”对话框。在成功安装设备上安装了Debug应用后。

我已经使用了两个Google Api。我之后将使用youtube映射和firebase api

如何在Android Studio或Google Api中更改项目代码,成功安装版本Apk

enter image description here

依赖性:-

[dependencies {
    compile fileTree(include: \['*.jar'\], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile files('libs/universal-image-loader-1.9.5.jar')
    compile files('libs/mpandroidchartlibrary-2-2-4.jar')
    compile files('libs/YouTubeAndroidPlayerApi.jar')
    compile 'com.android.support:appcompat-v7:25.0.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:25.0.1'
    compile 'com.squareup.okhttp:okhttp:2.0.0'
    compile 'com.android.support:support-v4:25.0.1'
    compile 'com.roomorama:caldroid:3.0.1'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'com.github.bumptech.glide:glide:4.7.1'
    compile 'com.android.support:cardview-v7:25.0.1'
    compile 'com.android.support:recyclerview-v7:25.0.1'
    compile 'com.google.android.gms:play-services:11.0.4'
    compile 'com.google.firebase:firebase-core:11.0.4'
    testCompile 'junit:junit:4.12'
}



configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '25.0.1'
            }
        }
    }
}

2 个答案:

答案 0 :(得分:1)

与Google交流时会发生什么,将解决此问题。他们已经为这种情况准备了表格。它们通常在3-5天内纠正。 https://support.google.com/googleplay/android-developer/contact/protectappeals?hl=en

或使用新的开发者帐户签名将解决此问题。

答案 1 :(得分:0)

构建一个新密钥,但请确保您已登录Android Studio。这为我解决了这个问题。