Google Mobile Ads Rewarded ad not loading : Internal error [Unity] [Game] [GoogleMobileAds plugin]

5,004 views
Skip to first unread message

xive....@gmail.com

unread,
Mar 20, 2017, 10:53:27 AM3/20/17
to Google Mobile Ads SDK Developers
Hello,

i have been searching for solution to fix Ad not loading and cant find any. 

  • I am new to all this.
  • I have developed game using Unity 5.5.0f3
  • Used Google Mobile Ads Unity Plugin v3.3.0
  • referred to Youtube video : Unity and AdMob Rewarded Video - Mobile Ads Garage #14
  • I have created two ad units
  • Banner works fine
  • Rewarded ad not loading
(as seen in below image)

 











  • My app is not linked to Play store.
  • Rewarded ad is using Admob network
  • Thanks :)

Unity  C# Script (added to a preloader scene ) : 

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using GoogleMobileAds;
using GoogleMobileAds.Api;

public class AdmobAds : MonoBehaviour {
public static AdmobAds Instance{ set; get;}

public string bannerID,rewardedID;

private BannerView bannerView;
private RewardBasedVideoAd rewardView;

public bool rewardedLoaded,adShowed;

private void Start(){
Instance = this;
DontDestroyOnLoad (gameObject);

rewardView = RewardBasedVideoAd.Instance;

rewardView.OnAdClosed += HandlerOnAdClosed;
rewardView.OnAdFailedToLoad += HandlerOnAdFailedToLoad;
rewardView.OnAdLeavingApplication += HandlerOnAdLeavingApplication;
rewardView.OnAdLoaded += HandlerOnAdLoaded;
rewardView.OnAdOpening += HandlerOnAdOpening;
rewardView.OnAdRewarded += HandlerOnAdRewarded;
rewardView.OnAdStarted += HandlerOnAdStarted;

Debug.Log ("Admanger in start");

#if UNITY_EDITOR
#elif UNITY_ANDROID
bannerView = new BannerView (bannerID, AdSize.Banner, AdPosition.Bottom);
AdRequest bannerRequest = new AdRequest.Builder ().Build ();
bannerView.LoadAd (bannerRequest);
#endif
LoadReward ();
}

public void LoadReward(){
if (rewardView.IsLoaded ()==false) {
rewardView.LoadAd (new AdRequest.Builder ().Build (), rewardedID);
Debug.Log ("Loading ad..");
}
}

public void ShowRewardAd(){
if (rewardView.IsLoaded ()) {
Debug.Log ("playing ad");
rewardView.Show ();
}
Debug.Log ("playing ad : "+ rewardView.IsLoaded ());
}

public void ShowBanner(){
#if UNITY_EDITOR
Debug.Log("NO ShowBanner AD IN UNITY EDITOR");
#elif UNITY_ANDROID
bannerView.Show ();
#endif
}

public void HideBanner(){
#if UNITY_EDITOR
Debug.Log("NO HideBanner AD IN UNITY EDITOR");
#elif UNITY_ANDROID
bannerView.Hide ();
#endif
}

public void HandlerOnAdLoaded(object sender,EventArgs args){
rewardedLoaded = true;
Debug.Log ("ad loaded");
}

public void HandlerOnAdFailedToLoad(object sender,AdFailedToLoadEventArgs args){
Debug.Log ("Filed Loading Ad : " + args.Message );
LoadReward ();
}

public void HandlerOnAdOpening(object sender,EventArgs args){
}

public void HandlerOnAdStarted(object sender,EventArgs args){
}

public void HandlerOnAdClosed(object sender,EventArgs args){
adShowed = false;
}

public void HandlerOnAdRewarded(object sender,Reward args){
Debug.Log (args.Amount + " " + args.Type );
adShowed = true;
}

public void HandlerOnAdLeavingApplication(object sender,EventArgs args){
}

public void resetAdShowed(){
adShowed = false;
}
}

Unity Log  while Exporting Apk : 

Assets/Scripts/AdmobAds.cs imported, resolving play-services
UnityEngine.Debug:Log(Object)
GooglePlayServices.DefaultResolver:ShouldAutoResolve(String[], String[], String[], String[])
GooglePlayServices.PlayServicesResolver:OnPostprocessAllAssets(String[], String[], String[], String[])
UnityEditor.AssetPostprocessingInternal:PostprocessAllAssets(String[], String[], String[], String[], String[])


Project GPM data does not exist. Creating new object.
UnityEngine.Debug:Log(Object)
Google.PackageManager.LoggingController:Log(String)
Google.PackageManager.ProjectManagerController:InflateProjectRecord(String)
Google.PackageManager.ProjectManagerController:.cctor()
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes()



Logcat for Android Emulator : 

DataInstallerReceiver
03-20 19:47:49.608  1487  2126 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.xivestudio.longland/com.unity3d.player.UnityPlayerActivity} from uid 2000 on display 0
03-20 19:47:49.672  1487  1765 I ActivityManager: Start proc 2849:com.xivestudio.longland/u0a66 for activity com.xivestudio.longland/com.unity3d.player.UnityPlayerActivity
03-20 19:47:50.127  1487  1498 I ActivityManager: Killing 2238:com.android.dialer/u0a6 (adj 906): empty #17
03-20 19:47:50.610  1487  1510 I ActivityManager: Displayed com.xivestudio.longland/com.unity3d.player.UnityPlayerActivity: +952ms
03-20 19:47:50.677  2849  2865 E Unity   : Unable to find AudioPluginMsHRTF
03-20 19:47:50.677  2849  2865 E Unity   : Unable to find AudioPluginOculusSpatializer
03-20 19:47:50.868  2849  2865 D Unity   : GL_EXT_debug_marker GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_depth24 GL_OES_depth32 GL_OES_element_index_uint GL_OES_texture_float GL_OES_texture_float_linear GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth_texture GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_packed_depth_stencil GL_OES_vertex_half_float GL_OES_texture_npot GL_OES_rgb8_rgba8 ANDROID_EMU_CHECKSUM_HELPER_v1
03-20 19:47:52.175  2849  2865 D Unity   : #version 100
03-20 19:47:52.182  2849  2865 D Unity   : #extension GL_EXT_frag_depth : enable
03-20 19:47:52.182  2849  2865 D Unity   : precision highp float;
03-20 19:47:52.182  2849  2865 D Unity   : uniform highp vec4 _ProjectionParams;
03-20 19:47:52.182  2849  2865 D Unity   : uniform highp vec4 _ZBufferParams;
03-20 19:47:52.182  2849  2865 D Unity   : uniform highp mat4 unity_CameraToWorld;
03-20 19:47:52.182  2849  2865 D Unity   : uniform highp mat4 _NonJitteredVP;
03-20 19:47:52.183  2849  2865 D Unity   : uniform highp mat4 _PreviousVP;
03-20 19:47:52.183  2849  2865 D Unity   : uniform highp sampler2D _CameraDepthTexture;
03-20 19:47:52.183  2849  2865 D Unity   : varying highp vec2 xlv_TEXCOORD0;
03-20 19:47:52.183  2849  2865 D Unity   : varying highp vec3 xlv_TEXCOORD1;
03-20 19:47:52.184  2849  2865 D Unity   : void main ()
03-20 19:47:52.184  2849  2865 D Unity   : {
03-20 19:47:52.184  2849  2865 D Unity   :   highp vec4 tmpvar_1;
03-20 19:47:52.184  2849  2865 D Unity   :   tmpvar_1 = texture2D (_CameraDepthTexture, xlv_TEXCOORD0);
03-20 19:47:52.184  2849  2865 D Unity   :   mediump vec2 tmpvar_2;
03-20 19:47:52.184  2849  2865 D Unity   :   highp vec4 tmpvar_3;
03-20 19:47:52.184  2849  2865 D Unity   :   tmpvar_3.w = 1.0;
03-20 19:47:52.184  2849  2865 D Unity   :   tmpvar_3.xyz = ((xlv_TEXCOORD1 * (_ProjectionParams.z / xlv_TEXCOORD1.z)) * (1.0/((
03-20 19:47:52.184  2849  2865 D Unity   :     (_ZBufferParams.x * tmpvar_1.x)
03-20 19:47:52.191  2849  2865 D Unity   :    + _ZBufferParams.y))));
03-20 19:47:52.192  2849  2865 D Unity   :   highp vec4 tmpvar_4;
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_4 = (unity_CameraToWorld * tmpvar_3);
03-20 19:47:52.192  2849  2865 D Unity   :   highp vec4 tmpvar_5;
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_5 = (_PreviousVP * tmpvar_4);
03-20 19:47:52.192  2849  2865 D Unity   :   highp vec4 tmpvar_6;
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_6 = (_NonJitteredVP * tmpvar_4);
03-20 19:47:52.192  2849  2865 D Unity   :   highp vec2 tmpvar_7;
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_7 = (((tmpvar_5.xy / tmpvar_5.w) + 1.0) / 2.0);
03-20 19:47:52.192  2849  2865 D Unity   :   highp vec2 tmpvar_8;
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_8 = (((tmpvar_6.xy / tmpvar_6.w) + 1.0) / 2.0);
03-20 19:47:52.192  2849  2865 D Unity   :   tmpvar_2 = (tmpvar_8 - tmpvar_7);
03-20 19:47:52.192  2849  2865 D Unity   :   mediump vec4 tmpvar_9;
03-20 19:47:52.193  2849  2865 D Unity   :   tmpvar_9.zw = vec2(0.0, 1.0);
03-20 19:47:52.193  2849  2865 D Unity   :   tmpvar_9.xy = tmpvar_2;
03-20 19:47:52.193  2849  2865 D Unity   :   gl_FragDepthEXT = tmpvar_1.x;
03-20 19:47:52.193  2849  2865 D Unity   :   gl_FragData[0] = tmpvar_9;
03-20 19:47:52.193  2849  2865 D Unity   : }
03-20 19:47:52.193  2849  2865 D Unity   : fragment evaluation shader
03-20 19:47:58.084  2849  2865 I Unity   : Admanger in start
03-20 19:47:58.084  2849  2865 I Unity   :
03-20 19:47:58.084  2849  2865 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)
03-20 19:47:58.084  2849  2865 I Unity   :
03-20 19:47:58.134  2849  2865 I Unity   : Loading ad..
03-20 19:47:58.134  2849  2865 I Unity   :
03-20 19:47:58.134  2849  2865 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)
03-20 19:47:58.134  2849  2865 I Unity   :
03-20 19:47:59.776  1487  2140 W ActivityManager: Unable to start service Intent { act=com.android.vending.billing.InAppBillingService.BIND pkg=com.android.vending } U=0: not found
03-20 19:48:00.758  1487  1581 W ActivityManager: Unable to start service Intent { act=com.android.vending.billing.InAppBillingService.BIND pkg=com.android.vending } U=0: not found
03-20 19:48:00.784  1487  1765 W ActivityManager: Unable to start service Intent { act=com.android.vending.contentfilters.IContentFiltersService.BIND pkg=com.android.vending } U=0: not found
03-20 19:48:00.784  1487  2154 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@b6ce0f7
03-20 19:48:00.786  1487  2153 W ActivityManager: Unable to start service Intent { act=com.android.vending.contentfilters.IContentFiltersService.BIND pkg=com.android.vending } U=0: not found
03-20 19:48:00.787  1487  1851 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@ff13b64
03-20 19:48:10.806  2849  2849 I Unity   : Filed Loading Ad : Internal error
03-20 19:48:10.806  2849  2849 I Unity   :
03-20 19:48:10.806  2849  2849 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)
03-20 19:48:10.806  2849  2849 I Unity   :
03-20 19:48:10.828  2849  2849 I Unity   : Loading ad..
03-20 19:48:10.828  2849  2849 I Unity   :
03-20 19:48:10.828  2849  2849 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)
03-20 19:48:10.828  2849  2849 I Unity   :
03-20 19:48:10.945  1487  1618 W ActivityManager: Unable to start service Intent { act=com.android.vending.contentfilters.IContentFiltersService.BIND pkg=com.android.vending } U=0: not found
03-20 19:48:10.946  1487  1765 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@63681e2
03-20 19:48:12.393  2849  2849 I Unity   : Filed Loading Ad : Internal error
03-20 19:48:12.393  2849  2849 I Unity   :
03-20 19:48:12.393  2849  2849 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)



Sorry for noob type of mistakes.
Thanks :)
AdmobAds.cs

Veer Arjun Busani(Mobile Ads SDK Team)

unread,
Mar 20, 2017, 3:19:33 PM3/20/17
to Google Mobile Ads SDK Developers
Hi there,

