同意消息未显示

Consent message not showing up

我正在使用 firebase_admob 和 admob_consent 软件包。我无法看到同意消息。 我在终端中收到以下行。

I/UserMessagingPlatform(10516): Use new ConsentDebugSettings.Builder().addTestDeviceHashedId("E044C97978FC060327A4C4F01EE86A88") to set this as a debug device. D/UserMessagingPlatform(10516): Stored info not exists: IDFA_freqCapNumViews D/UserMessagingPlatform(10516): Stored info not exists: IABTCF_TCString D/UserMessagingPlatform(10516): Stored info not exists: IABTCF_AddtlConsent

同意消息是否仅在欧盟国家/地区弹出? 因为我来自印度。

是的,同意只出现在欧盟。您可以使用以下代码进行测试:

ConsentDebugSettings debugSettings = new ConsentDebugSettings.Builder(this)
            .setDebugGeography(ConsentDebugSettings
                    .DebugGeography
                    .DEBUG_GEOGRAPHY_EEA)
            .addTestDeviceHashedId("E044C97978FC060327A4C4F01EE86A88")
            .build();

// Google CMP implementation:
ConsentRequestParameters params = new ConsentRequestParameters
        .Builder()
        .setTagForUnderAgeOfConsent(false)
        .setConsentDebugSettings(debugSettings)
        .build();