【发布时间】:2016-08-09 09:44:51
【问题描述】:
我想在 Google Developer Console 中提交我的测试版应用,但被拒绝了。 Google 发给我的邮件说,原因是 Google Pay 使用不当。问题是,我根本不在我的应用程序中使用 Google Pay。此外,在我的清单中搜索该行时,谷歌表示当我不想使用 Google Pay 时,我应该在我的应用中删除(
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true"/>
),我找不到任何东西。 我也不想出售任何应用内购买,并且在开发控制台中确实说过,该应用完全免费。
Module的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'
}
【问题讨论】:
-
您需要提供更多信息
-
我真的没有更多的信息,我不知道为什么它会被拒绝,除了这封邮件,这在我看来是不可理解的
-
您是否使用任何声明
<meta-data ...>的模块? -
发布你的 build.gradle
-
那个是正确的,还是项目的那个?
标签: android google-play google-pay