전체 설정
<ph type="x-smartling-placeholder">
다음과 같은 전역 함수를 사용하여 특정 정보를 제어할 수 있습니다.
모바일 광고 SDK에 의해 수집됩니다.
Google 모바일 광고 C++ SDK는 게시자 퍼스트 파티 ID를 사용하여
앱에서 수집한 데이터를 활용하여 더 관련성 높은 개인 맞춤 광고 게재
사용할 수 있습니다.
게시자 퍼스트 파티 ID는 기본적으로 사용 설정되어 있지만
다음 코드를 초기화합니다.
#include "firebase/gma.h"
firebase::gma::SetIsSameAppKeyEnabled(/*is_enabled=*/false);
비정상 종료 보고 (iOS만 해당)
Google 모바일 광고 C++ SDK는 iOS 앱에서 발생하는 예외를 검사하고
문제가 SDK로 인해 발생한 경우 기록합니다. 이러한 예외가 수집되므로
향후 SDK 버전에서 이를 방지할 수 있습니다
비정상 종료 보고는 기본적으로 사용 설정되어 있습니다. SDK 관련 예외를 원하지 않는 경우
녹음을 원하지 않는 경우
DisableSDKCrashReporting()
함수를 사용하세요. 이 메서드를 호출하기 가장 좋은 시점은
앱이 실행됩니다.
#include “firebase/gma.h”
firebase::gma::DisableSDKCrashReporting();
Android 기기에서는 비정상 종료 보고가 지원되지 않습니다.
쿠키 사용 동의
앱에 Android 관련 특별한 요구사항이 있는 경우 선택적
SharedPreferences
드림
gad_has_consent_for_cookies
입니다. 자세한 내용은
쿠키 사용 동의
섹션을 참조하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-09-10(UTC)
[null,null,["최종 업데이트: 2024-09-10(UTC)"],[[["The Google Mobile Ads C++ SDK is deprecated as of June 17, 2024 and will reach End-of-Maintenance on June 17, 2025, with no further updates or bug fixes after that date."],["Developers should consider using the iOS and Android SDKs from AdMob instead of the Google Mobile Ads C++ SDK."],["The SDK includes features like Publisher first-party ID (enabled by default) for personalized ads and crash reporting (iOS only, enabled by default)."],["Developers can control these features, including disabling Publisher first-party ID and crash reporting, using provided code snippets."],["For Android, specific consent requirements related to cookies can be addressed using SharedPreferences."]]],["The Google Mobile Ads C++ SDK is deprecated as of June 17, 2024, and will reach End-of-Maintenance on June 17, 2025. Consider using the AdMob iOS and Android SDKs instead. Publisher first-party ID, enabled by default, can be disabled via `SetIsSameAppKeyEnabled(false)`. For iOS, crash reporting is on by default but can be disabled using `DisableSDKCrashReporting()`. Android consent for cookies can be set using `SharedPreferences` with `gad_has_consent_for_cookies`.\n"]]