Targeting
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
RequestConfiguration
객체는 모든 광고 요청의 전체 구성을 수집하고, MobileAds.instance.updateRequestConfiguration()
에 의해 적용됩니다.
모든 광고 요청에 요청 구성 변경사항이 적용되도록 하려면 모바일 광고 SDK를 초기화하기 전에 요청 구성을 업데이트하세요.
아동 대상 설정
아동 온라인 개인 정보 보호법(COPPA)의
취지에 따라
'아동 대상 서비스로 취급하기 위한 태그'라는 설정을 마련했습니다.
앱 개발자는 광고를 요청할 때 Google에서 콘텐츠를 아동용으로
처리할지 여부를 알릴 수 있습니다. 콘텐츠를 아동용으로 처리하도록 지정하는 경우 Google에서 해당 광고 요청에 대한 IBA 및 리마케팅 광고 사용이 중지되도록 조치합니다. 이 설정은 RequestConfiguration.tagForChildDirectedTreatment()
을 통해 모든 버전의 Google Play 서비스 SDK와 함께 사용할 수 있습니다.
TagForChildDirectedTreatment.yes
인수를 사용하여 COPPA에 따라 콘텐츠를 아동 대상으로
처리하도록 지정합니다.
TagForChildDirectedTreatment.no
인수를 사용하여 COPPA에 따라 콘텐츠를 아동 대상으로
처리하지 않도록 지정합니다.
- 광고 요청에서 COPPA에 따른 콘텐츠 취급 방법을 지정하지 않으려면
TagForChildDirectedTreatment.unspecified
인수를 사용하거나 이 태그를 설정하지 마세요.
다음은 아동 온라인 개인 정보 보호법(COPPA)에 따라 콘텐츠를 아동 대상으로 처리하도록
지정하는 방법의 예입니다.
final RequestConfiguration requestConfiguration = RequestConfiguration(
tagForChildDirectedTreatment: TagForChildDirectedTreatment.yes);
MobileAds.instance.updateRequestConfiguration(requestConfiguration);
동의 연령 미만의 사용자
유럽 경제 지역 (EEA)에 거주하는 동의 연령 미만의 사용자를 대상으로 하는
서비스의 경우 광고 요청에 이를 표시할 수 있습니다. 이 기능은 개인 정보 보호법(GDPR) 준수를 지원하기 위해 도입되었습니다.
GDPR에 의거한 다른 법적 의무가 있을 수 있습니다. 유럽연합의 지침을 검토하고 법무 담당자와 상의하시기 바랍니다. Google의 도구는 규정 준수를 도모하기 위해 고안된 것이며,
어느 게시자에게도 법률에 따라 준수해야 하는 의무를 경감해 주는 것이 아닙니다.
GDPR이 게시자에게 미치는 영향에 대해 자세히 알아보기
이 기능을 사용하면 TFUA(동의 연령 미만의 유럽 사용자가 대상임을 나타내는
태그) 매개변수가 광고 요청에 포함됩니다. 그러면 해당 광고 요청에 대해서는 리마케팅을 포함한 개인 맞춤 광고가 사용 중지됩니다.
또한 광고 측정 픽셀 및 서드 파티 광고 서버와 같은 서드 파티 광고 업체에 대한 요청도 중지됩니다.
태그는 RequestConfiguration.tagForUnderAgeOfConsent()
를 사용하여 설정합니다.
아동 대상 설정과 setTagForUnderAgeOfConsent
를 동시에 true
로 설정하면 안 됩니다. 이 경우 아동 대상 설정이 우선 적용됩니다.
광고 콘텐츠 필터링
RequestConfiguration.maxAdContentRating()
을 사용하여 광고 콘텐츠 등급을 설정할 수 있습니다.
이러한 요청에 대해서는 콘텐츠 등급이 설정된 한도 이하인 AdMob 광고가 게재됩니다. 이 네트워크에 대해 가능한 값은 디지털 콘텐츠
라벨 분류에 따라 정해지며,
다음 MaxAdContentRating
객체 중 하나일 수 있습니다.
MaxAdContentRating.g
MaxAdContentRating.pg
MaxAdContentRating.t
MaxAdContentRating.ma
다음 코드는 반환된 광고 콘텐츠의 디지털 콘텐츠 라벨 지정이
G
이하가 되도록 RequestConfiguration
객체를
구성합니다.
final RequestConfiguration requestConfiguration = RequestConfiguration(
maxAdContentRating: MaxAdContentRating.g);
MobileAds.instance.updateRequestConfiguration(requestConfiguration);
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-09-06(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-06(UTC)"],[[["\u003cp\u003eThis resource represents AdMob ad units and does not store persistent data.\u003c/p\u003e\n"],["\u003cp\u003eThe primary method available is to list ad units associated with a specific AdMob account.\u003c/p\u003e\n"]]],["The `RequestConfiguration` object, updated via `MobileAds.instance.updateRequestConfiguration()`, manages global ad request settings. Key actions include: setting `tagForChildDirectedTreatment` to `yes`, `no`, or `unspecified` for COPPA compliance; using `tagForUnderAgeOfConsent` to manage GDPR compliance; setting it to `yes`, `no`, or `unspecified`; and utilizing `maxAdContentRating` to filter ad content based on digital content label classifications (G, PG, T, MA). Update it before initializing the Mobile Ads SDK.\n"],null,["Select platform: [Android](/admob/android/targeting \"View this page for the Android platform docs.\") [iOS](/admob/ios/targeting \"View this page for the iOS platform docs.\") [Unity](/admob/unity/targeting \"View this page for the Unity platform docs.\") [Flutter](/admob/flutter/targeting \"View this page for the Flutter platform docs.\")\n\n\u003cbr /\u003e\n\nThe `RequestConfiguration` object collects the global configuration for every ad\nrequest and is applied by `MobileAds.instance.updateRequestConfiguration()`.\n\nTo ensure that all ad requests apply the request configuration changes, update\nthe request configuration before you\n[Initialize the Mobile Ads SDK](/admob/flutter/quick-start#initialize_the_mobile_ads_sdk).\n\nChild-directed setting\n\nFor purposes of the [Children's Online Privacy Protection Act\n(COPPA)](//www.ftc.gov/tips-advice/business-center/privacy-and-security/children%27s-privacy),\nthere is a setting called \"tag for child-directed treatment.\"\n\nAs an app developer, you can indicate whether you want Google to treat your\ncontent as child-directed when you make an ad request. If you indicate that you\nwant Google to treat your content as child-directed, we take steps to disable\nIBA and remarketing ads on that ad request. The setting can be used with all\nversions of the Google Play services SDK through\n`RequestConfiguration.tagForChildDirectedTreatment()`:\n\n- Use the argument `TagForChildDirectedTreatment.yes` to indicate that you want your content treated as child-directed for the purposes of COPPA.\n- Use the argument `TagForChildDirectedTreatment.no` to indicate that you don't want your content treated as child-directed for the purposes of COPPA.\n- Use the argument `TagForChildDirectedTreatment.unspecified` or do not set this tag if you do not wish to indicate how you would like your content treated with respect to COPPA in ad requests.\n\nThe following example indicates that you want your content treated as\nchild-directed for purposes of COPPA: \n\n final RequestConfiguration requestConfiguration = RequestConfiguration(\n tagForChildDirectedTreatment: TagForChildDirectedTreatment.yes);\n MobileAds.instance.updateRequestConfiguration(requestConfiguration);\n\nUsers under the age of consent\n\nYou can mark your ad requests to receive treatment for users in the European\nEconomic Area (EEA) under the age of consent. This feature is designed to help\nfacilitate compliance with the [General Data Protection Regulation\n(GDPR)](//eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32016R0679).\nNote that you may have other legal obligations under GDPR. Please review the\nEuropean Union's guidance and consult with your own legal counsel. Please\nremember that Google's tools are designed to facilitate compliance and do not\nrelieve any particular publisher of its obligations under the law.\n[Learn more about how the GDPR affects\npublishers](//support.google.com/admob/answer/7666366).\n\nWhen using this feature, a Tag For Users under the Age of Consent in Europe\n(TFUA) parameter will be included in the ad request. This parameter disables\npersonalized advertising, including remarketing, for that specific ad request.\nIt also disables requests to third-party ad vendors, such as ad measurement\npixels and third-party ad servers.\n\nThe tag is set using `RequestConfiguration.tagForUnderAgeOfConsent()`:\n\n- Use the argument `TagForUnderAgeOfConsent.yes` to indicate that you want the request configuration to be handled in a manner suitable for users under the age of consent.\n- Use the argument `TagForUnderAgeOfConsent.no` to indicates that you don't want the request configuration to be handled in a manner suitable for users under the age of consent.\n- Use the argument `TagForUnderAgeOfConsent.unspecified` or do not set this\n tag to indicate that you have not specified whether the ad request should\n receive treatment for users in the European Economic Area (EEA) under the\n age of consent. The following example indicates that you want TFUA included\n in your ad request:\n\n final RequestConfiguration requestConfiguration = RequestConfiguration(\n tagForUnderAgeOfConsent: TagForUnderAgeOfConsent.yes);\n MobileAds.instance.updateRequestConfiguration(requestConfiguration);\n\nThe tags to enable the Child-directed setting and `setTagForUnderAgeOfConsent`\nshould not both simultaneously be set to `true`. If they are, the child-directed\nsetting takes precedence.\n\nAd content filtering\n\nAd content ratings can be set using `RequestConfiguration.maxAdContentRating()`:\n\nAdMob ads returned for these requests have a content rating at or below that\nlevel. The possible values for this network extra are based on [digital content\nlabel classifications](//support.google.com/admob/answer/7562142) and can be one\nof the following `MaxAdContentRating` objects:\n\n- `MaxAdContentRating.g`\n- `MaxAdContentRating.pg`\n- `MaxAdContentRating.t`\n- `MaxAdContentRating.ma`\n\nThe following code configures a `RequestConfiguration` object to specify that\nthe ad content returned correspond to a digital content label designation no\nhigher than `G`: \n\n final RequestConfiguration requestConfiguration = RequestConfiguration(\n maxAdContentRating: MaxAdContentRating.g);\n MobileAds.instance.updateRequestConfiguration(requestConfiguration);"]]