1. ホーム
  2. android

[解決済み] 警告 あなたのApkは、プライバシーポリシーが必要なパーミッションを使用しています。(android.permission.READ_PHONE_STATE)

2022-05-18 13:02:49

質問

マニフェストに android.permission.READ_PHONE_STATE.permission が追加されていません。

新しいapkのバージョンをアップロードすると、なぜか以下のエラーが出ます。

あなたのアプリには、次のパーミッション(複数可)を要求するバージョンコード1のapkがあります: android.permission.READ_PHONE_STATE. APKでこれらのパーミッションを使用するアプリは、プライバシーポリシーを設定する必要があります。

Google Play Store アカウントのスクリーンショットを添付しました。

私のマニフェストファイルです。

<?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 ストアでの送信時にプライバシー ポリシーのリンクがないため、この警告が表示されます。

アプリのプライバシーポリシーが必要です アプリが個人情報や機密情報を扱う場合

アプリのストア一覧にプライバシーポリシーを追加すると、機密性の高いユーザーデータやデバイスデータをどのように扱うかについて透明性を確保することができます。

アップデート 1

Google Play Consoleのプライバシーポリシーの設定場所が変更になりました。

Google Play Consoleで。

選択する ストアの存在 アプリの内容 .

以下 個人情報保護方針 .

更新情報2

選択 ポリシー アプリの内容 を左端の

の下に 個人情報保護方針 .