Google デベロッパー コンソールでアプリのベータ版を申請したかったのですが、却下されました。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'
}