应用因Google Pay而被拒绝

时间:2016-04-17 18:44:54

标签: android google-play google-pay

我想在Google Developer Console中提交我的应用测试版,但它被拒绝了。 Google发给我的邮件说,原因是Google Pay使用不当。问题是,我根本不在我的应用程序中使用Google Pay。此外,在搜索我的清单时,Google表示我不应该在我的应用程序中删除不想使用Google Pay(

<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true"/>

),我找不到任何东西。 我也不想出售任何应用程序内购买并在开发控制台中这样说,该应用程序是完全免费的。

模块的build.gradle是:

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

android {
    compileSdkVersion 22
    buildToolsVersion "21.1.2"
    defaultConfig {
        applicationId 'com.myproject'
        minSdkVersion 14
        targetSdkVersion 22
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
}

dependencies {
    compile project(':copyoflibrary')
    compile project(':copyofHoloGraphLibrary')
    compile project(':multiStateToggleButton')
    compile 'com.android.support:support-v4:22.0.0'
    compile 'com.google.code.gson:gson:2.3'
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile "com.google.android.gms:play-services:7.5.+"
    compile files('libs/commons-lang3-3.3.2.jar')
    compile 'com.android.support:cardview-v7:22.0.+'
    compile 'com.pkmmte.view:circularimageview:1.1'
}

1 个答案:

答案 0 :(得分:2)

我终于找到了这个问题。如果您使用gradle中的google play,如下所示:

compile 'com.google.android.gms:play-services:8.4.0'

然后您的调试和发布清单也将包含Android付费代码。它也将自动包含inapp purchase meta。

因此,您需要为每个Google服务选择个人。

因此,如果您正在使用GCM推送通知, 你的gradle应该像

   compile "com.google.android.gms:play-services-gcm:8.4.0"

如果你使用谷歌分析,那么gardle将是

compile 'com.google.android.gms:play-services-analytics:8.4.0'

我做了这个改变后检查了发布和调试清单。

由于