警告您的Apk正在使用需要隐私权政策的权限:(android.permission.READ_PHONE_STATE) [英] Warnings Your Apk Is Using Permissions That Require A Privacy Policy: (android.permission.READ_PHONE_STATE)

查看:749
本文介绍了警告您的Apk正在使用需要隐私权政策的权限:(android.permission.READ_PHONE_STATE)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在清单中未添加android.permission.READ_PHONE_STATE.许可.

In manifest not added android.permission.READ_PHONE_STATE. permission.

为什么当我上传新的APK版本错误时出现错误.

Why error comes when I upload new apk version error come below.

您的应用具有一个版本号为1的apk,该apk请求以下权限:android.permission.READ_PHONE_STATE.在APK中使用这些权限的应用必须设置隐私政策.

Your app has an apk with version code 1 that requests the following permission(s): android.permission.READ_PHONE_STATE. Apps using these permissions in an APK are required to have a privacy policy set.

我已附上我的Google Play商店帐户的屏幕截图.

I have attached screen shot my google play store account.

我的清单文件.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.my.package.name">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:name=".utils.PreferenceManager"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".SplashScreen"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name=".MainActivity"
            android:screenOrientation="portrait" />

        <activity
            android:name=".CategoryListActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name=".ImagesActivity"
            android:screenOrientation="portrait" />

    </application>

</manifest>

推荐答案

您的应用的manifest.xml文件具有这些权限,可从您的设备访问信息,但在Play商店上提交时您没有隐私权政策链接.所以您会收到此警告.

Your app's manifest.xml having these permission to access information from your's device but you don't have privacy policy link while submitting on the play store. so you getting this warning.

该应用程序的隐私权政策如果您的应用程序处理了个人或敏感用户数据

添加应用商店列表中的隐私权政策有助于提高有关如何处理敏感用户和设备数据的透明度.

******更新
Google Play控制台中的隐私权政策设置已更改位置.

******Update
The privacy policy setting in Google Play Console has changed locations.

在Google Play控制台中,
选择商店状态>应用内容.
在隐私权政策"下.

In Google Play Console,
Select Store presence > App content.
Under "Privacy Policy".

这篇关于警告您的Apk正在使用需要隐私权政策的权限:(android.permission.READ_PHONE_STATE)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