Google удалил мою учетную запись из магазина приложений. Причина, по которой они указали,
Проблема: нарушение политики разрешений
Мы разрешаем приложениям только доступ к Журналу вызовов илиДанные SMS для разрешенного использования и только для включения основных функций приложения.
Мое приложение не запрашивает разрешения на вызовы или чтение смс, а для чтения смс я использую альтернативная реализация
Мой AndroidManifest.xml выглядит следующим образом
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xyz.xyzMobileApp"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA"/>
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<!-- [START fcm_default_icon] -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_launcher" />
<!-- [END fcm_default_icon] -->
<!-- [START fcm_default_channel] -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/default_notification_channel_id"/>
<!-- [END fcm_default_channel] -->
<!-- Notification Implementation Start -->
<service
android:name=".ProductNotificationFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<!-- Notification Implementation End -->
<receiver
android:name="com.xyz.xyzMobileApp.AppOnlyDealTracker"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<receiver android:name=".SmsListener" android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.auth.api.phone.SMS_RETRIEVED"/>
</intent-filter>
</receiver>
<activity
android:name="com.xyz.xyzMobileApp.SplashScreenActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.xyz.xyzMobileApp.MainActivity"
android:screenOrientation="portrait"
android:launchMode="singleTop">
<intent-filter android:autoVerify="true" android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="www.xyz.com" android:pathPrefix="/mobile-apps.html" />
<data android:scheme="https" android:host="m.xyz.com" android:pathPrefix="/m/mobile-apps.html" />
<data android:scheme="https" android:host="tv.xyz.com" android:pathPrefix="/tv/mobile-apps.html" />
<data android:scheme="https" android:host="www.xyz.com" android:pathPrefix="/track-order/" />
<data android:scheme="https" android:host="m.xyz.com" android:pathPrefix="/m/track-order/" />
</intent-filter>
</activity>
</application>
</manifest>