6
我想在Google Developer Console中提交我的測試版應用程序,但它被拒絕了。 Google發給我的郵件說,原因是Google Pay的使用不正確。事情是,我根本不在我的應用中使用Google Pay。還搜索我的行清單的時候,谷歌說我應該在我的應用程序中刪除時不想使用谷歌支付(因Google付款而被拒絕的應用程序
<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'
}
您需要提供更多信息 – ligi
我真的不有更多的信息,我不知道爲什麼它可能只是該郵件被拒絕,這是在我的眼睛無法理解 –
你使用任何模塊聲明''? –
BadCash