inmobi plugin doesn't work. INTERNAL_ERROR

Hi, I have this error when I show inmobi ads:

INTERNAL_ERROR - The InMobi SDK encountered an internal error.

Do you have this error too?

Maybe this plugin need to update to the latest inmobi sdk? 

Corona SDK version: 2016.2929

Are there any other messages in your console log related to this?  If you don’t know how to get to the console log, please read:

http://docs.coronalabs.com/guide/basics/debugging/index.html

Rob

08-12 23:51:26.450: I/Corona(15946): banner

08-12 23:51:26.450: I/Corona(15946): 1470051765927

08-12 23:51:26.450: I/Corona(15946): true

08-12 23:51:26.450: I/Corona(15946): INTERNAL_ERROR - The InMobi SDK encountered an internal error.

the code to init and show like this:

local inMobi = require( “plugin.inMobi” )

function M.init(appId, options) --options: appId2, interval, testMode)

----[[

  M.interval = options and options.interval or 60000  

  M.testMode = options and options.testMode or false

  

  local function adListener( event )

    --local json = require(‘json’)

    --print(‘inmobi ads event’, json.prettify(event))

    if ( event.phase == “init” ) then  – Successful initialization

        – Load a banner ad

        --inMobi.load( “banner”, M.bannerId )

    elseif ( event.phase == “loaded” ) then  – The ad was successfully loaded

        – Show the ad

        inMobi.show( event.type, event.placementId, { yAlign=“bottom” } )

    elseif ( event.phase == “failed” ) then  – The ad failed to load

        print( event.type )

        print( event.placementId )

        print( event.isError )

        print( event.response )

    end

  end

  – Initialize the InMobi plugin

  inMobi.init( adListener, { accountId=M.accountId, logLevel=“debug” } )

  --]]

end

– params can be: 

–    position (value can be: “top” or “bottom”), default is “top”.

function M.show(adUnitType, params)

  --M.initAgain(adUnitType)

  if adUnitType == “banner” then

    --inMobi.load( “banner”, M.bannerId, “BANNER_HEIGHT_50” )

    inMobi.load( “banner”, M.bannerId, {autoRefresh=true, refreshInterval=30} )

  else

    --M.hide()

    inMobi.load(‘interstitial’, M.interstitialId)

  end  

end

I have enable inmobi test mode to: Global_On

tested it on my Android OS 5.1.1 phone.

Please run “adb logcat” with no additional parameters. I need to see more than the Corona activity messages. Post all messages from when Corona starts running until after the error happens.

Thanks

Rob

Hi Rob, here is the log:

