06
16

Privacy policy 관련 정책 위반 이메일 통보

  • 출시했던 콘텐츠와 관련하여 이런 이메일이 왔었고, 다짜고자 앱이 플레이스토어에서 삭제되었다.
  • 아래는 메일 내용 그대로를 가져온 것이다.

Privacy policy
Your privacy policy isn’t compliant with our User Data policy. You must link to a privacy policy on your app's store listing page and within your app, regardless of your app's access to sensitive permissions or data. (Apps that don’t access any personal and sensitive user data must still submit a privacy policy.)
To resolve this issue, review this compliance checklist:
Is your privacy policy linked on your app's store listing page in Play Console and within the app itself?
Does it clearly indicate that the page is a privacy policy? (For example, is it listed as "privacy policy" in the title, or does it have “privacy” in the URL and body of the page?)
Is your privacy policy readable in a standard browser without any plugins or special handlers (like PDFs or uncommon MIME types)?
Is your privacy policy available on an active, visible URL?
Is your privacy policy non-editable?
Does it have a URL that links to a single governing privacy policy in your website and/or Google Play listing rather than one that points to multiple privacy policies?
Does your privacy policy include the name of the app or entity (like the developer or company) shown in the app’s store listing?
Your privacy policy must meet all the requirements listed in the “Privacy Policy” section of the User Data policy. For more information, review "Data practices" in the Families Policy Requirements and the Personal and Sensitive User Data policy.
To add or update your privacy policy, follow the steps in Add a privacy policy. Make sure that your privacy policy applies to your app, specifically covers user privacy, and is available via a valid active URL. (PDF or doc links aren’t accepted.)
  • 요약하면 개인정보처리방침은 앱의 상점 목록 페이지와 앱 내에서 링크되어야 하며, 모든 앱은 민감한 권한이나 데이터에 액세스하지 않더라도 개인정보처리방침을 제출해야 한다는 것이다.
  • 즉, 나의 경우는 개인정보처리방침에 대한 내용을 앱 내에서 볼 수 있도록 링크를 걸어놓지 않아 정책위반으로 삭제된 것이다. 비록 개인정보를 수집하지 않는 앱이라 하더라도.

문제 해결하기(1)
- 개인정보처리방침을 볼 수 있는 사이트 만들기

  • 블로그에 개인정보처리방침이 담긴 글을 포스트해서 링크해도 될 것이고, 구글 사이트를 이용해서도 간단하게 할 수 있지만, 네트리파이를 이용해서 해결해 보았다. 아래와 같은 절차로 진행하였다.
1. privacy.go.kr 접속하여 개인정보처리방침 만들기
2. 개인정보처리방침을 만들 때 사이트 URL을 기입하는 곳이 있는데,
    사이트는 네트리파이 사이트를 만들어 연결하면 된다.
3. 네트리파이에 첨부할 것을 먼저 만든다.
    바탕화면에 privacy폴더 - index.html 파일 만든 후 이것들을 네트리파이에 deploy하고,
    site setting들어가서 사이트명을 수정하여 개인정보처리방침 사이트와 연결한다.
4. 개인정보처리방침을 다 만들고 다운로드받아서 privacy.html로 이름을 바꾼다.
5. 네트리파이에 연결한 폴더에 위 html파일 넣고 다시 네트리파이에 업로드한다.
6. 기존 네트리파이에서 부여받은 주소뒤에 /privacy라고 입력하면 해당 개인정보처리방침이 잘 나온다.

문제 해결하기(2)
- 타이틀에서 개인정보처리방침 사이트 연결버튼 만들기

  • 타이틀 화면에 개인정보처리방침 사이트와 연결되는 버튼을 하나 더 만들어서 연결되도록 하면 된다.
  • 스크립트는 아래처럼 간단하다.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class LinkOpener : MonoBehaviour
{
    public string url;

    public void GoURL()
    {
        Application.OpenURL(url);
    }
}

 

COMMENT