我已经生成了签名的Apk,并在Android设备上安装了它的“被Play Protect阻止”对话框。在成功安装设备上安装了Debug应用后。
我已经使用了两个Google Api
。我之后将使用youtube
映射和firebase api
。
如何在Android Studio或Google Api
中更改项目代码,成功安装版本Apk
。
依赖性:-
[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'
}
}
}
}
答案 0 :(得分:1)
与Google交流时会发生什么,将解决此问题。他们已经为这种情况准备了表格。它们通常在3-5天内纠正。 https://support.google.com/googleplay/android-developer/contact/protectappeals?hl=en
或使用新的开发者帐户签名将解决此问题。
答案 1 :(得分:0)
构建一个新密钥,但请确保您已登录Android Studio。这为我解决了这个问题。