Can you make sure that you have the following libraries in your Android SDK?
  • Google Play Services
  • Android SDK Build Tools
  • Android Support and Repository
Once you have those, right click on the Assets folder and select Play Services Resolver > Android Resolver > Resolve Client Jars. Your app might be missing a few required libraries causing this error.

Thanks,
Arjun Busani
Mobile Ads SDK Team

xive....@gmail.com

unread,
Apr 2, 2017, 2:22:04 AM4/2/17
to Google Mobile Ads SDK Developers
Hi, Sorry for late response.

here's my  sdk screenshot












































What i did :-

right click on the Assets folder and select Play Services Resolver > Android Resolver > Resolve Client Jars. 











after this nothing is shown in unity console!


But when i make any changes to code it shows :










OK , now i exported the apk and tested (using Test ID's and no .AddTestDevice() ) - it showed following log :-

 TestIdLog.txt (36K)

04-02 10:44:13.554  9751  9787 I Unity   : Admanger in start


04-02 10:44:13.554  9751  9787 I Unity   :  


04-02 10:44:13.554  9751  9787 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:13.554  9751  9787 I Unity   :


04-02 10:44:13.619  9925  9946 W Flag    : Duration spec must be at least 2 characters long:


04-02 10:44:13.620  9925  9946 W Flag    : Duration spec must be at least 2 characters long:


04-02 10:44:13.631  9751  9787 I Unity   : Loading ad..


04-02 10:44:13.631  9751  9787 I Unity   :  


04-02 10:44:13.631  9751  9787 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:13.631  9751  9787 I Unity   :


04-02 10:44:13.712  3379  3678 I XiaomiFirewall: firewall pkgName:com.xiaomi.mipicks, result:0x0


04-02 10:44:13.937 10075 10075 I dex2oat : Adjusted thread count (for runtime dex2oat): 4, 4


04-02 10:44:13.938 10075 10075 E dex2oat : Failed to create oat file: /data/dalvik-cache/arm/data@data@com.google.android.gms@app_chimera@m@00000035@DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk@classes.dex: Permission denied


04-02 10:44:13.938 10075 10075 I dex2oat : dex2oat took 1.130ms (threads: 4)


04-02 10:44:13.940  9751  9751 W art     : Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=smp,-div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/data/com.google.android.gms/app_chimera/m/00000035/DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk --oat-file=/data/dalvik-cache/arm/data@data@com.google.android.gms@app_chimera@m@00000035@DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk@classes.dex) because non-0 exit status


04-02 10:44:14.052  9751  9751 W System  : ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000035/n/armeabi


04-02 10:44:14.059  9751  9751 D DynamitePackage: Instantiated singleton DynamitePackage.


04-02 10:44:14.062  9751  9751 D DynamitePackage: Instantiating com.google.android.gms.ads.reward.ChimeraRewardedVideoAdCreatorImpl


04-02 10:44:14.066  9705  9991 E MarketDataParser: [AppList] JSON : list is null


04-02 10:44:14.066  9705  9991 E MarketDataParser: No value for miuiApp


04-02 10:44:14.090  3379  3678 I XiaomiFirewall: firewall pkgName:com.xivestudio.longland, result:0x0


04-02 10:44:14.192  9751 10081 I art     : Rejecting re-init on previously-failed class java.lang.Class<ns>


04-02 10:44:14.198  9773 10013 E MiPicksDataParser: [AppList] JSON : list is null: No value for miuiApp


04-02 10:44:14.320  9925  9946 W linker  : /data/app/com.google.android.gms-2/lib/arm64/libconscrypt_gmscore_jni.so: unused DT entry: type 0x1d arg 0x80


04-02 10:44:14.329  9925  9946 V NativeCrypto: Registering com/google/android/gms/org/conscrypt/NativeCrypto's 258 native methods...


04-02 10:44:14.334  4013  4013 W Binder_E: type=1400 audit(0.0:74015): avc: denied { ioctl } for path="socket:[2805891]" dev="sockfs" ino=2805891 ioctlcmd=7704 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=unix_stream_socket permissive=0


04-02 10:44:14.343  9751  9751 D AdsUnity: Calling loadAd() on Android


04-02 10:44:14.334  4013  4013 W Binder_E: type=1400 audit(0.0:74016): avc: denied { ioctl } for path="socket:[2805891]" dev="sockfs" ino=2805891 ioctlcmd=7704 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=unix_stream_socket permissive=0


04-02 10:44:14.352  9925  9946 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.OpenSSLExtendedSessionImpl>


04-02 10:44:14.355  9925  9946 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.OpenSSLExtendedSessionImpl>


04-02 10:44:14.356  9925  9946 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.OpenSSLExtendedSessionImpl>


04-02 10:44:14.372  9751  9751 D DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl


04-02 10:44:14.417  9925  9946 I ProviderInstaller: Installed default security provider GmsCore_OpenSSL


04-02 10:44:14.426  9751  9751 I Ads     : Starting ad request.


04-02 10:44:14.428  9751  9751 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-02 10:44:14.443  9751 10114 I WebViewFactory: Loading com.google.android.webview version 55.0.2883.91 (code 288309150)


04-02 10:44:14.459  9751  9751 I Ads     : Starting ad request.


04-02 10:44:14.461  9751  9751 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-02 10:44:14.473  9705 10080 E MarketDataParser: [AppList] JSON : list is null


04-02 10:44:14.473  9705 10080 E MarketDataParser: No value for listApp


04-02 10:44:14.478  9751 10116 E Ads     : Invoke Scion method getGmpAppId error, the Google Mobile Ads SDK will not integrate with Scion. Admob/Scion integration requires the latest Scion SDK jar, but Scion SDK is either missing or out of date


04-02 10:44:14.478  9751 10116 E Ads     : java.lang.ClassNotFoundException: Didn'
t find class "com.google.android.gms.measurement.AppMeasurement" on path: DexPathList[[zip file "/data/app/com.xivestudio.longland-1/base.apk"],nativeLibraryDirectories=[/data/app/com.xivestudio.longland-1/lib/arm, /data/app/com.xivestudio.longland-1/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]


04-02 10:44:14.478  9751 10116 E Ads     : at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:511)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:469)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.a(:com.google.android.gms.DynamiteModulesA:310)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.b(:com.google.android.gms.DynamiteModulesA:187)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.request.c.a(:com.google.android.gms.DynamiteModulesA:2321)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-02 10:44:14.478  9751 10116 E Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-02 10:44:14.478  9751 10116 E Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-02 10:44:14.478  9751 10116 E Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-02 10:44:14.478  9751 10116 E Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-02 10:44:14.478  9751 10116 E Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.Thread.run(Thread.java:818)


04-02 10:44:14.478  9751 10116 E Ads     : Suppressed: java.lang.ClassNotFoundException: com.google.android.gms.measurement.AppMeasurement


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.Class.classForName(Native Method)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.BootClassLoader.findClass(ClassLoader.java:781)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)


04-02 10:44:14.478  9751 10116 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:504)


04-02 10:44:14.478  9751 10116 E Ads     : ... 12 more


04-02 10:44:14.478  9751 10116 E Ads     : Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available


04-02 10:44:14.523  9751  9761 W art     : Suspending all threads took: 8.242ms


04-02 10:44:14.602  9751  9761 I art     : Background partial concurrent mark sweep GC freed 33981(4MB) AllocSpace objects, 19(976KB) LOS objects, 40% free, 16MB/27MB, paused 17.036ms total 135.321ms


04-02 10:44:14.609  9751 10114 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-02 10:44:14.609  9751 10114 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-02 10:44:14.616  9751 10114 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-02 10:44:14.617  9751 10114 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-02 10:44:14.627  9751 10114 I cr_LibraryLoader: Time to load native libraries: 1 ms (timestamps 5418-5419)


04-02 10:44:14.627  9751 10114 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-02 10:44:14.651  9751  9751 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-02 10:44:14.665  9751  9751 I chromium: [INFO:library_loader_hooks.cc(163)] Chromium logging enabled: level = 0, default verbosity = 0


04-02 10:44:14.704  9751  9751 I cr_BrowserStartup: Initializing chromium process, singleProcess=true


