Hi,
Thank you for reaching out to the IMA SDK Support team.
The behavior you are experiencing when starting an Activity from a non-Activity context such as a Fragment is expected, as outlined in the documentation. You can try adding Intent.FLAG_ACTIVITY_NEW_TASK to your startActivity() call to see if that resolves the issue.Additionally, if you're using an older version of the SDK, we recommend updating to the latest version.
If the problem persists, please share the following details so we can investigate further.
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.
Thanks,
![]() |
IMA SDK Team |
[2025-10-21 14:26:25Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRLwJ:ref" (ADR-00336063)
Hi,
Thank you for getting back to us.
As mentioned earlier, could you please share the following details via reply to author option? This will help us continue our investigation.
https://docs.google.com/forms/d/e/1FAIpQLSfkAiXMeYP-fw1W3Z-tT9uwmATEKO5X6S-th0gR2ezdKaaqfg/viewform?usp=pp_url&entry.400550049=IMA+SDK&entry.460850823=500Ht00001vRLwJIAW&entry.80707362=00336063
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.
![]() |
IMA SDK Team |
[2025-10-22 14:39:22Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRLwJ:ref" (ADR-00336063)
Hi,
Kindly apologies for the delay.
I have reviewed the provided sample project and was able to reproduce the crash. The crash occurs because setEnableCustomTabs(true) is being called inside the setupAdsRendering method. This call should be made within the onAdsManagerLoaded method, and the adsRenderingSettings object should be defined as a global variable.
I hope this helps! Let me know if you have any other questions.
![]() |
IMA SDK Team |
[2025-11-03 11:07:52Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRLwJ:ref" (ADR-00336063)
Hi,
Thanks for getting back to us.
We have identified a change needed in the AdTagLoader class within the lib-exoplayer-ima module to address the crash issue. Currently, the line adsRenderingSettings.setEnableCustomTabs(true) is placed inside the setupAdsRendering() method (around line 627). This line should be removed from this method. Instead, set the setEnableCustomTabs(true) property inside the onAdsManagerLoaded() method (around line 1418) of the same class, as shown below:
AdsRenderingSettings adsRenderingSettings = imaFactory.createAdsRenderingSettings();
adsRenderingSettings.setEnableCustomTabs(true);
After applying the above changes, I tested the implementation and the crash no longer occurs. Please try these modifications on your end as well, and if the issue still persists, kindly share an updated sample project for further analysis.
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.
![]() |
IMA SDK Team |
[2025-11-06 12:46:08Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRLwJ:ref" (ADR-00336063)
Hi,
I will raise this issue to the wider team. Once we receive any updates, we will intimate you. Meanwhile, your patience is important.
![]() |
IMA SDK Team |
[2025-11-07 15:20:47Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRLwJ:ref" (ADR-00336063)