android

[Flutter] 교육 앱, 만 13세 미만 아동을 주요 대상으로 제작된 앱 광고 설정.

nowoodeel 2021. 5. 30. 21:40
728x90

교육 앱, 만 13세 미만 아동을 주요 대상으로 제작된 앱 Google AdMob광고 설정이 필요하다.

 

 

어린이와 가족을 위한 앱 설계 - Play Console 고객센터

도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요

support.google.com

 

1. 개인정보처리 방침 URL

https://www.privacy.go.kr/main/mainView.do

 

개인정보보호 포털

공지 2021년 개인정보 영향평가 계속교육(1차, 5.15) 안내(온라인 교육) ※ 본 교육은 개인정보 영향평가 인증서를 발급받고, 유효기간 내 해당 인증서의 갱신을 원하는 전문인력만 신청 가능□ 일

www.privacy.go.kr

 

2. Google AdMob  광고 콘텐츠 등급 설정. 

G등급으로 설정한다.

 

3. Flutter, google_mobile_ads를 통해 설정하는 방법.

배포 국가에 맞게 requestConfiguration을 설정하면 된다.

미국 아동 온라인 개인정보 보호법(COPPA)

EU 개인정보 보호법(GDPR)

  MobileAds.instance.initialize();

  final RequestConfiguration requestConfiguration = RequestConfiguration(
      // COPPA
      tagForChildDirectedTreatment: TagForChildDirectedTreatment.yes,
      // GDPR
      tagForUnderAgeOfConsent: TagForUnderAgeOfConsent.yes);
  MobileAds.instance.updateRequestConfiguration(requestConfiguration);

 

 

 

google_mobile_ads | Flutter Package

Flutter plugin for Google Mobile Ads, supporting banner, interstitial (full-screen), rewarded and native ads

pub.dev

 

728x90