04-02 10:44:15.011  1441  3387 D ConnectivityService: listenForNetwork for Listen from uid/pid:10274/9751 for NetworkRequest [ id=136, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-02 10:44:15.019 10142 10142 I subsystem_ramdump: Usage:./system/bin/subsystem_ramdump [arg1] [arg2] [arg3]


04-02 10:44:15.019 10142 10142 I subsystem_ramdump: [arg1]: (1/2) Ramdump location: 1: eMMC: /data/ramdump or 2: SD card: /sdcard/ramdump


04-02 10:44:15.019 10142 10142 I subsystem_ramdump: [arg2]: (1/0) 1: Enable RPM log / 0: Disable RPM log


04-02 10:44:15.019 10142 10142 I subsystem_ramdump: [arg3]: (1/0) 1: Enable qdss ramdump / 0: Disable qdss ramdump


04-02 10:44:15.019 10142 10142 I subsystem_ramdump:  Using default ramdump location 1: eMMC: /data/ramdump


04-02 10:44:15.019 10142 10142 I subsystem_ramdump:  Using default 0: Disable RPM log


04-02 10:44:15.019 10142 10142 I subsystem_ramdump:  Using default 0: Disable qdss ramdump


04-02 10:44:15.019 10142 10142 E subsystem_ramdump: Unable to open /dev


04-02 10:44:15.019 10142 10142 E subsystem_ramdump: Failed to find pil ramdump


04-02 10:44:15.014 10142 10142 W subsystem_ramdu: type=1400 audit(0.0:74017): avc: denied { read } for name="/" dev="tmpfs" ino=6433 scontext=u:r:subsystem_ramdump:s0 tcontext=u:object_r:device:s0 tclass=dir permissive=0


04-02 10:44:15.051   791   791 I MSM-irqbalance: Decided to move IRQ104 from CPU1 to CPU3


04-02 10:44:15.054  9751  9751 D EgretLoader: EgretLoader(Context context)


04-02 10:44:15.054  9751  9751 D EgretLoader: The context is not activity


04-02 10:44:15.128  9751  9751 I cr_Ime  : ImeThread is enabled.


04-02 10:44:15.129  9751 10140 W cr_media: Requires BLUETOOTH permission


04-02 10:44:15.160  9751  9751 I Choreographer: Skipped 38 frames!  The application may be doing too much work on its main thread.


04-02 10:44:15.161  3476  3565 I CatonHandler: Caton frame: 38


04-02 10:44:15.177  1441  3129 D ConnectivityService: listenForNetwork for Listen from uid/pid:10274/9751 for NetworkRequest [ id=137, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-02 10:44:15.200  4241 10148 W Ads     : App does not have the required permissions to get location


04-02 10:44:15.211  4241 10152 W Ads     : App does not have the required permissions to get location


04-02 10:44:15.357  9751  9751 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-02 10:44:15.386  9751 10171 E libEGL  : validate_display:255 error 3008 (EGL_BAD_DISPLAY)


04-02 10:44:15.457  9751 10171 W AudioCapabilities: Unsupported mime audio/evrc


04-02 10:44:15.460  9751 10171 W AudioCapabilities: Unsupported mime audio/qcelp


04-02 10:44:15.470  9751 10171 W VideoCapabilities: Unrecognized profile 2130706433 for video/avc


04-02 10:44:15.481  9751 10171 W Utils   : could not parse long range '175-174'


04-02 10:44:15.488  9751 10171 W AudioCapabilities: Unsupported mime audio/qcelp


04-02 10:44:15.490  9751 10171 W AudioCapabilities: Unsupported mime audio/evrc


04-02 10:44:15.507  9751 10171 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-02 10:44:15.512  9751 10171 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-02 10:44:15.540  9751 10171 W VideoCapabilities: Unsupported mime video/mp4v-esdp


04-02 10:44:15.568  9751 10171 I VideoCapabilities: Unsupported profile 4 for video/mp4v-es


04-02 10:44:15.664  9751  9751 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 9751


04-02 10:44:15.707  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 8 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-02 10:44:15.715  9751  9751 I chromium: [INFO:CONSOLE(0)] "Document was loaded from Application Cache with manifest https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.appcache", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:44:15.717  9751  9751 I chromium: [INFO:CONSOLE(0)] "Application Cache Checking event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:44:15.893  3379  3678 I XiaomiFirewall: firewall pkgName:com.google.android.gms, result:0x0


04-02 10:44:16.006  3130  3171 W PushService: 2017-04-02 10:44:16,006 - [WARN::PushService] - [Thread:50] JOB: Handle intent action = com.xiaomi.mipush.SEND_MESSAGE


04-02 10:44:16.007  3130  3171 W PushService: 2017-04-02 10:44:16,007 - [WARN::PushService] - [Thread:50] try send mi push message. packagename:com.android.thememanager action:Notification


04-02 10:44:16.026  3130  3171 W PushService: 2017-04-02 10:44:16,026 - [WARN::PushService] - [Thread:50] JOB: Handle intent action = com.xiaomi.mipush.SEND_MESSAGE


04-02 10:44:16.027  3130  3171 W PushService: 2017-04-02 10:44:16,026 - [WARN::PushService] - [Thread:50] try send mi push message. packagename:com.android.thememanager action:Command


04-02 10:44:16.036  3130  3171 W PushService: 2017-04-02 10:44:16,035 - [WARN::PushService] - [Thread:50] JOB: Handle intent action = com.xiaomi.mipush.SEND_MESSAGE


04-02 10:44:16.036  3130  3171 W PushService: 2017-04-02 10:44:16,036 - [WARN::PushService] - [Thread:50] try send mi push message. packagename:com.android.thememanager action:Command


04-02 10:44:16.645  3130  3171 W PushService: 2017-04-02 10:44:16,644 - [WARN::PushService] - [Thread:50] receive a message, appid=1002505, msgid= WFtY1491110055894


04-02 10:44:16.887  3130  3171 W PushService: 2017-04-02 10:44:16,886 - [WARN::PushService] - [Thread:50] receive a message, appid=1002505, msgid= 9JCy1491110055895


04-02 10:44:17.043  9751  9751 I chromium: [INFO:CONSOLE(0)] "Application Cache NoUpdate event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:44:17.851  3476  3565 W WtProcessController: do not trim { PackageName :com.xivestudio.longland Pid: 9751 Uid: 10274 Start by: activity Score:90 Old score:90 state:0 mBackgroundTimeInMillis:1491110047612 WakelockCount:0 wakelogsize:0  ActivityDestroied:false Activity size: 1 PackageInfo:{WhetstonePackageInfo#PacakgeName:com.xivestudio.longland uid:10274 uiMemoryThresold:0 nonUiMemoryThresold:0 Flag:5184,0x1440 [,TRIMHEAPS,SOFT_RESET,FLAG_DEAL_SCHEDULE] Type:0[] } tasknum:157}


04-02 10:44:17.946  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 8 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-02 10:44:18.067   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-02 10:44:18.069   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-02 10:44:18.154  9751 10087 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-02 10:44:18.154  9751 10087 W Ads     : android.os.RemoteException


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-02 10:44:18.154  9751 10087 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-02 10:44:18.154  9751 10087 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-02 10:44:18.154  9751 10087 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-02 10:44:18.154  9751 10087 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-02 10:44:18.154  9751 10087 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-02 10:44:18.154  9751 10087 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-02 10:44:18.154  9751 10087 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-02 10:44:18.156  9751  9751 W Ads     : Failed to load ad: 3


04-02 10:44:18.170   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-02 10:44:18.171   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-02 10:44:18.211  9751  9751 I Unity   : Filed Loading Ad : No fill


04-02 10:44:18.211  9751  9751 I Unity   :  


04-02 10:44:18.211  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:18.211  9751  9751 I Unity   :


04-02 10:44:18.217  9751  9751 I Ads     : Starting ad request.


04-02 10:44:18.218  9751  9751 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-02 10:44:18.224  9751  9751 I Unity   : Loading ad..


04-02 10:44:18.224  9751  9751 I Unity   :  


04-02 10:44:18.224  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:18.224  9751  9751 I Unity   :


04-02 10:44:18.260  4241 10208 W Ads     : App does not have the required permissions to get location


04-02 10:44:18.274  1441  2929 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:44:18.279   595  1426 I QtiConnectivityAdapter: getV6TetherStats(tether= upstream=)


04-02 10:44:18.280   595  1426 V ConnectivityController:   getTetherStats  iptOutput6  /system/bin/ip6tables -nvx -L natctrl_tether_counters


04-02 10:44:18.312   595  1426 V ConnectivityController:   ipv6 : -1


04-02 10:44:18.358  1441  2929 I TetherStatsReporting: getTetherStats() called NetworkStats: elapsedRealtime=125629976


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [0] iface=rmnet_data6 uid=0 set=DEFAULT tag=0x0 rxBytes=476 rxPackets=6 txBytes=996 txPackets=15 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [1] iface=rmnet_data6 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [2] iface=bridge0 uid=0 set=DEFAULT tag=0x0 rxBytes=129768 rxPackets=1792 txBytes=124108 txPackets=1705 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [3] iface=bridge0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [4] iface=bridge0 uid=1001 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=4368 txPackets=59 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [5] iface=bridge0 uid=1001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [6] iface=rndis0 uid=0 set=DEFAULT tag=0x0 rxBytes=154803 rxPackets=2814 txBytes=79620 txPackets=1824 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [7] iface=rndis0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [8] iface=rndis0 uid=9999 set=DEFAULT tag=0x0 rxBytes=193838 rxPackets=2915 txBytes=372745 txPackets=2180 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [9] iface=rndis0 uid=9999 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [10] iface=rndis0 uid=10015 set=DEFAULT tag=0x0 rxBytes=2694 rxPackets=57 txBytes=1602 txPackets=18 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [11] iface=rndis0 uid=10015 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [12] iface=rndis0 uid=10015 set=DEFAULT tag=0x30001507 rxBytes=2694 rxPackets=57 txBytes=1602 txPackets=18 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [13] iface=rndis0 uid=10015 set=FOREGROUND tag=0x30001507 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [14] iface=rmnet_data0 uid=0 set=DEFAULT tag=0x0 rxBytes=13389357 rxPackets=18893 txBytes=1140095 txPackets=16465 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [15] iface=rmnet_data0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [16] iface=rmnet_data0 uid=1000 set=DEFAULT tag=0x0 rxBytes=81126 rxPackets=281 txBytes=89798 txPackets=356 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [17] iface=rmnet_data0 uid=1000 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [18] iface=rmnet_data0 uid=1001 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=123256 txPackets=1712 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [19] iface=rmnet_data0 uid=1001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [20] iface=rmnet_data0 uid=9801 set=DEFAULT tag=0x0 rxBytes=26769 rxPackets=133 txBytes=97037 txPackets=178 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [21] iface=rmnet_data0 uid=9801 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [22] iface=rmnet_data0 uid=9802 set=DEFAULT tag=0x0 rxBytes=43855 rxPackets=93 txBytes=24890 txPackets=132 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [23] iface=rmnet_data0 uid=9802 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [24] iface=rmnet_data0 uid=9810 set=DEFAULT tag=0x0 rxBytes=64911 rxPackets=211 txBytes=33607 txPackets=250 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [25] iface=rmnet_data0 uid=9810 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [26] iface=rmnet_data0 uid=9999 set=DEFAULT tag=0x0 rxBytes=360237 rxPackets=2070 txBytes=183150 txPackets=2716 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [27] iface=rmnet_data0 uid=9999 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [28] iface=rmnet_data0 uid=10001 set=DEFAULT tag=0x0 rxBytes=31262 rxPackets=29 txBytes=3904 txPackets=31 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [29] iface=rmnet_data0 uid=10001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [30] iface=rmnet_data0 uid=10004 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=104 txPackets=2 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [31] iface=rmnet_data0 uid=10004 set=FOREGROUND tag=0x0 rxBytes=9570 rxPackets=16 txBytes=3232 txPackets=18 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [32] iface=rmnet_data0 uid=10011 set=DEFAULT tag=0x0 rxBytes=72 rxPackets=1 txBytes=299 txPackets=4 operations=1


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [33] iface=rmnet_data0 uid=10011 set=FOREGROUND tag=0x0 rxBytes=776 rxPackets=5 txBytes=2157 txPackets=6 operations=0


04-02 10:44:18.358  1441  2929 I TetherStatsReporting:   [34] iface=rmnet_data0 uid=10015 set=


04-02 10:44:18.358  1441  2929 I TetherStatsReporting: combining tether stats


04-02 10:44:18.359  3970  4077 D QtiTetherService/IpaWrapper: getStats(false)


04-02 10:44:18.390  1441  2929 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:44:18.392  3379  3760 I TrafficManageService: mina mTrafficStatsReceiver onReceive


04-02 10:44:18.392  1441  2930 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:44:18.392  3379  3760 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:773 android.content.ContextWrapper.sendBroadcast:406 com.miui.networkassistant.service.tm.TrafficManageService.broadCastDataUsageUpdated:-1 com.miui.networkassistant.service.tm.TrafficManageService$8.onReceive:-1 android.app.LoadedApk$ReceiverDispatcher$Args.run:883


04-02 10:44:18.974  9751 10137 W chromium: [WARNING:spdy_session.cc(2216)] Received HEADERS for invalid stream 5


04-02 10:44:19.498  9751 10137 W chromium: [WARNING:spdy_session.cc(2216)] Received HEADERS for invalid stream 7


04-02 10:44:19.647  9751  9751 D EgretLoader: EgretLoader(Context context)


04-02 10:44:19.647  9751  9751 D EgretLoader: The context is not activity


04-02 10:44:19.654  3379  3678 I XiaomiFirewall: firewall pkgName:com.xivestudio.longland, result:0x0


04-02 10:44:19.655  3379  3678 I XiaomiFirewall: firewall pkgName:com.xiaomi.discover, result:0x0


04-02 10:44:19.714  9751 10111 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-02 10:44:19.714  9751 10111 W Ads     : android.os.RemoteException


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-02 10:44:19.714  9751 10111 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-02 10:44:19.714  9751 10111 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-02 10:44:19.714  9751 10111 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-02 10:44:19.714  9751 10111 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-02 10:44:19.714  9751 10111 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-02 10:44:19.714  9751 10111 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-02 10:44:19.714  9751 10111 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-02 10:44:19.744  9751  9751 I cr_Ime  : ImeThread is enabled.


04-02 10:44:19.745  9751  9751 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-02 10:44:19.746  9751  9751 W Ads     : Failed to load ad: 3


04-02 10:44:19.777  9751  9751 I Unity   : Filed Loading Ad : No fill


04-02 10:44:19.777  9751  9751 I Unity   :  


04-02 10:44:19.777  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:19.777  9751  9751 I Unity   :


04-02 10:44:19.780  9751  9751 I Ads     : Starting ad request.


04-02 10:44:19.781  9751  9751 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-02 10:44:19.792  9751  9751 I Unity   : Loading ad..


04-02 10:44:19.792  9751  9751 I Unity   :  


04-02 10:44:19.792  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:19.792  9751  9751 I Unity   :


04-02 10:44:19.811  9751  9751 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 9751


04-02 10:44:19.852  4241 10224 W Ads     : App does not have the required permissions to get location


04-02 10:44:20.044 10227 10227 W subsystem_ramdu: type=1400 audit(0.0:74018): avc: denied { read } for name="/" dev="tmpfs" ino=6433 scontext=u:r:subsystem_ramdump:s0 tcontext=u:object_r:device:s0 tclass=dir permissive=0


04-02 10:44:20.051 10227 10227 I subsystem_ramdump: Usage:./system/bin/subsystem_ramdump [arg1] [arg2] [arg3]


04-02 10:44:20.051 10227 10227 I subsystem_ramdump: [arg1]: (1/2) Ramdump location: 1: eMMC: /data/ramdump or 2: SD card: /sdcard/ramdump


04-02 10:44:20.051 10227 10227 I subsystem_ramdump: [arg2]: (1/0) 1: Enable RPM log / 0: Disable RPM log


04-02 10:44:20.051 10227 10227 I subsystem_ramdump: [arg3]: (1/0) 1: Enable qdss ramdump / 0: Disable qdss ramdump


04-02 10:44:20.051 10227 10227 I subsystem_ramdump:  Using default ramdump location 1: eMMC: /data/ramdump


04-02 10:44:20.051 10227 10227 I subsystem_ramdump:  Using default 0: Disable RPM log


04-02 10:44:20.051 10227 10227 I subsystem_ramdump:  Using default 0: Disable qdss ramdump


04-02 10:44:20.051 10227 10227 E subsystem_ramdump: Unable to open /dev


04-02 10:44:20.051 10227 10227 E subsystem_ramdump: Failed to find pil ramdump


04-02 10:44:20.053   791   791 I MSM-irqbalance: Decided to move IRQ215 from CPU1 to CPU3


04-02 10:44:20.062  1441  3033 I ActivityManager: Killing 9184:com.google.android.music:main/u0a75 (adj 15): empty #17


04-02 10:44:20.162  1441  3387 D ActivityManager: cleanUpApplicationRecord -- 9184


04-02 10:44:20.187  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 8 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-02 10:44:20.958  9751 10086 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-02 10:44:20.958  9751 10086 W Ads     : android.os.RemoteException


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-02 10:44:20.958  9751 10086 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-02 10:44:20.958  9751 10086 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-02 10:44:20.958  9751 10086 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-02 10:44:20.958  9751 10086 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-02 10:44:20.958  9751 10086 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-02 10:44:20.958  9751 10086 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-02 10:44:20.958  9751 10086 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-02 10:44:20.959  9751  9751 W Ads     : Failed to load ad: 3


04-02 10:44:20.992  9751  9751 I Unity   : Filed Loading Ad : No fill


04-02 10:44:20.992  9751  9751 I Unity   :  


04-02 10:44:20.992  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:20.992  9751  9751 I Unity   :


04-02 10:44:20.995  9751  9751 I Ads     : Starting ad request.


04-02 10:44:20.996  9751  9751 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-02 10:44:21.005  9751  9751 I Unity   : Loading ad..


04-02 10:44:21.005  9751  9751 I Unity   :  


04-02 10:44:21.005  9751  9751 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:44:21.005  9751  9751 I Unity   :

Now with my App Ad Ids : 

Device.log (24K)



04-02 10:53:31.521 11679 11701 I Unity   : Admanger in start


04-02 10:53:31.521 11679 11701 I Unity   :  


04-02 10:53:31.521 11679 11701 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:31.521 11679 11701 I Unity   :


04-02 10:53:31.572 11679 11701 I Unity   : Loading ad..


04-02 10:53:31.572 11679 11701 I Unity   :  


04-02 10:53:31.572 11679 11701 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:31.572 11679 11701 I Unity   :


04-02 10:53:31.685 11848 11848 I dex2oat : Adjusted thread count (for runtime dex2oat): 4, 4


04-02 10:53:31.685 11848 11848 E dex2oat : Failed to create oat file: /data/dalvik-cache/arm/data@data@com.google.android.gms@app_chimera@m@00000035@DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk@classes.dex: Permission denied


04-02 10:53:31.686 11848 11848 I dex2oat : dex2oat took 673.855us (threads: 4)


04-02 10:53:31.688 11679 11679 W art     : Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=smp,-div,-atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/data/com.google.android.gms/app_chimera/m/00000035/DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk --oat-file=/data/dalvik-cache/arm/data@data@com.google.android.gms@app_chimera@m@00000035@DynamiteModulesA_GmsCore_prodmnc_xxhdpi_release.apk@classes.dex) because non-0 exit status


04-02 10:53:31.816 11679 11679 W System  : ClassLoader referenced unknown path: /data/user/0/com.google.android.gms/app_chimera/m/00000035/n/armeabi


04-02 10:53:31.821 11679 11679 D DynamitePackage: Instantiated singleton DynamitePackage.


04-02 10:53:31.821 11679 11679 D DynamitePackage: Instantiating com.google.android.gms.ads.reward.ChimeraRewardedVideoAdCreatorImpl


04-02 10:53:31.884  3379  3678 I XiaomiFirewall: firewall pkgName:com.xivestudio.longland, result:0x0


04-02 10:53:31.944 11679 11854 I art     : Rejecting re-init on previously-failed class java.lang.Class<ns>


04-02 10:53:31.975  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 8 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-02 10:53:32.077 11679 11679 D AdsUnity: Calling loadAd() on Android


04-02 10:53:32.074  3440  3440 W Binder_8: type=1400 audit(0.0:75472): avc: denied { ioctl } for path="socket:[2827371]" dev="sockfs" ino=2827371 ioctlcmd=7704 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=unix_stream_socket permissive=0


04-02 10:53:32.074  3440  3440 W Binder_8: type=1400 audit(0.0:75473): avc: denied { ioctl } for path="socket:[2827371]" dev="sockfs" ino=2827371 ioctlcmd=7704 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=unix_stream_socket permissive=0


04-02 10:53:32.093 11679 11679 D DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl


04-02 10:53:32.130 11679 11679 I Ads     : Starting ad request.


04-02 10:53:32.131 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:32.143 11679 11886 I WebViewFactory: Loading com.google.android.webview version 55.0.2883.91 (code 288309150)


04-02 10:53:32.155 11679 11679 I Ads     : Starting ad request.


04-02 10:53:32.156 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:32.165 11679 11888 E Ads     : Invoke Scion method getGmpAppId error, the Google Mobile Ads SDK will not integrate with Scion. Admob/Scion integration requires the latest Scion SDK jar, but Scion SDK is either missing or out of date


04-02 10:53:32.165 11679 11888 E Ads     : java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.measurement.AppMeasurement" on path: DexPathList[[zip file "/data/app/com.xivestudio.longland-2/base.apk"],nativeLibraryDirectories=[/data/app/com.xivestudio.longland-2/lib/arm, /data/app/com.xivestudio.longland-2/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]


04-02 10:53:32.165 11679 11888 E Ads     : at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:511)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:469)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.a(:com.google.android.gms.DynamiteModulesA:310)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.b(:com.google.android.gms.DynamiteModulesA:187)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.request.c.a(:com.google.android.gms.DynamiteModulesA:2321)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-02 10:53:32.165 11679 11888 E Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-02 10:53:32.165 11679 11888 E Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-02 10:53:32.165 11679 11888 E Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-02 10:53:32.165 11679 11888 E Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-02 10:53:32.165 11679 11888 E Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.Thread.run(Thread.java:818)


