1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity】 Unity側のプライバシーポリシーの実装

Last updated at Posted at 2019-04-29

以下のプライバシーポリシーを作成し、ホームページやFaceBookにUPして、
UnityのTop画面からボタン押下で、外部ブラウザを起動して
プライバシーポリシーを表示させる。

プライバシーポリシーの作成方法は、以下を参照。
【GooglePlay】 AdMob広告を入れた場合のプライバシーポリシー対応方法(英語版ジェネレート)
https://qiita.com/nonkapibara/items/a9d63e692bc3aa5c314e

Unity側で、プライバシーポリシーを設置しているサイトを開く。という実装をする

    public static void OnTapPrivacy() {
        string url = "https://ameblo.jp/nonkapibara/entry-12457558044.html";
        Application.OpenURL(url);
    }

Google Play Consoleの「ストア掲載情報」の「プライバシーポリシー」欄に
URLを設定する
スクリーンショット 2019-04-29 23.16.36.png

完了!



↓↓Google Play 無料Free
googleStoreLink.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?