gpt4 book ai didi

android - 安装在 Android 设备中的已发布 APK 被 Play Protect 错误阻止

转载 作者:行者123 更新时间:2023-11-29 23:44:16 24 4
gpt4 key购买 nike

我已经生成了签名的 Apk 并安装在 Android 设备中,它给出了被 Play Protect 阻止的对话框。当 Debug 应用程序安装在设备中时成功安装。

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

如何在 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'
}
}
}
}

最佳答案

当您与 Google 沟通时发生的事情将解决问题。他们为这种情况准备了表格。他们通常会在 3-5 天内纠正。 https://support.google.com/googleplay/android-developer/contact/protectappeals?hl=en

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

关于android - 安装在 Android 设备中的已发布 APK 被 Play Protect 错误阻止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51587544/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com