04-02 10:53:32.165 11679 11888 E Ads     : Suppressed: java.lang.ClassNotFoundException: com.google.android.gms.measurement.AppMeasurement


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.Class.classForName(Native Method)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.BootClassLoader.findClass(ClassLoader.java:781)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)


04-02 10:53:32.165 11679 11888 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:504)


04-02 10:53:32.165 11679 11888 E Ads     : ... 12 more


04-02 10:53:32.165 11679 11888 E Ads     : Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available


04-02 10:53:32.279 10499 10499 W Atfwd_Sendcmd: AtCmdFwd service not published, waiting... retryCnt : 5


04-02 10:53:32.285 11679 11886 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-02 10:53:32.285 11679 11886 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-02 10:53:32.293 11679 11886 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-02 10:53:32.294 11679 11886 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-02 10:53:32.301 11679 11886 I cr_LibraryLoader: Time to load native libraries: 1 ms (timestamps 3092-3093)


04-02 10:53:32.301 11679 11886 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-02 10:53:32.318 11679 11679 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-02 10:53:32.319 11679 11679 I chromium: [INFO:library_loader_hooks.cc(163)] Chromium logging enabled: level = 0, default verbosity = 0


04-02 10:53:32.342 11679 11679 I cr_BrowserStartup: Initializing chromium process, singleProcess=true