08-13 14:09:25.980: V/WindowManager(2351): Adding window Window{68daedf u0 SurfaceView} at 3 of 13 (before Window{3b269f39 u0 com.mnyuecao.friends1359/com.ansca.corona.CoronaActivity}) 08-13 14:09:26.020: V/GLSurfaceView(3374): glGetString(7937) returns Adreno (TM) 405; 08-13 14:09:26.040: I/ActivityManager(2351): Displayed com.mnyuecao.friends1359/com.ansca.corona.CoronaActivity: +485ms 08-13 14:09:26.060: I/Timeline(3374): Timeline: Activity\_idle id: android.os.BinderProxy@1866d5c1 time:137940411 08-13 14:09:26.070: D/PhoneStatusBar(4545): disable: 0x00000000 -\> 0x00000100 (diff: 0x00000100) 08-13 14:09:26.070: D/PhoneStatusBar(4545): disable: \< expand icons alerts ticker system\_info back home recent clock full HIDE\* keyguard none \> 08-13 14:09:26.070: D/PhoneStatusBar(4545): showStatusBar isshow=false;delay=false 08-13 14:09:26.070: D/PowerKeeperEventLogManager(5479): updatestatusbar value 0x100 08-13 14:09:26.070: D/PowerKeeperEventLogManager(5479): notifyEnterFullScreen 08-13 14:09:26.070: D/PowerKeeperExecutor(5479): handling event full\_screen\_enter in state normal\_state 08-13 14:09:26.070: D/PowerKeeperExecutor(5479): full\_screen\_enter: 08-13 14:09:26.070: D/PowerKeeperExecutor(5479): set\_cpu\_powermode(middle) 08-13 14:09:26.070: I/PowerKeeperExecutor(5479): no local quick execution method for set\_cpu\_powermode 08-13 14:09:26.070: D/PowerKeeperExecutor(5479): set\_lcd\_mode(ui) 08-13 14:09:26.070: I/PowerKeeperExecutor(5479): no local quick execution method for set\_lcd\_mode 08-13 14:09:26.070: I/octvm\_power(6456): handle event trigger full\_screen\_enter 08-13 14:09:26.070: I/octvm\_power(6456): Action: set\_cpu\_powermode(middle) for [full\_screen\_enter] 08-13 14:09:26.070: I/octvm\_drv(6456): common drv: platform\_set\_power\_profile -\> platform not support 08-13 14:09:26.070: I/octvm\_power(6456): Action: set\_lcd\_mode(ui) for [full\_screen\_enter] 08-13 14:09:26.070: I/octvm\_drv(6456): common drv: platform\_set\_lcd\_mode -\> platform not support 08-13 14:09:26.070: W/art(5479): Attempt to remove local handle scope entry from IRT, ignoring 08-13 14:09:26.070: V/Corona(3374): \> Class.forName: network.LuaLoader 08-13 14:09:26.070: V/Corona(3374): \< Class.forName: network.LuaLoader 08-13 14:09:26.070: V/Corona(3374): Loading via reflection: network.LuaLoader 08-13 14:09:26.080: I/Corona(3374): Platform: Redmi 3 / ARM Neon / 5.1.1 / Adreno (TM) 405 / OpenGL ES 3.0 V@100.0 AU@ (GIT@Ibddc658e36) / 2016.2929 / 中文 | CN | zh\_CN | zh 08-13 14:09:26.120: V/Corona(3374): \> Class.forName: CoronaProvider.licensing.google.LuaLoader 08-13 14:09:26.120: V/Corona(3374): \< Class.forName: CoronaProvider.licensing.google.LuaLoader 08-13 14:09:26.130: V/Corona(3374): Loading via reflection: CoronaProvider.licensing.google.LuaLoader 08-13 14:09:26.130: I/Timeline(2351): Timeline: Activity\_windows\_visible id: ActivityRecord{32884993 u0 com.mnyuecao.friends1359/com.ansca.corona.CoronaActivity t161} time:137940483 08-13 14:09:26.170: I/XiaomiFirewall(5341): firewall pkgName:com.mnyuecao.friends1359, result:0x0 08-13 14:09:26.190: I/Corona(3374): ui language is: 中文 08-13 14:09:26.190: I/Corona(3374): locale is: EN 08-13 14:09:26.200: I/Corona(3374): left, top, right, bottom, screenW, screenH: 0 0 320 568.88891601562 320 568.88891601562 08-13 14:09:26.200: I/Corona(3374): display.actualContentHeight, display.viewableContentHeight: 568.88891601562 480 08-13 14:09:26.200: I/SoundDecoder(3374): ALL MPG123 DECODERS: 08-13 14:09:26.200: I/SoundDecoder(3374): &nbsp;generic 08-13 14:09:26.200: I/SoundDecoder(3374): SUPPORTED MPG123 DECODERS: 08-13 14:09:26.200: I/SoundDecoder(3374): &nbsp;generic 08-13 14:09:26.200: I/OpenAL\_SLES(3374): opensles\_open\_playback pDevice=0xe33fb008, deviceName=(null) 08-13 14:09:26.200: I/OpenAL\_SLES(3374): alc\_opensles\_probe DEVICE\_PROBE 08-13 14:09:26.200: I/OpenAL\_SLES(3374): opensles\_reset\_playback pDevice=0xe33fb008 08-13 14:09:26.200: I/OpenAL\_SLES(3374): bits=16, channels=2, samples=1024, size=4096, freq=44100 08-13 14:09:26.200: I/OpenAL\_SLES(3374): create audio player 08-13 14:09:26.210: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.210: W/AudioTrack(3374): AUDIO\_OUTPUT\_FLAG\_FAST denied by client 08-13 14:09:26.210: W/libc(3374): pthread\_create sched\_setscheduler call failed: Operation not permitted 08-13 14:09:26.220: I/OpenAL\_SLES(3374): playback\_function started 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): unknown stream type 13 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioPolicyManager(318): zw\_AudioPolicyManager::isStateInCall: 0 08-13 14:09:26.220: E/AudioFlinger(318): open /proc/3374/cmdline error 08-13 14:09:26.220: I/AudioFlinger(318): setAppName(), name=[], active=[1] 08-13 14:09:26.220: I/OpenAL(3374): \_SC\_NPROCESSORS\_ONLN=8 08-13 14:09:26.220: D/audio\_hw\_primary(318): start\_output\_stream: enter: stream(0xab1aaae0)usecase(1: low-latency-playback) devices(0x2) 08-13 14:09:26.220: D/audio\_hw\_primary(318): select\_devices: out\_snd\_device(2: speaker) in\_snd\_device(0: ) 08-13 14:09:26.220: D/hardware\_info(318): hw\_info\_append\_hw\_type : device\_name = speaker 08-13 14:09:26.220: I/soundtrigger(318): audio\_extn\_sound\_trigger\_update\_device\_status: device 0x2 of type 0 for Event 1, with Raise=0 08-13 14:09:26.220: I/Corona(3374): Loading saved user profile 08-13 14:09:26.220: I/Corona(3374): {"M.levelLocks":{"HARD":0,"NORMAL":0,"EASY":1},"M.highScores":[],"M.countryCode":"US","M.volume":1,"M.bestScore":860,"M.checkTime":{"hour":14,"min":2,"wday":7,"day":13,"month":8,"yday":226,"sec":53,"year":2016,"isdst":false},"M.isFacebookLoggedIn":false,"M.adsIndexB":1,"M.checkCount":9,"M.adsIndexI":1,"M.bestScore-hard":0,"M.bestScore-normal":0} 08-13 14:09:26.220: I/Corona(3374): now load json from local: mediator-android.json nil 08-13 14:09:26.220: I/Corona(3374): M.onLoaded: { 08-13 14:09:26.220: I/Corona(3374): &nbsp; "default":{ 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; "banner":[{ 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "name":"inmobi", 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "weight":1 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; },{ 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "name":"facebook", 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "weight":1 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; }], 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; "interstitial":[{ 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "name":"inmobi", 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "weight":1 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; },{ 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "name":"facebook", 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; &nbsp; "weight":1 08-13 14:09:26.220: I/Corona(3374): &nbsp; &nbsp; &nbsp; }] 08-13 14:09:26.220: I/Corona(3374): &nbsp; }, 08-13 14:09:26.220: I/Corona(3374): &nbsp; "version":1 08-13 14:09:26.220: I/Corona(3374): } 08-13 14:09:26.220: I/Corona(3374): init ads helper: inmobi 08-13 14:09:26.220: W/audio\_hw\_utils(318): audio\_extn\_utils\_update\_stream\_app\_type\_cfg: App type could not be selected. Falling back to default 08-13 14:09:26.220: I/audio\_hw\_primary(318): select\_devices Selected apptype: 69936 08-13 14:09:26.220: D/soundtrigger(318): audio\_extn\_sound\_trigger\_update\_stream\_status: uc\_id 1 of type 0 for Event 3, with Raise=0 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_audio\_cal, acdb\_id = 14, path = &nbsp;0 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_asm\_topology 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_CMD\_GET\_AUDPROC\_STREAM\_TOPOLOGY\_ID 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_adm\_topology 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_CMD\_GET\_AUDPROC\_COMMON\_TOPOLOGY\_ID 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_audtable 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_CMD\_GET\_AUDPROC\_COMMON\_TABLE 08-13 14:09:26.220: V/Corona(3374): \> Class.forName: plugin.inMobi.LuaLoader 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> AUDIO\_SET\_AUDPROC\_CAL 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_audvoltable 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_CMD\_GET\_AUDPROC\_GAIN\_DEP\_STEP\_TABLE 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> AUDIO\_SET\_AUDPROC\_VOL\_CAL 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_afe\_cal 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_CMD\_GET\_AFE\_COMMON\_TABLE 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> AUDIO\_SET\_AFE\_CAL 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> send\_hw\_delay : acdb\_id = 14 path = 0 08-13 14:09:26.220: D/ACDB-LOADER(318): ACDB -\> ACDB\_AVSYNC\_INFO: ACDB\_CMD\_GET\_DEVICE\_PROPERTY 08-13 14:09:26.220: I/audio\_hw\_utils(318): audio\_extn\_utils\_send\_app\_type\_cfg app\_type 69936, acdb\_dev\_id 14, sample\_rate 48000 08-13 14:09:26.230: D/audio\_hw\_primary(318): select\_devices: done 08-13 14:09:26.230: I/Timeline(2351): Timeline: App\_transition\_stopped time:137940586 08-13 14:09:26.230: V/Corona(3374): \< Class.forName: plugin.inMobi.LuaLoader 08-13 14:09:26.240: V/Corona(3374): Loading via reflection: plugin.inMobi.LuaLoader 08-13 14:09:26.250: I/Corona(3374): check diff time: 393 08-13 14:09:26.250: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.280: V/LocationPolicy(2351): onProcessStateChanged 08-13 14:09:26.290: I/WebViewFactory(3374): Loading com.google.android.webview version 45.0.2454.95 (code 246109550) 08-13 14:09:26.310: I/cr.library\_loader(3374): Time to load native libraries: 2 ms (timestamps 663-665) 08-13 14:09:26.310: I/cr.library\_loader(3374): Expected native library version number "", actual native library version number "" 08-13 14:09:26.320: V/WebViewChromiumFactoryProvider(3374): Binding Chromium to main looper Looper (main, tid 1) {2db0a71c} 08-13 14:09:26.320: I/cr.library\_loader(3374): Expected native library version number "", actual native library version number "" 08-13 14:09:26.320: I/chromium(3374): [INFO:library\_loader\_hooks.cc(121)] Chromium logging enabled: level = 0, default verbosity = 0 08-13 14:09:26.330: I/cr.BrowserStartup(3374): Initializing chromium process, singleProcess=true 08-13 14:09:26.330: W/art(3374): Attempt to remove local handle scope entry from IRT, ignoring 08-13 14:09:26.340: E/SysUtils(3374): ApplicationContext is null in ApplicationStatus 08-13 14:09:26.350: I/Corona(3374): scale factor : 2.25 08-13 14:09:26.350: I/Corona(3374): display.imageSuffix: @2x 08-13 14:09:26.350: I/Corona(3374): systemEvent applicationStart 08-13 14:09:26.350: V/Corona(3374): \> Class.forName: CoronaProvider.gameNetwork.google.LuaLoader 08-13 14:09:26.350: V/Corona(3374): \< Class.forName: CoronaProvider.gameNetwork.google.LuaLoader 08-13 14:09:26.350: V/Corona(3374): Loading via reflection: CoronaProvider.gameNetwork.google.LuaLoader 08-13 14:09:26.360: I/Corona(3374): Saved user profile 08-13 14:09:26.360: I/Corona(3374): M.checkCount, limit, 10 5 08-13 14:09:26.490: I/art(3374): Background sticky concurrent mark sweep GC freed 17776(1037KB) AllocSpace objects, 9(240KB) LOS objects, 3% free, 12MB/12MB, paused 12.594ms total 113.726ms 08-13 14:09:26.500: W/cr.media(3374): Requires BLUETOOTH permission 08-13 14:09:26.520: E/libEGL(3374): validate\_display:255 error 3008 (EGL\_BAD\_DISPLAY) 08-13 14:09:26.540: V/LocationPolicy(2351): onProcessStateChanged 08-13 14:09:26.540: W/art(3374): Suspending all threads took: 6.847ms 08-13 14:09:26.560: I/art(3374): Background partial concurrent mark sweep GC freed 5247(189KB) AllocSpace objects, 4(2MB) LOS objects, 39% free, 9MB/16MB, paused 17.001ms total 67.468ms 08-13 14:09:26.560: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.570: D/BaseGameActivity(3374): onCreate: creating GamesClient 08-13 14:09:26.580: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.600: I/SurfaceFlinger(299): FPS: 40 08-13 14:09:26.600: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.610: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.910: I/ViewRootImpl(3374): CPU Rendering VSync enable = true 08-13 14:09:26.920: V/WindowManager(2351): not Base app: Adding window Window{227bc960 u0 com.mnyuecao.friends1359/com.ansca.corona.CoronaActivity} at 5 of 13 08-13 14:09:26.920: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:26.930: V/LocationPolicy(2351): onProcessStateChanged 08-13 14:09:26.930: D/BaseGameActivity(3374): isGooglePlayServicesAvailable returned 0 08-13 14:09:26.930: D/BaseGameActivity(3374): beginUserInitiatedSignIn: starting new sign-in flow. 08-13 14:09:26.930: D/BaseGameActivity(3374): Connecting GamesClient. 08-13 14:09:26.930: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:27.050: W/GamesServiceBroker(30756): Client connected with SDK 4242000, Services 9256246, and Games 37230046 08-13 14:09:27.410: D/StatusBar.NetworkController(4545): onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 99 0 -60 -70 -120 -1 -1 25 -90 -10 74 2147483647 2147483647 gsm|lte level=5 cdmdlevel=5 evdolevel=0 08-13 14:09:27.830: W/(3457): [ColorAdjust] gammamode=1, cemode=11 08-13 14:09:27.830: W/(3457): [ColorAdjust] temp\_gammavalue=1, temp\_cevalue=11 08-13 14:09:27.830: W/(3457): [ColorAdjust] Don't setGamma! 08-13 14:09:27.830: W/(3457): [ColorAdjust] Don't setCe! 08-13 14:09:27.850: W/(3457): [ColorAdjust] Set temp\_prefer temp\_ce! 08-13 14:09:27.920: I/SurfaceFlinger(299): FPS: 20 08-13 14:09:27.970: V/WLAN\_PSA(325): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028] 08-13 14:09:27.970: V/WLAN\_PSA(325): NL MSG, PID: 325 08-13 14:09:28.380: D/BatteryService(2351): Processing new values: chargerAcOnline=false, chargerUsbOnline=true, chargerWirelessOnline=false, batteryStatus=2, batteryHealth=2, batteryPresent=true, batteryLevel=87, batteryTechnology=Li-ion, batteryVoltage=4222, batteryTemperature=330, mBatteryLevelCritical=false, mPlugType=2 08-13 14:09:28.380: D/BatteryService(2351): Sending ACTION\_BATTERY\_CHANGED. &nbsp;level:87, scale:100, status:2, health:2, present:true, voltage: 4222, temperature: 330, technology: Li-ion, AC powered:false, USB powered:true, Wireless powered:false, icon:17303157, invalid charger:0 08-13 14:09:28.380: D/BatteryService(2351): zhaoqf\_sh batteryServices call state : 0 mPlugType : 2 08-13 14:09:28.390: V/MiCloudSyncStateService(15874): battery changed 08-13 14:09:28.530: V/WLAN\_PSA(325): NL MSG, len[4071], NL type[0x1C] WNI type[0x5900] len[53007] 08-13 14:09:28.530: V/WLAN\_PSA(325): NL MSG, PID: 325 08-13 14:09:28.940: I/XiaomiFirewall(5341): firewall pkgName:com.google.android.gms, result:0x0 08-13 14:09:29.070: I/SurfaceFlinger(299): FPS: 18 08-13 14:09:30.640: W/ActivityManager(2351): getRunningAppProcesses: caller 10116 does not hold REAL\_GET\_TASKS; limiting output 08-13 14:09:30.860: W/(3461): [EyeCare] eyecaremode=0, temp\_eyecaremode=0 08-13 14:09:30.860: W/(3461): [EyeCare] Don't set eyecare! 08-13 14:09:30.890: W/(3461): [EyeCare] Set temp\_eyecare ! 08-13 14:09:30.990: I/MSM-irqbalance(807): Decided to move IRQ216 from CPU0 [P:0] to CPU6 [P:1] (banned) 08-13 14:09:31.230: D/StatusBar.NetworkController(4545): onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 99 0 -60 -70 -120 -1 -1 25 -91 -11 44 2147483647 2147483647 gsm|lte level=5 cdmdlevel=5 evdolevel=0 08-13 14:09:31.590: V/WLAN\_PSA(325): NL MSG, len[4094], NL type[0x1C] WNI type[0x5900] len[58895] 08-13 14:09:31.590: V/WLAN\_PSA(325): NL MSG, PID: 325 08-13 14:09:31.890: D/StatusBar.NetworkController(4545): onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 99 0 -60 -70 -120 -1 -1 26 -92 -12 18 2147483647 2147483647 gsm|lte level=5 cdmdlevel=5 evdolevel=0 08-13 14:09:32.900: W/(3464): [ColorAdjust] gammamode=1, cemode=11 08-13 14:09:32.900: W/(3464): [ColorAdjust] temp\_gammavalue=1, temp\_cevalue=11 08-13 14:09:32.900: W/(3464): [ColorAdjust] Don't setGamma! 08-13 14:09:32.900: W/(3464): [ColorAdjust] Don't setCe! 08-13 14:09:32.920: W/(3464): [ColorAdjust] Set temp\_prefer temp\_ce! 08-13 14:09:32.980: V/WLAN\_PSA(325): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028] 08-13 14:09:32.980: V/WLAN\_PSA(325): NL MSG, PID: 325 08-13 14:09:33.490: I/ServiceManager(910): Waiting for service AtCmdFwd... 08-13 14:09:34.150: D/StatusBar.NetworkController(4545): onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 99 0 -60 -70 -120 -1 -1 26 -91 -10 54 2147483647 2147483647 gsm|lte level=5 cdmdlevel=5 evdolevel=0 08-13 14:09:34.490: I/ServiceManager(910): Waiting for service AtCmdFwd... 08-13 14:09:34.560: I/SurfaceFlinger(299): FPS: 1 08-13 14:09:34.610: W/InputMethodManagerService(2351): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@1e4271db attribute=null, token = android.os.BinderProxy@150ecb00 08-13 14:09:35.490: I/ServiceManager(910): Waiting for service AtCmdFwd... 08-13 14:09:35.830: I/SurfaceFlinger(299): FPS: 16 08-13 14:09:35.880: I/Corona(3374): action is: play1010 08-13 14:09:35.880: I/SoundDecoder(3374): WAV: Appears to be uncompressed audio. 08-13 14:09:35.880: I/SoundDecoder(3374): WAV: Accepting data stream. 08-13 14:09:35.880: I/Corona(3374): prepare 1010: 08-13 14:09:35.880: I/Corona(3374): create background from file. 08-13 14:09:35.930: W/(3470): [EyeCare] eyecaremode=0, temp\_eyecaremode=0 08-13 14:09:35.930: W/(3470): [EyeCare] Don't set eyecare! 08-13 14:09:35.960: W/(3470): [EyeCare] Set temp\_eyecare ! 08-13 14:09:36.050: I/SoundDecoder(3374): MPG123: Accepting data stream. 08-13 14:09:36.060: V/WLAN\_PSA(325): NL MSG, len[4063], NL type[0x1C] WNI type[0x5900] len[50959] 08-13 14:09:36.060: V/WLAN\_PSA(325): NL MSG, PID: 325 08-13 14:09:36.070: I/Corona(3374): did show() ... 08-13 14:09:36.100: I/art(3374): Rejecting re-init on previously-failed class java.lang.Class\<com.android.webview.chromium.FloatingSelectActionModeCallback\> 08-13 14:09:36.100: I/art(3374): Rejecting re-init on previously-failed class java.lang.Class\<com.android.webview.chromium.FloatingSelectActionModeCallback\> 08-13 14:09:36.120: I/art(3374): Rejecting re-init on previously-failed class java.lang.Class\<com.android.webview.chromium.WebViewContentsClientAdapter$WebResourceErrorImpl\> 08-13 14:09:36.120: I/art(3374): Rejecting re-init on previously-failed class java.lang.Class\<com.android.webview.chromium.WebViewContentsClientAdapter$WebResourceErrorImpl\> 08-13 14:09:36.310: I/XiaomiFirewall(5341): firewall pkgName:com.mnyuecao.friends1359, result:0x0 08-13 14:09:36.390: W/chromium(3374): [WARNING:data\_reduction\_proxy\_config.cc(630)] SPDY proxy OFF at startup 08-13 14:09:36.430: W/art(3374): Attempt to remove local handle scope entry from IRT, ignoring 08-13 14:09:36.440: W/AwContents(3374): onDetachedFromWindow called when already detached. Ignoring 08-13 14:09:36.450: D/EgretLoader(3374): EgretLoader(Context context) 08-13 14:09:36.450: D/EgretLoader(3374): The context is not activity 08-13 14:09:36.490: I/ServiceManager(910): Waiting for service AtCmdFwd... 08-13 14:09:36.540: W/art(3374): Attempt to remove local handle scope entry from IRT, ignoring 08-13 14:09:36.540: W/art(3374): Attempt to remove local handle scope entry from IRT, ignoring 08-13 14:09:36.550: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:36.560: D/[InMobi](3374): Publisher device Id is 02a05535-b77e-40cc-85ca-ea66b737d050 08-13 14:09:36.670: I/Choreographer(3374): Skipped 35 frames! &nbsp;The application may be doing too much work on its main thread. 08-13 14:09:36.690: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:36.690: E/GooglePlayServicesUtil(3374): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included. 08-13 14:09:36.880: I/Corona(3374): banner 08-13 14:09:36.880: I/Corona(3374): 1470051765927 08-13 14:09:36.880: I/Corona(3374): true 08-13 14:09:36.880: I/Corona(3374): INTERNAL\_ERROR - The InMobi SDK encountered an internal error. 08-13 14:09:37.330: I/SurfaceFlinger(299): FPS: 5 08-13 14:09:37.470: I/TrafficManageService(5341): mina mTrafficStatsReceiver onReceive 08-13 14:09:37.480: W/ContextImpl(5341): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1336 android.content.ContextWrapper.sendBroadcast:377 com.miui.networkassistant.service.tm.TrafficManageService.broadCastDataUsageUpdated:817 com.miui.networkassistant.service.tm.TrafficManageService$8.onReceive:1044 android.app.LoadedApk$ReceiverDispatcher$Args.run:868&nbsp; 08-13 14:09:37.490: I/ServiceManager(910): Waiting for service AtCmdFwd... 08-13 14:09:37.960: W/(3488): [ColorAdjust] gammamode=1, cemode=11 08-13 14:09:37.960: W/(3488): [ColorAdjust] temp\_gammavalue=1, temp\_cevalue=11 08-13 14:09:37.960: W/(3488): [ColorAdjust] Don't setGamma! 08-13 14:09:37.970: W/(3488): [ColorAdjust] Don't setCe! 08-13 14:09:37.990: V/WLAN\_PSA(325): NL MSG, len[048], NL type[0x11] WNI type[0x5050] len[028] 08-13 14:09:37.990: V/WLAN\_PSA(325): NL MSG, PID: 325

