Hi,
Thank you for contacting the Mobile Ads SDK Support team.
By reviewing your concern, I understand that you are facing an issue related to ‘TEST-DEVICE-HASHED-ID’ in Android App.
If you want to test the integration in your app as you're developing, follow the steps below to programmatically register your test device.
ConsentDebugSettings debugSettings = new ConsentDebugSettings.Builder(this)
.addTestDeviceHashedId("TEST-DEVICE-HASHED-ID")
.build();
ConsentRequestParameters params = new ConsentRequestParameters
.Builder()
.setConsentDebugSettings(debugSettings)
.build();
consentInformation = UserMessagingPlatform.getConsentInformation(this);
// Include the ConsentRequestParameters in your consent request.
consentInformation.requestConsentInfoUpdate(
this,
params,
...
);
Kindly refer this for more info related to 'TEST-DEVICE-HASHED-ID'.
![]() |
Mobile Ads SDK Team |