04-02 10:53:32.499  1441  4013 D ConnectivityService: listenForNetwork for Listen from uid/pid:10274/11679 for NetworkRequest [ id=138, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-02 10:53:32.516 11679 11679 D EgretLoader: EgretLoader(Context context)


04-02 10:53:32.516 11679 11679 D EgretLoader: The context is not activity


04-02 10:53:32.553 11679 11908 W cr_media: Requires BLUETOOTH permission


04-02 10:53:32.554 11679 11679 I cr_Ime  : ImeThread is enabled.


04-02 10:53:32.593  1441  1452 D ConnectivityService: listenForNetwork for Listen from uid/pid:10274/11679 for NetworkRequest [ id=139, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-02 10:53:32.615 11679 11679 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-02 10:53:32.631 11679 11920 E libEGL  : validate_display:255 error 3008 (EGL_BAD_DISPLAY)


04-02 10:53:32.665  4241 11925 W Ads     : App does not have the required permissions to get location


04-02 10:53:32.668  4241 11926 W Ads     : App does not have the required permissions to get location


04-02 10:53:32.725 11679 11920 W AudioCapabilities: Unsupported mime audio/evrc


04-02 10:53:32.727 11679 11920 W AudioCapabilities: Unsupported mime audio/qcelp


04-02 10:53:32.738 11679 11920 W VideoCapabilities: Unrecognized profile 2130706433 for video/avc


04-02 10:53:32.750 11679 11920 W Utils   : could not parse long range '
175-174'


04-02 10:53:32.753 11679 11920 W AudioCapabilities: Unsupported mime audio/qcelp


04-02 10:53:32.756 11679 11920 W AudioCapabilities: Unsupported mime audio/evrc


04-02 10:53:32.766 11679 11920 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-02 10:53:32.770 11679 11920 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-02 10:53:32.793 11679 11920 W VideoCapabilities: Unsupported mime video/mp4v-esdp


04-02 10:53:32.821 11679 11920 I VideoCapabilities: Unsupported profile 4 for video/mp4v-es


04-02 10:53:32.902 11679 11679 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 11679


04-02 10:53:32.932 11679 11679 I chromium: [INFO:CONSOLE(0)] "Document was loaded from Application Cache with manifest https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.appcache", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:53:32.933 11679 11679 I chromium: [INFO:CONSOLE(0)] "Application Cache Checking event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:53:33.109   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-02 10:53:33.110   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-02 10:53:33.204  1441  3387 I ActivityManager: Killing 10464:com.android.providers.calendar/u0a5 (adj 15): empty #17


04-02 10:53:33.244   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-02 10:53:33.245   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-02 10:53:33.279  1441  3033 D ActivityManager: cleanUpApplicationRecord -- 10464


04-02 10:53:33.414  3379  3678 I XiaomiFirewall: firewall pkgName:com.google.android.gms, result:0x0


04-02 10:53:33.433  3379  3678 I XiaomiFirewall: firewall pkgName:com.xivestudio.longland, result:0x0


04-02 10:53:33.732 11679 11679 I chromium: [INFO:CONSOLE(0)] "Application Cache NoUpdate event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-02 10:53:33.871  4241 11925 W Ads     : Received error HTTP response code: 403


04-02 10:53:33.896 11679 11690 W Ads     : There was a problem getting an ad response. ErrorCode: 0


04-02 10:53:33.899 11679 11679 W Ads     : Failed to load ad: 0


04-02 10:53:33.955 11679 11679 I Unity   : Filed Loading Ad : Internal error


04-02 10:53:33.955 11679 11679 I Unity   :  


04-02 10:53:33.955 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:33.955 11679 11679 I Unity   :


04-02 10:53:33.957 11679 11679 I Ads     : Starting ad request.


04-02 10:53:33.958 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:33.964 11679 11679 I Unity   : Loading ad..


04-02 10:53:33.964 11679 11679 I Unity   :  


04-02 10:53:33.964 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:33.964 11679 11679 I Unity   :


04-02 10:53:34.026 11679 11679 D EgretLoader: EgretLoader(Context context)


04-02 10:53:34.026 11679 11679 D EgretLoader: The context is not activity


04-02 10:53:34.053  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :1signalStrength=SignalStrength: 99 0 -120 -160 -120 -1 -1 21 -96 -11 108 2147483647 2147483647 gsm|lte level=5 cdmdlevel=0 evdolevel=0


04-02 10:53:34.096 11679 11679 I cr_Ime  : ImeThread is enabled.


04-02 10:53:34.097 11679 11679 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-02 10:53:34.116 11679 11679 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 11679


04-02 10:53:34.215  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 7 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-02 10:53:34.329  1441  2929 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:53:34.331  4241 11955 W Ads     : Received error HTTP response code: 403


04-02 10:53:34.333 11679 11690 W Ads     : There was a problem getting an ad response. ErrorCode: 0


04-02 10:53:34.334   595  1426 I QtiConnectivityAdapter: getV6TetherStats(tether= upstream=)


04-02 10:53:34.335 11679 11679 W Ads     : Failed to load ad: 0


04-02 10:53:34.336   595  1426 V ConnectivityController:   getTetherStats  iptOutput6  /system/bin/ip6tables -nvx -L natctrl_tether_counters


04-02 10:53:34.365   595  1426 V ConnectivityController:   ipv6 : -1


04-02 10:53:34.366 11679 11679 I Unity   : Filed Loading Ad : Internal error


04-02 10:53:34.366 11679 11679 I Unity   :  


04-02 10:53:34.366 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:34.366 11679 11679 I Unity   :


04-02 10:53:34.369 11679 11679 I Ads     : Starting ad request.


04-02 10:53:34.369 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:34.377 11679 11679 I Unity   : Loading ad..


04-02 10:53:34.377 11679 11679 I Unity   :  


04-02 10:53:34.377 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:34.377 11679 11679 I Unity   :


04-02 10:53:34.416  1441  2929 I TetherStatsReporting: getTetherStats() called NetworkStats: elapsedRealtime=126186031


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [0] iface=rmnet_data6 uid=0 set=DEFAULT tag=0x0 rxBytes=476 rxPackets=6 txBytes=996 txPackets=15 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [1] iface=rmnet_data6 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [2] iface=bridge0 uid=0 set=DEFAULT tag=0x0 rxBytes=129768 rxPackets=1792 txBytes=124108 txPackets=1705 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [3] iface=bridge0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [4] iface=bridge0 uid=1001 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=4368 txPackets=59 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [5] iface=bridge0 uid=1001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [6] iface=rndis0 uid=0 set=DEFAULT tag=0x0 rxBytes=154803 rxPackets=2814 txBytes=79620 txPackets=1824 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [7] iface=rndis0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [8] iface=rndis0 uid=9999 set=DEFAULT tag=0x0 rxBytes=193838 rxPackets=2915 txBytes=372745 txPackets=2180 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [9] iface=rndis0 uid=9999 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [10] iface=rndis0 uid=10015 set=DEFAULT tag=0x0 rxBytes=2694 rxPackets=57 txBytes=1602 txPackets=18 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [11] iface=rndis0 uid=10015 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [12] iface=rndis0 uid=10015 set=DEFAULT tag=0x30001507 rxBytes=2694 rxPackets=57 txBytes=1602 txPackets=18 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [13] iface=rndis0 uid=10015 set=FOREGROUND tag=0x30001507 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [14] iface=rmnet_data0 uid=0 set=DEFAULT tag=0x0 rxBytes=13399051 rxPackets=18966 txBytes=1143838 txPackets=16521 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [15] iface=rmnet_data0 uid=0 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [16] iface=rmnet_data0 uid=1000 set=DEFAULT tag=0x0 rxBytes=81126 rxPackets=281 txBytes=89850 txPackets=357 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [17] iface=rmnet_data0 uid=1000 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [18] iface=rmnet_data0 uid=1001 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=123256 txPackets=1712 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [19] iface=rmnet_data0 uid=1001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [20] iface=rmnet_data0 uid=9801 set=DEFAULT tag=0x0 rxBytes=26821 rxPackets=134 txBytes=97141 txPackets=180 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [21] iface=rmnet_data0 uid=9801 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [22] iface=rmnet_data0 uid=9802 set=DEFAULT tag=0x0 rxBytes=43855 rxPackets=93 txBytes=24890 txPackets=132 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [23] iface=rmnet_data0 uid=9802 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [24] iface=rmnet_data0 uid=9810 set=DEFAULT tag=0x0 rxBytes=64911 rxPackets=211 txBytes=33607 txPackets=250 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [25] iface=rmnet_data0 uid=9810 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [26] iface=rmnet_data0 uid=9999 set=DEFAULT tag=0x0 rxBytes=360237 rxPackets=2070 txBytes=183150 txPackets=2716 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [27] iface=rmnet_data0 uid=9999 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [28] iface=rmnet_data0 uid=10001 set=DEFAULT tag=0x0 rxBytes=31262 rxPackets=29 txBytes=3904 txPackets=31 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [29] iface=rmnet_data0 uid=10001 set=FOREGROUND tag=0x0 rxBytes=0 rxPackets=0 txBytes=0 txPackets=0 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [30] iface=rmnet_data0 uid=10004 set=DEFAULT tag=0x0 rxBytes=0 rxPackets=0 txBytes=104 txPackets=2 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [31] iface=rmnet_data0 uid=10004 set=FOREGROUND tag=0x0 rxBytes=9570 rxPackets=16 txBytes=3232 txPackets=18 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [32] iface=rmnet_data0 uid=10011 set=DEFAULT tag=0x0 rxBytes=72 rxPackets=1 txBytes=299 txPackets=4 operations=1


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [33] iface=rmnet_data0 uid=10011 set=FOREGROUND tag=0x0 rxBytes=776 rxPackets=5 txBytes=2157 txPackets=6 operations=0


04-02 10:53:34.416  1441  2929 I TetherStatsReporting:   [34] iface=rmnet_data0 uid=10015 set=


04-02 10:53:34.416  1441  2929 I TetherStatsReporting: combining tether stats


04-02 10:53:34.420  3970  3988 D QtiTetherService/IpaWrapper: getStats(false)


04-02 10:53:34.452  1441  2929 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:53:34.454  1441  2930 D NtpTrustedTime: currentTimeMillis() cache hit


04-02 10:53:34.454  3379  3760 I TrafficManageService: mina mTrafficStatsReceiver onReceive


04-02 10:53:34.454  3379  3760 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:773 android.content.ContextWrapper.sendBroadcast:406 com.miui.networkassistant.service.tm.TrafficManageService.broadCastDataUsageUpdated:-1 com.miui.networkassistant.service.tm.TrafficManageService$8.onReceive:-1 android.app.LoadedApk$ReceiverDispatcher$Args.run:883


04-02 10:53:34.613 11679 11679 I Ads     : Scheduling ad refresh 60000 milliseconds from now.


04-02 10:53:34.668 11679 11679 I Ads     : Ad finished loading.


04-02 10:53:34.728  4241 11965 W Ads     : Received error HTTP response code: 403


04-02 10:53:34.731 11679 11689 W Ads     : There was a problem getting an ad response. ErrorCode: 0


04-02 10:53:34.746 11679 11679 W Ads     : Failed to load ad: 0


04-02 10:53:34.772 11679 11679 I Unity   : Filed Loading Ad : Internal error


04-02 10:53:34.772 11679 11679 I Unity   :  


04-02 10:53:34.772 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:34.772 11679 11679 I Unity   :


04-02 10:53:34.775 11679 11679 I Ads     : Starting ad request.


04-02 10:53:34.775 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:34.781 11679 11679 I Unity   : Loading ad..


04-02 10:53:34.781 11679 11679 I Unity   :  


04-02 10:53:34.781 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:34.781 11679 11679 I Unity   :


04-02 10:53:35.043  3379  3678 I XiaomiFirewall: firewall pkgName:com.xivestudio.longland, result:0x0


04-02 10:53:35.153  4241 11932 W Ads     : Received error HTTP response code: 403


04-02 10:53:35.155 11679 11689 W Ads     : There was a problem getting an ad response. ErrorCode: 0


04-02 10:53:35.172 11679 11679 W Ads     : Failed to load ad: 0


04-02 10:53:35.180   791   791 I MSM-irqbalance: Decided to move IRQ262 from CPU2 to CPU3


04-02 10:53:35.201 11679 11679 I Unity   : Filed Loading Ad : Internal error


04-02 10:53:35.201 11679 11679 I Unity   :  


04-02 10:53:35.201 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:35.201 11679 11679 I Unity   :


04-02 10:53:35.204 11679 11679 I Ads     : Starting ad request.


04-02 10:53:35.205 11679 11679 I Ads     : This request is sent from a test device.


04-02 10:53:35.214 11679 11679 I Unity   : Loading ad..


04-02 10:53:35.214 11679 11679 I Unity   :  


04-02 10:53:35.214 11679 11679 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-02 10:53:35.214 11679 11679 I Unity   :

And if i use my Ad ID's without addTestDevice, it shows No fill.


Thanks :) 

TestIdLog.txt
Device.log

Joshua Lagonera (Mobile Ads SDK Team)

unread,
Apr 3, 2017, 4:40:01 AM4/3/17
to Google Mobile Ads SDK Developers
Hi there,

Are you able to replicate this issue when you use our sample apps
Additionally, can you provide us the affected Ad Unit IDs so we may investigate it on our end?

I would also like to note that it is NOT recommended to add any Test Devices when requesting for Rewarded Video Ads as AdMob does not directly serve test ads.

Regards,
Joshua Lagonera
Mobile Ads SDK Team

xive....@gmail.com

unread,
Apr 3, 2017, 9:48:54 AM4/3/17
to Google Mobile Ads SDK Developers
Hi,

here are my - 

BannerAd : ca-app-pub-9621560067356848/4593400611

RewardedAd : ca-app-pub-9621560067356848/6070133815


1) And can you also help me with :- 
Do i need mediation ? like Unity Ad ?
And if i use Unity Mediation with Admob , how do i get payment , from UnityAd or from Admob ? (i googled this, but didnt find any answer about who does the payment for these ad)


2) Things i did :-

  • Created new empty project
  • tested it directly and got following log:-
04-03 18:47:45.282  4812  3904 W ctxmgr  : [AclManager]No 2 for (accnt=account#81497043#, com.google.android.gms(10015):UserLocationProducer, vrsn=10553000, 0, 3pPkg = null ,  3pMdlId = null). Was: 2 for 1, account#81497043#


04-03 18:47:45.293  4812  3904 W ctxmgr  : [AclManager]No 2 for (accnt=account#-1553158379#, com.google.android.gms(10015):UserLocationProducer, vrsn=10553000, 0, 3pPkg = null ,  3pMdlId = null). Was: 2 for 1, account#-1553158379#


04-03 18:47:45.319  4812 16052 I GCoreUlr: Successfully inserted 1 locations


04-03 18:47:45.352 18484 18484 I ServiceManager: Waiting for service AtCmdFwd...


04-03 18:47:45.467 19144 19144 I Ads     : Starting ad request.


04-03 18:47:45.467 19144 19144 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-03 18:47:45.485  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :0signalStrength=SignalStrength: 7 0 -120 -160 -120 -1 -1 99 2147483647 2147483647 2147483647 2147483647 2147483647 gsm|lte level=3 cdmdlevel=0 evdolevel=0


04-03 18:47:45.521  4241 19610 W Ads     : App does not have the required permissions to get location


04-03 18:47:46.042 19144 19522 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-03 18:47:46.042 19144 19522 W Ads     : android.os.RemoteException


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-03 18:47:46.042 19144 19522 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-03 18:47:46.042 19144 19522 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-03 18:47:46.042 19144 19522 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-03 18:47:46.042 19144 19522 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-03 18:47:46.042 19144 19522 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-03 18:47:46.042 19144 19522 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-03 18:47:46.042 19144 19522 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-03 18:47:46.043 19144 19144 W Ads     : Failed to load ad: 3


04-03 18:47:46.077 19144 19144 I Unity   : HandleRewardBasedVideoFailedToLoad event received with message: No fill


04-03 18:47:46.077 19144 19144 I Unity   :  


04-03 18:47:46.077 19144 19144 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:47:46.077 19144 19144 I Unity   :


04-03 18:47:46.353 18484 18484 I ServiceManager: Waiting for service AtCmdFwd...


04-03 18:47:46.440   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_POWER: device=cluster0 frequency=1382400


04-03 18:47:46.440   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_PERF: device=cluster1 frequency=1747200


04-03 18:47:46.548   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:47:46.549   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-03 18:47:46.566   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-03 18:47:46.567   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:47:47.192   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_POWER: device=cluster0 frequency=1401600


04-03 18:47:47.194   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_PERF: device=cluster1 frequency=1804800


04-03 18:47:47.354 18484 18484 W Atfwd_Sendcmd: AtCmdFwd service not published, waiting... retryCnt : 1


04-03 18:47:47.727  3006  3006 D StatusBar.NetworkController: onSignalStrengthsChanged received on slotId :1signalStrength=SignalStrength: 99 0 -120 -160 -120 -1 -1 18 -101 -12 60 2147483647 2147483647 gsm|lte level=5 cdmdlevel=0 evdolevel=0


04-03 18:47:48.698   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_POWER: device=cluster0 frequency=1401600


04-03 18:47:48.698   614   711 I ThermalEngine: cpu_frequency_pre_req: SS-SKIN_CONTROL_PERF: device=cluster1 frequency=1804800


04-03 18:47:48.737   791   791 I MSM-irqbalance: Decided to move IRQ262 from CPU3 to CPU1


04-03 18:47:49.030 19144 19177 I Unity   : Reward based video ad is not ready yet


04-03 18:47:49.030 19144 19177 I Unity   :  


04-03 18:47:49.030 19144 19177 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:47:49.030 19144 19177 I Unity   :

  • then changed the Rewarded Video Ads Id to my and got the following log:-

04-03 18:52:30.238 20725 20725 I Ads     : Starting ad request.


04-03 18:52:30.240 20725 20725 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-03 18:52:30.320  4241 21225 W Ads     : App does not have the required permissions to get location


04-03 18:52:30.841 20725 21103 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-03 18:52:30.841 20725 21103 W Ads     : android.os.RemoteException


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-03 18:52:30.841 20725 21103 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-03 18:52:30.842 20725 20725 W Ads     : Failed to load ad: 3


04-03 18:52:30.877 20725 20725 I Unity   : HandleRewardBasedVideoFailedToLoad event received with message: No fill


04-03 18:52:30.877 20725 20725 I Unity   :  


04-03 18:52:30.877 20725 20725 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:52:30.877 20725 20725 I Unity  
 

  •  then tested test id's without AddTestDevice :-
04-03 18:52:09.014 20725 20725 I Ads     : Starting ad request.


04-03 18:52:09.019 20725 20725 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxx") to get test ads on this device.


04-03 18:52:09.041 20725 21103 I WebViewFactory: Loading com.google.android.webview version 55.0.2883.91 (code 288309150)


04-03 18:52:09.077 20725 21105 E Ads     : Invoke Scion method getGmpAppId error, the Google Mobile Ads SDK will not integrate with Scion. Admob/Scion integration requires the latest Scion SDK jar, but Scion SDK is either missing or out of date


04-03 18:52:09.077 20725 21105 E Ads     : java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.measurement.AppMeasurement" on path: DexPathList[[zip file "/data/app/com.testing.testing-2/base.apk"],nativeLibraryDirectories=[/data/app/com.testing.testing-2/lib/arm, /data/app/com.testing.testing-2/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]


04-03 18:52:09.077 20725 21105 E Ads     : at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:511)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:469)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.a(:com.google.android.gms.DynamiteModulesA:310)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.scionintegration.b.b(:com.google.android.gms.DynamiteModulesA:187)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.request.c.a(:com.google.android.gms.DynamiteModulesA:2321)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-03 18:52:09.077 20725 21105 E Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-03 18:52:09.077 20725 21105 E Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-03 18:52:09.077 20725 21105 E Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-03 18:52:09.077 20725 21105 E Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-03 18:52:09.077 20725 21105 E Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.Thread.run(Thread.java:818)


