Google 违反权限政策

Google's Violation of the Permissions policy

Google 已将我的应用从应用商店中删除,他们给出的原因是

问题:违反权限政策

我们只允许应用访问通话记录或短信数据以用于允许的用途,并且仅允许应用的核心功能。

我的应用程序不要求任何类型的通话或阅读短信权限和阅读短信我正在使用 alternative implementation

我的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>

如果您从清单中删除了此 SMS 权限,然后将应用程序上传到 Playstore。 Google play 仍然询问您有关填写许可表以解决此问题的问题,您必须在清单中指定从中删除这些权限, 例如,如果您之前添加了请求阅读短信的权限,那么您必须在清单中添加打击代码。

<uses-permission android:name="android.permission.SEND_SMS" tools:node="remove" />

我的问题正在解决,因为我的旧版本应用程序在我的内部测试版本中具有短信和联系权限。我们所要做的就是在所有版本中更新应用程序的最新版本,即生产版本、alpha 版本、beta 版本、内部测试版本。

Google 删除了我的应用程序,在多次尝试联系他们之后,他们确认这是因为我有一个旧的内部测试版本,仍然有效,正在使用这些权限。在我删除该版本后,我的应用程序在 Google 24 小时后再次可用。