Hello there.

I have a few questions for you that would help me help you.

  1. What device are you using specifically? (make, model)

  2. Do you have a custom rom installed on your device? 

  3. Are you using an ad blocker on your device? (adaway, adblock etc)

Thank you

Hi Danny,

 

  1. What device are you using specifically? (make, model)

Platform: Redmi 3 / ARM Neon / 5.1.1 / Adreno ™ 405 / OpenGL ES 3.0 V@100.0 AU@ (GIT@Ibddc658e36) / 2016.2929 / 中文 | CN | zh_CN | zh

 

  1. Do you have a custom rom installed on your device? 

No, I didn’t install custom rom on it.

 

  1. Are you using an ad blocker on your device? (adaway, adblock etc)

I think no because other ads networks work fine, eg: admob, corona ads, appodeal …

Hello There, this is Rishabh from InMobi team.

To investigate the “SDK Internal error” issue, could you try out these below steps:

  1. To cross-check if integration is done correctly, please follow our diagnostic tool to check if there are test ads being served on your device. 

  2. To be able to receive production/live ads, please ensure your Property is ‘activated’ on the portal with a valid app store URL. We also will need valid account details + payment details to be able to serve production ads.

If still you are unable to see any ads, whether test ads or live ads, do reach out to Corona team, or email to support@inmobi.com

Looks like this ‘INTERNAL_ERROR - The InMobi SDK encountered an internal error’ is sporadic. Sometimes i get this message, but then when i exit and relaunch the test app it works fine and the banner ad shows. Then next time i launch the app the error shows again.