04-03 18:52:09.077 20725 21105 E Ads     : Suppressed: java.lang.ClassNotFoundException: com.google.android.gms.measurement.AppMeasurement


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.Class.classForName(Native Method)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.BootClassLoader.findClass(ClassLoader.java:781)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)


04-03 18:52:09.077 20725 21105 E Ads     : at java.lang.ClassLoader.loadClass(ClassLoader.java:504)


04-03 18:52:09.077 20725 21105 E Ads     : ... 12 more


04-03 18:52:09.077 20725 21105 E Ads     : Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available


04-03 18:52:09.174 20725 21103 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-03 18:52:09.174 20725 21103 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>


04-03 18:52:09.180 20725 21103 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-03 18:52:09.180 20725 21103 I art     : Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>


04-03 18:52:09.187 20725 21103 I cr_LibraryLoader: Time to load native libraries: 2 ms (timestamps 6333-6335)


04-03 18:52:09.187 20725 21103 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-03 18:52:09.327  4241 21114 W Ads     : App does not have the required permissions to get location


04-03 18:52:10.327  3999  3999 I chatty  : uid=1001(radio) com.android.phone expire 6 lines


04-03 18:52:10.344 18417 18447 I chatty  : uid=1001(radio) /system/bin/radish expire 42 lines


04-03 18:52:10.345 18417 18448 I chatty  : uid=1001(radio) /system/bin/radish expire 26 lines


04-03 18:52:10.749  1441  3033 I ActivityManager: Killing 20487:com.android.soundrecorder/u0a92 (adj 15): empty #17


04-03 18:52:10.833 20725 21008 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-03 18:52:10.833 20725 21008 W Ads     : android.os.RemoteException


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-03 18:52:10.833 20725 21008 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-03 18:52:10.833 20725 21008 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-03 18:52:10.833 20725 21008 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-03 18:52:10.833 20725 21008 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-03 18:52:10.833 20725 21008 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-03 18:52:10.833 20725 21008 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-03 18:52:10.833 20725 21008 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-03 18:52:10.834  1441  3440 D ActivityManager: cleanUpApplicationRecord -- 20487


04-03 18:52:10.836 20725 20725 W Ads     : Failed to load ad: 3


04-03 18:52:10.842 21144 21144 I chatty  : uid=1000(system) /system/bin/subsystem_ramdump expire 10 lines


04-03 18:52:10.887 20725 20725 I Unity   : HandleRewardBasedVideoFailedToLoad event received with message: No fill


04-03 18:52:10.887 20725 20725 I Unity   :  


04-03 18:52:10.887 20725 20725 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:52:10.887 20725 20725 I Unity   :


04-03 18:52:11.566   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-03 18:52:11.566   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:11.602   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-03 18:52:11.602   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:13.887   791   791 I MSM-irqbalance: Decided to move IRQ215 from CPU3 to CPU0


04-03 18:52:15.870 21147 21147 I chatty  : uid=1000(system) /system/bin/subsystem_ramdump expire 10 lines


04-03 18:52:16.566   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-03 18:52:16.567   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:16.602   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-03 18:52:16.602   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:18.191 20785 20887 I Finsky  : [13054] com.google.android.finsky.f.f.run(2154): Replicating app states via DFE.


04-03 18:52:18.889   791   791 I MSM-irqbalance: Decided to move IRQ240 from CPU3 to CPU0


04-03 18:52:18.940 20725 20767 I Unity   : Reward based video ad is not ready yet


04-03 18:52:18.940 20725 20767 I Unity   :  


04-03 18:52:18.940 20725 20767 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:52:18.940 20725 20767 I Unity   :


04-03 18:52:18.967 20785 20887 I Finsky  : [13054] com.google.android.finsky.f.d.a(319): Completed 0 account content syncs with 0 successful.


04-03 18:52:18.969 20785 20785 I Finsky  : [1] com.google.android.finsky.services.j.a(149): Installation state replication succeeded.


04-03 18:52:19.004  3006  3006 I chatty  : uid=1000(system) com.android.systemui expire 14 lines


04-03 18:52:19.905 21153 21153 I chatty  : uid=1000(system) expire 10 lines


04-03 18:52:21.566   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-03 18:52:21.567   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:21.602   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-03 18:52:21.603   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:22.978 18417 18447 I chatty  : uid=1001(radio) /system/bin/radish expire 42 lines


04-03 18:52:22.981 18417 18448 I chatty  : uid=1001(radio) /system/bin/radish expire 26 lines


04-03 18:52:23.392  3129  3129 I chatty  : uid=1000(system) Binder_6 expire 2 lines


04-03 18:52:23.407 20725 20725 D AdsUnity: Calling loadAd() on Android


04-03 18:52:23.424 20725 20725 D DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraAdManagerCreatorImpl


04-03 18:52:23.459 20725 20725 I Ads     : Starting ad request.


04-03 18:52:23.459 20725 20725 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-03 18:52:23.520  4241 21162 W Ads     : App does not have the required permissions to get location


04-03 18:52:23.752  1441  2929 I chatty  : uid=1000(system) NetworkStats expire 9 lines


04-03 18:52:23.758   595  1426 I QtiConnectivityAdapter: getV6TetherStats(tether= upstream=)


04-03 18:52:23.759   595  1426 V ConnectivityController:   getTetherStats  iptOutput6  /system/bin/ip6tables -nvx -L natctrl_tether_counters


04-03 18:52:23.787   595  1426 V ConnectivityController: parse res=0 iface0=<> iface1=<> pkts=0 bytes=0 rest=<>orig line=<Chain natctrl_tether_counters (2 references)


04-03 18:52:23.787   595  1426 V ConnectivityController: >


04-03 18:52:23.787   595  1426 V ConnectivityController: parse res=0 iface0=<> iface1=<> pkts=0 bytes=0 rest=<>orig line=<    pkts      bytes target     prot opt in     out     source               destination        


04-03 18:52:23.787   595  1426 V ConnectivityController: >


04-03 18:52:23.787   595  1426 V ConnectivityController: parse res=5 iface0=<bridge0> iface1=<rmnet_data0> pkts=86 bytes=6213 rest=</0>orig line=<      86     6213 RETURN     all      bridge0 rmnet_data0  ::/0                 ::/0                 counter bridge0_rmnet_: 0 bytes


04-03 18:52:23.787   595  1426 V ConnectivityController: >


04-03 18:52:23.787   595  1426 V ConnectivityController: 0Filter RX iface_in=bridge0 iface_out=rmnet_data0 rx_bytes=6213 rx_packets=86


04-03 18:52:23.787   595  1426 V ConnectivityController: parse res=5 iface0=<rmnet_data0> iface1=<bridge0> pkts=186 bytes=14832 rest=</0>orig line=<     186    14832 RETURN     all      rmnet_data0 bridge0  ::/0                 ::/0                 counter rmnet_data0_br: 0 bytes


04-03 18:52:23.787   595  1426 V ConnectivityController: >


04-03 18:52:23.787   595  1426 V ConnectivityController: 0Filter TX iface_in=rmnet_data0 iface_out=bridge0 rx_bytes=14832 rx_packets=186


04-03 18:52:23.787   595  1426 D ConnectivityController: rx_bytes=6213 tx_bytes=14832 pair=0


04-03 18:52:23.788   595  1426 V ConnectivityController:   ipv6 : 0


04-03 18:52:23.849  3970  4077 I chatty  : uid=1000(system) Binder_3 expire 6 lines


04-03 18:52:23.886   791   791 I MSM-irqbalance: Decided to move IRQ270 from CPU3 to CPU0


04-03 18:52:23.916  1441  2930 I chatty  : uid=1000(system) NetworkPolicy expire 1 line


04-03 18:52:23.917  3379  3760 I chatty  : uid=1000(system) TrafficManageSe expire 1 line


04-03 18:52:23.917  3379  3760 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:773 android.content.ContextWrapper.sendBroadcast:406 com.miui.networkassistant.service.tm.TrafficManageService.broadCastDataUsageUpdated:-1 com.miui.networkassistant.service.tm.TrafficManageService$8.onReceive:-1 android.app.LoadedApk$ReceiverDispatcher$Args.run:883


04-03 18:52:24.184 20725 20725 I cr_LibraryLoader: Expected native library version number "55.0.2883.91", actual native library version number "55.0.2883.91"


04-03 18:52:24.184 20725 20725 I chromium: [INFO:library_loader_hooks.cc(163)] Chromium logging enabled: level = 0, default verbosity = 0


04-03 18:52:24.225 20725 20725 I cr_BrowserStartup: Initializing chromium process, singleProcess=true


04-03 18:52:24.415  1441  3801 D ConnectivityService: listenForNetwork for Listen from uid/pid:10281/20725 for NetworkRequest [ id=332, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-03 18:52:24.434 20725 20725 D EgretLoader: EgretLoader(Context context)


04-03 18:52:24.434 20725 20725 D EgretLoader: The context is not activity


04-03 18:52:24.498 20725 21184 W cr_media: Requires BLUETOOTH permission


04-03 18:52:24.555  1441  3444 D ConnectivityService: listenForNetwork for Listen from uid/pid:10281/20725 for NetworkRequest [ id=333, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ]


04-03 18:52:24.558 20725 20725 I cr_Ime  : ImeThread is enabled.


04-03 18:52:24.586 20725 20725 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-03 18:52:24.665 20725 21195 E libEGL  : validate_display:255 error 3008 (EGL_BAD_DISPLAY)


04-03 18:52:24.885 20725 21195 W AudioCapabilities: Unsupported mime audio/evrc


04-03 18:52:24.889 20725 21195 W AudioCapabilities: Unsupported mime audio/qcelp


04-03 18:52:24.901 20725 21195 W VideoCapabilities: Unrecognized profile 2130706433 for video/avc


04-03 18:52:24.917 20725 21195 W Utils   : could not parse long range '
175-174'


04-03 18:52:24.922 20725 21195 W AudioCapabilities: Unsupported mime audio/qcelp


04-03 18:52:24.926 20725 21195 W AudioCapabilities: Unsupported mime audio/evrc


04-03 18:52:24.933 21198 21198 I chatty  : uid=1000(system) expire 10 lines


04-03 18:52:24.943 20725 21195 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-03 18:52:24.950 20725 21195 W VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2


04-03 18:52:24.987 20725 21195 W VideoCapabilities: Unsupported mime video/mp4v-esdp


04-03 18:52:25.028 20725 21195 I VideoCapabilities: Unsupported profile 4 for video/mp4v-es


04-03 18:52:25.162 20725 20725 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 20725


04-03 18:52:25.481  3379  3678 I chatty  : uid=1000(system) Thread-63 expire 10 lines


04-03 18:52:25.932 20725 20725 I Ads     : Scheduling ad refresh 60000 milliseconds from now.


04-03 18:52:25.982 20725 20725 D EgretLoader: EgretLoader(Context context)


04-03 18:52:25.982 20725 20725 D EgretLoader: The context is not activity


04-03 18:52:26.000 20725 20725 I cr_Ime  : ImeThread is enabled.


04-03 18:52:26.028 20725 20725 I Ads     : Ad finished loading.


04-03 18:52:26.054 20725 20725 I Unity   : HandleAdLoaded event received


04-03 18:52:26.054 20725 20725 I Unity   :  


04-03 18:52:26.054 20725 20725 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:52:26.054 20725 20725 I Unity   :


04-03 18:52:26.136 20725 20725 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver


04-03 18:52:26.233 20725 20725 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 20725


04-03 18:52:26.235 20725 20725 I chromium: [INFO:CONSOLE(0)] "Document was loaded from Application Cache with manifest https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.appcache", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-03 18:52:26.236 20725 20725 I chromium: [INFO:CONSOLE(0)] "Application Cache Checking event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-03 18:52:26.341 20725 20725 I chromium: [INFO:CONSOLE(0)] "Application Cache NoUpdate event", source: https://googleads.g.doubleclick.net/mads/static/mad/sdk/native/sdk-core-v40-loader.html (0)


04-03 18:52:26.567   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:26.567   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]


