由于SDK,Google Play应用更新已被拒绝,但实际上并未包含

时间:2018-11-17 15:57:03

标签: android android-security airpush

在Google Play上向我的应用提交更新时,它总是拒绝该更新,说“我们拒绝了应用名称为com.mypackage.name的应用名称,因为它违反了我们的恶意行为或用户数据政策。如果您提交了更新后,您的应用的先前版本仍可在Google Play上使用。”

然后电子邮件中有此表: enter image description here

似乎自动检查程序发现我的应用程序中有一个Airpush SDK。我以前使用过该SDK,但是,从我将其从应用程序中删除以来已经很长时间了。

我在项目文件中搜索了“ Airpush”一词,但找不到任何内容。这意味着它不再在我的项目文件中。为何我的应用程序更新被不断拒绝的原因可能是什么?

这是我的应用程序级别build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "com.mypackage.name"
        minSdkVersion 16
        targetSdkVersion 28
        multiDexEnabled true
        versionCode 53
        versionName "5.3"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    compile 'com.facebook.android:audience-network-sdk:4.27.0'
    compile 'com.android.support:multidex:1.0.1'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation('com.airbnb.android:lottie:2.7.0') {
        exclude group: 'com.android.support'
    }
}


apply plugin: 'com.google.gms.google-services'

这是我的项目级别build.gradle:

buildscript {
    repositories {
        jcenter()
        google()
        maven {
            url 'https://maven.google.com'
        }
        maven { url 'https://plugins.gradle.org/m2/'}
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.google.gms:google-services:4.0.0'
        classpath 'io.fabric.tools:gradle:1.26.1'
    }
}

allprojects {
    repositories {
        jcenter()
        google()
        maven {
            url 'https://maven.google.com/'
        }
        maven {
            url "https://jitpack.io"
        }
    }
}

0 个答案:

没有答案