向用户显示"this app tries to attack other mobile and computer systems"警告



我为Android开发了一个应用程序,但它在Google Play上不可用(客户端不希望这样(。尽管如此,Play 保护开始向用户显示警告(在标题中(。

我已经多次检查了图书馆,并已经发送了一封电子邮件,但没有收到任何回复。我将不胜感激有关此问题的任何帮助,因为该应用程序基本上是一个本地新闻应用程序(政治(,它与任何病毒或任何利用无关。

以下是使用的依赖项列表:

dependencies {
testImplementation 'junit:junit:4.13-beta-3'
androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2'
implementation 'com.r0adkll:slidableactivity:2.1.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.2.0-alpha06'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.mikhaellopez:circularimageview:3.2.0'
implementation 'androidx.browser:browser:1.2.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'jp.wasabeef:picasso-transformations:2.2.1'
implementation 'com.orhanobut:logger:2.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha02'
implementation 'jp.wasabeef:recyclerview-animators:3.0.0'
implementation 'com.ashokvarma.android:bottom-navigation-bar:2.2.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'com.ogaclejapan.smarttablayout:utils-v4:2.0.0@aar'
implementation 'com.duolingo.open:rtl-viewpager:1.0.3'
implementation('com.squareup.retrofit2:converter-gson:2.5.0') {
exclude group: 'org.apache.commons', module: 'commons-io'
}
implementation('com.squareup.retrofit2:retrofit-converters:2.5.0') {
exclude group: 'org.apache.commons', module: 'commons-io'
}
implementation 'com.squareup.okhttp3:logging-interceptor:4.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.0.0'
//3.12.0
implementation 'com.ogaclejapan.smarttablayout:library:2.0.0@aar'
//Optional: see how to use the utility.
implementation 'com.ogaclejapan.smarttablayout:utils-v4:2.0.0@aar'
implementation 'com.karumi:dexter:6.1.0'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'org.jsoup:jsoup:1.12.1'
implementation 'com.github.KhunHtetzNaing:xGetter:1.9.7'
implementation 'saschpe.android:customtabs:2.0.0'
// Butter knife
implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
// YoYo animations
implementation 'com.daimajia.androidanimations:library:2.3@aar'
implementation 'com.google.firebase:firebase-messaging:20.1.6'
implementation 'com.google.firebase:firebase-core:17.4.0'
implementation 'com.google.firebase:firebase-crash:16.2.1'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'me.zhanghai.android.materialratingbar:library:1.4.0'
implementation 'com.github.huzhenjie:RichTextEditor:1.0.4'
implementation files('libs/commons-lang-2.6.jar')
implementation project(':libs:searchview')
implementation project(':libs:AndroidImageSlider')
implementation project(':libs:MaterialShowcaseView')
}

这个库杀死了我的5个帐户GG Play。伤心

最新更新