04-03 18:52:26.603   724   934 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register


04-03 18:52:26.603   630   707 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]


04-03 18:52:29.303 20725 20725 D AdsUnity: Calling destroy() on Android


04-03 18:52:29.344 20725 20725 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 20725


04-03 18:52:29.960 21220 21220 I chatty  : uid=1000(system) /system/bin/subsystem_ramdump expire 10 lines


04-03 18:52:30.238 20725 20725 I Ads     : Starting ad request.


04-03 18:52:30.240 20725 20725 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") to get test ads on this device.


04-03 18:52:30.320  4241 21225 W Ads     : App does not have the required permissions to get location


04-03 18:52:30.841 20725 21103 W Ads     : Fail to instantiate adapter com.google.DummyAdapter


04-03 18:52:30.841 20725 21103 W Ads     : android.os.RemoteException


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)


04-03 18:52:30.841 20725 21103 W Ads     : at android.os.Binder.transact(Binder.java:387)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:94)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:229)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.k.a(:com.google.android.gms.DynamiteModulesA:1140)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:19)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.ag.call(:com.google.android.gms.DynamiteModulesA:1055)


04-03 18:52:30.841 20725 21103 W Ads     : at com.google.android.gms.ads.internal.util.ah.run(:com.google.android.gms.DynamiteModulesA:75)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)


04-03 18:52:30.841 20725 21103 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)


04-03 18:52:30.841 20725 21103 W Ads     : at java.lang.Thread.run(Thread.java:818)


04-03 18:52:30.842 20725 20725 W Ads     : Failed to load ad: 3


04-03 18:52:30.877 20725 20725 I Unity   : HandleRewardBasedVideoFailedToLoad event received with message: No fill


04-03 18:52:30.877 20725 20725 I Unity   :  


04-03 18:52:30.877 20725 20725 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)


04-03 18:52:30.877 20725 20725 I Unity   :


None of this showed a Reward Based Video.

thanks :)

Joshua Lagonera (Mobile Ads SDK Team)

unread,
Apr 3, 2017, 11:07:49 AM4/3/17
to Google Mobile Ads SDK Developers
Hi there,

Thank you for providing your Ad Unit IDs. Upon testing them in the sample apps, I was able to receive ads on my end. This leads me to believe that it is a serving issue on your end. 
That said, I would recommend you do Mediate with Third Party Ad Networks to get this issue resolved.

Additionally, to answer your concern:

And if i use Unity Mediation with Admob , how do i get payment , from UnityAd or from Admob ?
 
If you are mediating with UnityAds via AdMob, then you should get payment from AdMob.

Hope the above information would help resolve your issue.

Regards,
Joshua Lagonera
Mobile Ads SDK Team 

xive....@gmail.com

unread,
Apr 3, 2017, 1:17:43 PM4/3/17
to Google Mobile Ads SDK Developers
Wow, thanks for the fast response :)

it is not loading because of these  ? :-

Ads     : App does not have the required permissions to get location

OR

W Ads     : Fail to instantiate adapter com.google.DummyAdapter

OR

Ads     : Invoke Scion method getGmpAppId error, the Google Mobile Ads SDK will not integrate with Scion. Admob/Scion integration requires the latest Scion SDK jar, but Scion SDK is either missing or out of date

-------------------

I have all the Android SDK stuff needed, i have just imported  GoogleMobileAds.unitypackage , do i need any other plugin or any other SDK?



Thanks again :)

Joshua Lagonera (Mobile Ads SDK Team)

unread,
Apr 4, 2017, 2:24:54 AM4/4/17
to Google Mobile Ads SDK Developers
Hi there,

It's mainly not loading due to the "Fail to instantiate adapter com.google.DummyAdapter, Failed to load ad: 3" error which, in most cases, means that there is no available ad to be shown.

That said, to properly mediate with third party Ad Networks, you need to include the respective SDKs and Adapters of each Ad Network you wish to mediate with, which are located in our official documentation. Do note that you only need the Android and iOS SDK, and not the Unity SDK/plugin of each Ad Network. You can take a look at the AdMob Help Center for a helpful guide on how to Set Up Mediation.
Additionally, you can use this modified sample app that is already set up with Mediation for UnityAds that you can use as reference. Just replace the Ad Unit ID with yours then build and run the project.

Regards,
Joshua Lagonera
Mobile Ads SDK Team

xive....@gmail.com

unread,
Apr 7, 2017, 2:43:01 PM4/7/17
to Google Mobile Ads SDK Developers
Hi,
thanks for that sample app, helped a lot.
 
What i did : -

Created accounts with UnityAd and Vungle  for Mediation
















1) it is still showing Pending (2 days), Do i need to worry ? (in 'Ad network optimization settings' both unityAds and Vungle  are checked with green tick)

When i tested the game, it didn't show ads from Admob and unity, showed directly from Vungle (maybe a test ad).

Then i found this :- 
















2) Then i tested on a different device and stared to receive ads from Admob,  but never from UnityAds or Vungle. 
     Is there a way to check if all networks are working ? (Unity Dashboard, never shows any Ad Request made).

3) i have been using Ad Id's without any AddTestDevice to test, will it effect my Admob account ? 


thanks a lot :)

Joshua Lagonera (Mobile Ads SDK Team)

unread,
Apr 10, 2017, 3:13:40 AM4/10/17
to Google Mobile Ads SDK Developers
Hi there,

To answer your questions:
  1. The "Pending" warning you see on the Dashboard simply states that AdMob is still in the process of fetching the eCPM values from each Ad Network you mediated with. It should not affect Ad Serving in any way.
  2. You can try playing with the eCPM floor values of the Ad Networks you want to display from. For example, you can try increasing the eCPM floor value of UnityAds if you wish to display mostly ads from UnityAds. Additionally, make sure you have properly integrated the required SDK and Adapters for each Ad Network you mediated with.
  3. Since it is not recommended to add any Test Device to any Ad Request for Rewarded Video Ads, it should not affect your AdMob account.
Hope this clarifies some issues on your end.

Regards,
Joshua Lagonera
Mobile Ads SDK Team

Van Duc Nguyen

unread,
Apr 27, 2017, 4:44:59 AM4/27/17
to Google Mobile Ads SDK Developers
I just encountered this issue. You should install google apis to Android skd. holp it help you.

Vào 21:53:27 UTC+7 Thứ Hai, ngày 20 tháng 3 năm 2017, xive....@gmail.com đã viết:

xive....@gmail.com

unread,
May 5, 2017, 3:52:33 PM5/5/17
to Google Mobile Ads SDK Developers
Hi again, sorry for late response.

That previous RewardAd Unit shows ads which had unityAds and Vungle Mediation, but only :-
1 - first only Google ad is shown , only once.
2 - afters only Vungle  ad is shown, same ad again and again.
3 - UnityAds never works , never shows anything , no fill and no impression in admob and unity Dashboard.

Some images : - 

1- .arr files















2 - .jar files 


 









Things i did : -
1 - Created a new RewardAd Unit ca-app-pub-9621560067356848/5501176616  )
2 - for this new Ad Unit i added the Unity Ad network with same old Game ID and Placement ID ( should i create new placement in Unity Dashboard  ? ) 

some more images : -

1 - new RewardAd Unit ( ca-app-pub-9621560067356848/5501176616  ) 







2 - Unity Dashboard settings 










3 - Unity test mode 









My Android manifest .xml :-

<?xml version="1.0" encoding="utf-8"?>
<!--
This Google Mobile Ads plugin library manifest will get merged with your
application's manifest, adding the necessary activity and permissions
required for displaying ads.
-->
    package="com.google.unity"
    android:versionName="1.0"
    android:versionCode="1">
  <uses-sdk android:minSdkVersion="14"
      android:targetSdkVersion="19" />
 <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <application>
        <activity
            android:name="com.unity3d.ads.adunit.AdUnitActivity"
            android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
            android:hardwareAccelerated="true"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
        <activity
            android:name="com.unity3d.ads.adunit.AdUnitSoftwareActivity"
            android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
            android:hardwareAccelerated="false"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name="com.vungle.publisher.VideoFullScreenAdActivity"
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<activity android:name="com.vungle.publisher.MraidFullScreenAdActivity"
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
    </application>
</manifest>


And Following logs : -

1 - with UnityAdsAdapter.jar ( some times also with unityads-adapter.jar from Sample project)

05-05 23:27:08.244  4590 23365 W Ads     : App does not have the required permissions to get location

05-05 23:27:08.298 25478 25478 I chatty  : uid=1000(system) /system/bin/subsystem_ramdump expire 10 lines

05-05 23:27:08.630  4590 23338 W Ads     : App does not have the required permissions to get location

05-05 23:27:09.686  4590 23342 W Ads     : App does not have the required permissions to get location

05-05 23:27:10.071 24694 24827 I chatty  : uid=10301(com.xivestudios.longland) expire 1 line

05-05 23:27:10.073 24694 24694 I Unity   : Filed Loading Ad : No fill

05-05 23:27:10.073 24694 24694 I Unity   :  

05-05 23:27:10.073 24694 24694 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

05-05 23:27:10.073 24694 24694 I Unity   : 

05-05 23:27:10.078 24694 24694 I Ads     : Starting ad request.

05-05 23:27:10.090 24694 24694 I Unity   : Loading ad..

05-05 23:27:10.090 24694 24694 I Unity   :  

05-05 23:27:10.090 24694 24694 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

05-05 23:27:10.090 24694 24694 I Unity   : 

05-05 23:27:10.119  4590 23363 W Ads     : App does not have the required permissions to get location

05-05 23:27:10.698 24694 24858 W Ads     : Fail to instantiate adapter com.google.ads.mediation.unity.UnityAdapter

05-05 23:27:10.698 24694 24858 W Ads     : android.os.RemoteException

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.internal.zzjz.zzav(Unknown Source)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.internal.zzjz.zzau(Unknown Source)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.internal.zzjz.zzas(Unknown Source)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.internal.zzka$zza.onTransact(Unknown Source)

05-05 23:27:10.698 24694 24858 W Ads     : at android.os.Binder.transact(Binder.java:387)

05-05 23:27:10.698 24694 24858 W Ads     : at hs.a(:com.google.android.gms.DynamiteModulesA:10)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.mediation.client.d.a(:com.google.android.gms.DynamiteModulesA:5)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.reward.c.b(:com.google.android.gms.DynamiteModulesA:37)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.reward.mediation.i.a(:com.google.android.gms.DynamiteModulesA:29)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.util.b.run(:com.google.android.gms.DynamiteModulesA:4)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.util.af.call(:com.google.android.gms.DynamiteModulesA:3)

05-05 23:27:10.698 24694 24858 W Ads     : at com.google.android.gms.ads.internal.util.ag.run(:com.google.android.gms.DynamiteModulesA:3)

05-05 23:27:10.698 24694 24858 W Ads     : at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:423)

05-05 23:27:10.698 24694 24858 W Ads     : at java.util.concurrent.FutureTask.run(FutureTask.java:237)

05-05 23:27:10.698 24694 24858 W Ads     : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)

05-05 23:27:10.698 24694 24858 W Ads     : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)

05-05 23:27:10.698 24694 24858 W Ads     : at java.lang.Thread.run(Thread.java:818)

05-05 23:27:10.699 24694 24694 W Ads     : Failed to load ad: 3

