![]() |
Mobile Ads SDK Team |
[2025-11-12 23:57:33Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vTKlH:ref" (ADR-00339177)
I understand your concern but please note that our Mobile Ads SDK Support team is not able to test or debug apps distributed through TestFlight or production builds.
I have tested Google Sample Project with the provided dependencies but not able to replicate the reported issue. Could you confirm whether the mentioned issue is reproducible in our sample project after adding the relevant code? If so, please share the following details via reply to author option? for further investigation:
sample project that replicates the issue
Steps to reproduce the issue
Affected device information if its happening on specific devices
If the file(s) you are looking to share are less than 25mb in total you can attach them to this case on your next reply. If you are having trouble attaching your file to this case or if your file(s) are larger than 25mb, you can share your files with me by performing the following steps:
1. Navigate to
2. Fill out all fields, and attach your file(s).
3. Please reply back to this thread when you have uploaded your file(s). Please do not share this link.
![]() |
Mobile Ads SDK Team |
[2025-11-13 07:10:53Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vTKlH:ref" (ADR-00339177)
sample project that replicates the issue
Any of these, as it requires a published app on the Play Store that is signed as a release version:
Hi Liran,
After reviewing the crash logs and the issue description, this doesn't seem to be a bug in the Google Mobile Ads SDK.
The crash is caused by R8/ProGuard code stripping in the release build configuration. The logs indicate that internal classes required by both the Google UMP SDK and Unity Ads SDK are being removed or obfuscated during the compilation process, which explains why the app functions correctly in Debug mode but crashes in Release.
UMP SDK crash: The error java.lang.ExceptionInInitializerError rooted in com.google.android.gms.internal.consent_sdk.zzdt confirms that the SDK cannot initialize because its internal consent classes have been stripped.
Unity Ads crash: The GatewayException and IllegalStateException indicate that the Unity SDK is failing to access internal coroutine classes.
Your build is likely stripping the SDK classes due to R8 Full Mode, aggressive warning suppression, or a Unity export misconfiguration, could you confirm this also provide an example project?
You can also try to manually add the following keep rules to effectively 'whitelists' the SDK classes, forcing the compiler to respect them regardless of the aggressive settings. For example:
-keep class com.google.android.gms.ads.** { *; }
-keep class com.google.ads.mediation.** { *; }
However, please note that the broad rule can potentially increase the size of their app.
If the file(s) you are looking to share are less than 25mb in total you can attach them to this case on your next reply. If you are having trouble attaching your file to this case or if your file(s) are larger than 25mb, you can share your files with me by performing the following steps:
2. Fill out all fields, and attach your file(s).
3. Please reply back on this thread when you have uploaded your file(s). Please do not share this link.
![]() |
Mobile Ads SDK Team |
[2025-12-19 11:29:25Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vTKlH:ref" (ADR-00339177)