Millenial Media [5]: [LOAD_FAILED] No additional details available

244 Views Asked by At

I am trying to implement ads into an android app with Millenial Media SDK Version 6. I followed the instructions for integrating with Android at http://docs.millennialmedia.com/android-ad-sdk/inline-ads.html.

But I get an error in adb logcat:

[5]: [LOAD_FAILED] No additional details available.

And the ad doesn't show up.

I found some documentation that mentions the error at http://docs.millennialmedia.com/android-ad-sdk/apidocs/classcom_1_1millennialmedia_1_1_inline_ad_1_1_inline_error_status.html, but there is no description on what this error means.

1

There are 1 best solutions below

5
AldaronLau On

I was able to figure it out by adding a line:

MMLog.setLogLevel(Log.VERBOSE);

To my code and then using

adb logcat | grep MMSDK

The output explained the problem, and it wasn't hard to understand. Hopefully this answer helps someone else.