05-05 23:27:10.700 24694 24694 I Unity   : Filed Loading Ad : No fill

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

2 - with unityads-adapter.jar which was in Sample project ( some times also with UnityAdsAdapter.jar)


05-05 23:34:21.288  4590 26937 W Ads     : App does not have the required permissions to get location

05-05 23:34:21.659 26503 26503 W Ads     : Server parameters: {"gameId":"xxxxxxxxxxx","gwhirl_share_location":"1","zoneId":"xxxxxxxxxxxxxxxxxxxxx"}

05-05 23:34:21.664 26503 26503 W Ads     : Failed to load ad: 3

05-05 23:34:21.665 26503 26503 I Unity   : Filed Loading Ad : No fill

05-05 23:34:21.665 26503 26503 I Unity   :  

05-05 23:34:21.665 26503 26503 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

05-05 23:34:21.665 26503 26503 I Unity   : 

05-05 23:34:21.670 26503 26503 I Ads     : Starting ad request.

05-05 23:34:21.671 26503 26503 I Ads     : Use AdRequest.Builder.addTestDevice("xxxxxxxxxxxx") to get test ads on this device.

05-05 23:34:21.680 26503 26503 I Unity   : Loading ad..



05-05 23:38:06.633 28668 28668 W Ads     : Server parameters: {"gameId":"xxx","gwhirl_share_location":"1","zoneId":"xxxxx"}

05-05 23:38:06.653 28668 28668 D UnityAds: com.unity3d.ads.cache.CacheDirectory.getCacheDirectory() (line:35) :: Unity Ads is using external cache directory: /storage/emulated/0/Android/data/com.xivestudios.longland/cache/UnityAdsCache

05-05 23:38:06.667 28668 28668 D UnityAds: com.unity3d.ads.misc.Utilities.writeFile() (line:101) :: Wrote file: /storage/emulated/0/Android/data/com.xivestudios.longland/cache/UnityAdsCache/UnityAdsStorage-public-data.json

05-05 23:38:06.668 28668 28668 D UnityAds: com.unity3d.ads.device.Storage.sendEvent() (line:216) :: Couldn't send storage event to WebApp

05-05 23:38:06.670 28668 28668 D UnityAds: com.unity3d.ads.UnityAds.initialize() (line:106) :: ENTERED METHOD

05-05 23:38:06.671 28668 28668 I UnityAds: com.unity3d.ads.UnityAds.initialize() (line:145) :: Initializing Unity Ads 2.1.0 (2100) with game id xxxx in production mode

05-05 23:38:06.675 28668 28668 I UnityAds: com.unity3d.ads.UnityAds.initialize() (line:157) :: Unity Ads environment check OK

05-05 23:38:06.681 28668 28668 W Ads     : Server parameters: {"gameId":"xxx","gwhirl_share_location":"1","zoneId":"xxxxxxxx"}

05-05 23:38:06.740 28668 28668 D EgretLoader: EgretLoader(Context context)

05-05 23:38:06.740 28668 28668 D EgretLoader: The context is not activity

05-05 23:38:06.789 28668 29058 I UnityAds: com.unity3d.ads.configuration.InitializeThread$InitializeStateConfig.execute() (line:205) :: Unity Ads init: load configuration from https://config.unityads.unity3d.com/webview/2.1.0/release/config.json

05-05 23:38:06.818 28668 28668 I cr_Ime  : ImeThread is enabled.

05-05 23:38:06.831 28668 28668 D EgretLoader: EgretLoader(Context context)

05-05 23:38:06.831 28668 28668 D EgretLoader: The context is not activity

05-05 23:38:06.851 28668 28668 I cr_Ime  : ImeThread is enabled.

05-05 23:38:06.854 28668 28668 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver

05-05 23:38:06.857 28668 28668 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 28668

05-05 23:38:06.869 28668 28668 E chromium: [ERROR:interface_registry.cc(104)] Failed to locate a binder for interface: autofill::mojom::PasswordManagerDriver

05-05 23:38:06.902 28668 28668 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 28668

05-05 23:38:06.971   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]

05-05 23:38:07.176 28668 28668 I Ads     : Ad finished loading.

05-05 23:38:07.233   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]

05-05 23:38:07.303 28668 28668 I Ads     : Ad finished loading.

05-05 23:38:07.305 28668 28668 I Unity   : InterstitialLoaded event received

05-05 23:38:07.305 28668 28668 I Unity   :  

05-05 23:38:07.305 28668 28668 I Unity   : (Filename: ./artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51)

05-05 23:38:07.305 28668 28668 I Unity   : 

05-05 23:38:07.360   724   974 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register

05-05 23:38:07.362   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]

05-05 23:38:07.415 28668 29058 I UnityAds: com.unity3d.ads.configuration.InitializeThread$InitializeStateLoadCache.execute() (line:258) :: Unity Ads init: webapp loaded from local cache

05-05 23:38:07.442  1424  3323 I ActivityManager: Killing 28244:com.android.browser/u0a146 (adj 15): empty #17

05-05 23:38:07.461 28668 28668 D EgretLoader: EgretLoader(Context context)

05-05 23:38:07.461 28668 28668 D EgretLoader: The context is not activity

05-05 23:38:07.515 28668 28668 I cr_Ime  : ImeThread is enabled.

05-05 23:38:07.597  1424  3839 D ActivityManager: cleanUpApplicationRecord -- 28244

05-05 23:38:07.616 28668 28668 W cr_BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 28668

05-05 23:38:07.985 28668 29056 E UnityAds: com.unity3d.ads.device.Device.isAppInstalled() (line:189) :: Couldn't find package: com.xiaomi.gamecenter: com.xiaomi.gamecenter

05-05 23:38:08.009  3578  3874 I XiaomiFirewall: firewall pkgName:com.xiaomi.discover, result:0x0

05-05 23:38:08.130 28668 29056 I UnityAds: com.unity3d.ads.api.Sdk.logInfo() (line:70) :: Unity Ads cache: Keeping 8 cached files (3164.7529296875kB)

05-05 23:38:11.137 28668 29056 I UnityAds: com.unity3d.ads.api.Sdk.logInfo() (line:70) :: Received configuration with 2 placements


05-05 23:38:11.971   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XTWiFi-PE] unknown deliver target [OS-Agent]

05-05 23:38:12.091 28668 29056 I UnityAds: com.unity3d.ads.api.Sdk.logInfo() (line:70) :: Unity Ads server returned game advertisement for AB Group 0

05-05 23:38:12.234   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]

05-05 23:38:12.362   724   974 W XTCC-5.1.0.13: [CS-RIL-LISTENER] timerCallback fired for ril update registering, re-register

05-05 23:38:12.363   636   713 E QCALOG  : [MessageQ] ProcessNewMessage: [XT-CS] unknown deliver target [OS-Agent]

05-05 23:38:12.388   600 14180 V MediaPlayerService: Create new media retriever from pid 28668

05-05 23:38:12.391   600  3029 I ExtendedUtils: printFileName fd(54) -> /storage/emulated/0/Android/data/com.xivestudios.longland/cache/UnityAdsCache/UnityAdsCache-4f316711a1cf607c103f068002b77ad8c5001d966dcfe99de4858424ea73c03b.mp4


-----------------------------------



Some Questions : -

1) why unity ads wont work, i am missing something ? 

2) why do i always receive ads from Vungle and just once from Google, even after playing with eCPM ? 

3) should i create new placement for every new Ad unit i make ?

4) Can i create use two  Rewarded Ad in one app with different  unit IDs ? like : RewardBasedVideoAd rewardView1, rewardView2 ; ?

5) should i call rewardView1.LoadAd ( ) inside HandlerOnAdRewarded ( ) and HandlerOnAdFailedToLoad ( ) ? is this correct way ?

6)  Interstitial.IsLoaded () shows true , but when show() is called, ad is black with just close. how to know if ad is loaded properly ?

7) banner ad is shown/hidden at bottom and Interstitial or Rewarded  show() is called , is there any violation ?

8) should i call Interstitial .LoadAd ( ) inside HandlerOnAdRewarded ( ) and HandlerOnAdFailedToLoad ( ) ? is this correct way ?

9) Destroy() , when should i call it ? is it necessary for all type of Ads? 
 
10) how to receive test ads on all devices ? AddTestDevice(AdRequest.TestDeviceSimulator) ?



those were lot of question , thanks a lot !!

Joshua Lagonera (Mobile Ads SDK Team)

unread,
May 8, 2017, 3:53:44 AM5/8/17
to Google Mobile Ads SDK Developers
Hi there,

A few things to note on the logs your provided. 
  • On the first set of logs, the error "Fail to instantiate adapter" means that the SDK and/or adapter was not properly integrated with your Unity3D Project, so I would suggest you double check your integration.
  • On the second set of logs, the Ad Request returned your UnityAds configuration information (as prefixed by "Server parameters"), as well as logs from the UnityAds adapter which may indicate that mediation was successful. However, it may not always mean that ads from UnityAds will always be displayed.
That said, to directly answer your questions:

1) why unity ads wont work, i am missing something ? 

As previously stated, a successful mediation may not always indicate that an Ad is available. Factors, such as Ad Inventory for that specific Ad Network, still play when you create an Ad Request. However, you can try further increasing the eCPM value of UnityAds (e.g. around 10$) to increase its priority on the mediation stack.

2) why do i always receive ads from Vungle and just once from Google, even after playing with eCPM ? 

See above.

3) should i create new placement for every new Ad unit i make ?

Ideally, yes. However, this should, also, not be necessary as you can use the same Placement ID for every Ad Unit ID.

4) Can i create use two  Rewarded Ad in one app with different  unit IDs ? like : RewardBasedVideoAd rewardView1, rewardView2 ; ?

It is certainly possible to use different Ad Unit IDs in a single application. However, you should still be aware of our Implementation Guidelines when using different types and/or multiple ads in your application.

5) should i call rewardView1.LoadAd ( ) inside HandlerOnAdRewarded ( ) and HandlerOnAdFailedToLoad ( ) ? is this correct way ?

I would not be able to comment on this specific implementation since it will be dependent on your application. However, this sort of implementation should have no problem.

6)  Interstitial.IsLoaded () shows true , but when show() is called, ad is black with just close. how to know if ad is loaded properly ?

The .isLoaded() should be a good indicator that an Ad has been requested and is able to be shown properly to the user. However, the "black" ad you see may be a creative issue. If you need further assistance on this, feel free to create a new thread and we will continue our discussion from there.

7) banner ad is shown/hidden at bottom and Interstitial or Rewarded  show() is called , is there any violation ?

I believe this question relates more to our policies rather than our SDK. I would recommend you confirm if any violation is being made for this specific implementation from our Product Support Team. Additionally, you can consult our Help Center on Implementation Guidelines for additional guidance.

8) should i call Interstitial .LoadAd ( ) inside HandlerOnAdRewarded ( ) and HandlerOnAdFailedToLoad ( ) ? is this correct way ?

See answer on question number 5. 

9) Destroy() , when should i call it ? is it necessary for all type of Ads? 

Ideally, you should call the Destroy() method when you no longer need the ad, i.e. when changing screens. Calling this method will free up any possible memory leaks from your application. 
 
10) how to receive test ads on all devices ? AddTestDevice(AdRequest.TestDeviceSimulator) ?

Currently, there is no possible way to receive test ads on All Devices via the AddTestDevice() method since you would need the unique ID for each device (which is shown in the logs) in order to display test Ads.

Hope this clears any confusion on your end.

Regards,
Joshua Lagonera
Mobile Ads SDK Team

xive....@gmail.com

unread,
May 24, 2017, 11:17:29 AM5/24/17
to Google Mobile Ads SDK Developers
Hello again,

It Seems none of the users are getting UnityAds, so i think i should leave it alone for now. Rest everything works fine (banner, Interstitial - used to crash game but solved).

New Question :-

- The new Google Mobile Ads Unity Plugin v3.5.0 , is there any possibility that it can mess up with   GooglePlayGamesPlugin-0.9.38a ?



Thanks for all the help :) 


Joshua Lagonera (Mobile Ads SDK Team)

unread,
May 24, 2017, 10:41:46 PM5/24/17
to Google Mobile Ads SDK Developers
Hi there,

The two plugins you provided are two separate and independent plugins. The Google Mobile Ads Unity Plugin should not conflict with other plugins. Additionally, it seems you have already opened your own thread on StackOverflow. I would suggest that you continue from there.

Moving forward, if you have new issues you would like help with, please create a new thread describing the issue and we will continue our discussion thereon. 

Regards,
Joshua Lagonera
Mobile Ads SDK Team

Reply all
Reply to author
Forward
0 new messages