can't show test ads on Android emulator

1,590 views
Skip to first unread message

李习斌

unread,
Jan 14, 2020, 5:12:17 AM1/14/20
to Google Mobile Ads SDK Developers
I'm trying to implement a banner ad according to the guide(https://developers.google.com/admob/android/quick-start)

here is my code:

MainActivity.java:

        MobileAds.initialize(this, new OnInitializationCompleteListener() {
            @Override
            public void onInitializationComplete(InitializationStatus initializationStatus) {
            }
        });

        mAdView = findViewById(R.id.adView);

        // I'm not sure if I need to replace DEVICE_ID_EMULATOR with a real device id, but I don't know how to get the device id from an Android emulator
        AdRequest adRequest = new AdRequest.Builder()
                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
                .build();

        mAdView.loadAd(adRequest);

values/strings.xml:

<resources>
    <string name="app_name">恋爱每日鲜</string>

    <string name="notebook">点滴</string>
    <string name="anniversary">纪念日</string>
    <string name="our">我们</string>

    <string name="day">今天是相恋的第 %1$s 天</string>

    <!-- This is an ad unit ID for a test ad. Replace with your own banner ad unit id. -->
    <string name="banner_ad_unit_id">ca-app-pub-3940256099942544/6300978111</string>
</resources>


layout/activity_main.xml:

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adSize="BANNER"
        ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
    </com.google.android.gms.ads.AdView>


but when I run app on an Android emulator, there is no test ads.
and here is logcat log:

2020-01-14 17:31:29.247 7581-7581/? I/mple.accountin: Not late-enabling -Xcheck:jni (already on)
2020-01-14 17:31:29.274 7581-7581/? E/mple.accountin: Unknown bits set in runtime_flags: 0x8000
2020-01-14 17:31:29.275 7581-7581/? W/mple.accountin: Unexpected CPU variant for X86 using defaults: x86
2020-01-14 17:31:29.348 7581-7581/com.example.accounting I/mple.accountin: The ClassLoaderContext is a special shared library.
2020-01-14 17:31:29.511 7581-7628/com.example.accounting D/libEGL: Emulator has host GPU support, qemu.gles is set to 1.
2020-01-14 17:31:29.511 7581-7628/com.example.accounting W/libc: Unable to set property "qemu.gles" to "1": connection failed; errno=13 (Permission denied)
2020-01-14 17:31:29.518 7581-7628/com.example.accounting D/libEGL: loaded /vendor/lib/egl/libEGL_emulation.so
2020-01-14 17:31:29.521 7581-7628/com.example.accounting D/libEGL: loaded /vendor/lib/egl/libGLESv1_CM_emulation.so
2020-01-14 17:31:29.500 7581-7581/com.example.accounting W/RenderThread: type=1400 audit(0.0:39): avc: denied { write } for name="property_service" dev="tmpfs" ino=8445 scontext=u:r:untrusted_app_27:s0:c136,c256,c512,c768 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0
2020-01-14 17:31:29.536 7581-7628/com.example.accounting D/libEGL: loaded /vendor/lib/egl/libGLESv2_emulation.so
2020-01-14 17:31:29.639 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2020-01-14 17:31:29.640 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2020-01-14 17:31:29.695 7581-7626/com.example.accounting D/HostConnection: HostConnection::get() New Host Connection established 0xd7256190, tid 7626
2020-01-14 17:31:29.696 7581-7626/com.example.accounting D/HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV420_888_to_NV21 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_3_0 
2020-01-14 17:31:29.699 7581-7626/com.example.accounting W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
2020-01-14 17:31:29.707 7581-7626/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 0 (0) 0 0
2020-01-14 17:31:29.708 7581-7626/com.example.accounting D/EGL_emulation: eglCreateContext: 0xd721a2a0: maj 3 min 0 rcv 3
2020-01-14 17:31:29.712 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:29.719 7581-7625/com.example.accounting W/mple.accountin: Unsupported class loader
2020-01-14 17:31:29.728 7581-7625/com.example.accounting I/DynamiteModule: Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:20160
2020-01-14 17:31:29.728 7581-7625/com.example.accounting I/DynamiteModule: Selected remote version of com.google.android.gms.ads.dynamite, version >= 20160
2020-01-14 17:31:29.728 7581-7625/com.example.accounting V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils
2020-01-14 17:31:29.739 7581-7631/com.example.accounting W/DynamiteModule: Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2020-01-14 17:31:29.739 7581-7626/com.example.accounting W/Gralloc3: mapper 3.x is not supported
2020-01-14 17:31:29.746 7581-7626/com.example.accounting D/HostConnection: createUnique: call
2020-01-14 17:31:29.746 7581-7626/com.example.accounting D/HostConnection: HostConnection::get() New Host Connection established 0xd72562d0, tid 7626
2020-01-14 17:31:29.748 7581-7626/com.example.accounting D/HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV420_888_to_NV21 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_3_0 
2020-01-14 17:31:29.749 7581-7631/com.example.accounting I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:0 and remote module com.google.android.gms.measurement.dynamite:8
2020-01-14 17:31:29.749 7581-7631/com.example.accounting I/DynamiteModule: Selected remote version of com.google.android.gms.measurement.dynamite, version >= 8
2020-01-14 17:31:29.749 7581-7631/com.example.accounting V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils
2020-01-14 17:31:29.782 7581-7626/com.example.accounting D/eglCodecCommon: allocate: Ask for block of size 0x1000
2020-01-14 17:31:29.782 7581-7626/com.example.accounting D/eglCodecCommon: allocate: ioctl allocate returned offset 0x3ffff4000 size 0x2000
2020-01-14 17:31:29.802 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:29.821 7581-7626/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 0 (0) 1 0
2020-01-14 17:31:29.828 7581-7631/com.example.accounting I/mple.accountin: The ClassLoaderContext is a special shared library.
2020-01-14 17:31:29.855 7581-7625/com.example.accounting I/mple.accountin: The ClassLoaderContext is a special shared library.
2020-01-14 17:31:29.867 7581-7631/com.example.accounting W/DynamiteModule: Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2020-01-14 17:31:30.000 7581-7640/com.example.accounting I/FA-Ads: App measurement is starting up, version: 16250
2020-01-14 17:31:30.000 7581-7640/com.example.accounting I/FA-Ads: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
2020-01-14 17:31:30.666 7581-7581/com.example.accounting W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@4f855ae
2020-01-14 17:31:30.845 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:32.639 7581-7581/com.example.accounting W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@d448756
2020-01-14 17:31:32.742 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getUnsafe()Lsun/misc/Unsafe; (greylist,core-platform-api, linking, allowed)
2020-01-14 17:31:32.742 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->objectFieldOffset(Ljava/lang/reflect/Field;)J (greylist,core-platform-api, linking, allowed)
2020-01-14 17:31:32.743 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
2020-01-14 17:31:32.743 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:32.748 7581-7705/com.example.accounting D/NetworkSecurityConfig: Using Network Security Config from resource network_security_config debugBuild: true
2020-01-14 17:31:32.773 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:32.802 7581-7581/com.example.accounting I/WebViewFactory: Loading com.google.android.webview version 74.0.3729.185 (code 373018518)
2020-01-14 17:31:32.806 7581-7581/com.example.accounting I/mple.accountin: The ClassLoaderContext is a special shared library.
2020-01-14 17:31:32.812 7581-7581/com.example.accounting I/mple.accountin: The ClassLoaderContext is a special shared library.
2020-01-14 17:31:32.841 7581-7581/com.example.accounting I/cr_LibraryLoader: Time to load native libraries: 3 ms (timestamps 496-499)
2020-01-14 17:31:32.862 7581-7581/com.example.accounting I/chromium: [INFO:library_loader_hooks.cc(50)] Chromium logging enabled: level = 0, default verbosity = 0
2020-01-14 17:31:32.863 7581-7581/com.example.accounting I/cr_LibraryLoader: Expected native library version number "74.0.3729.185", actual native library version number "74.0.3729.185"
2020-01-14 17:31:32.882 7581-7715/com.example.accounting W/cr_ChildProcLH: Create a new ChildConnectionAllocator with package name = com.google.android.webview, sandboxed = true
2020-01-14 17:31:32.886 7581-7715/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/content/Context;->bindServiceAsUser(Landroid/content/Intent;Landroid/content/ServiceConnection;ILandroid/os/Handler;Landroid/os/UserHandle;)Z (greylist, reflection, allowed)
2020-01-14 17:31:32.895 7581-7581/com.example.accounting I/cr_BrowserStartup: Initializing chromium process, singleProcess=false
2020-01-14 17:31:32.906 7581-7581/com.example.accounting E/chromium: [ERROR:filesystem_posix.cc(89)] stat /data/user/0/com.example.accounting/cache/WebView/Crashpad: No such file or directory (2)
2020-01-14 17:31:32.906 7581-7581/com.example.accounting E/chromium: [ERROR:filesystem_posix.cc(62)] mkdir /data/user/0/com.example.accounting/cache/WebView/Crashpad: No such file or directory (2)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker;-><init>(Landroid/content/Context;I)V (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker;->logEvent(Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;)V (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionStarted(I)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(II)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(IILandroid/view/textclassifier/TextClassification;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionModified(IILandroid/view/textclassifier/TextSelection;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionAction(III)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.008 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent;->selectionAction(IIILandroid/view/textclassifier/TextClassification;)Landroid/view/textclassifier/logging/SmartSelectionEventTracker$SelectionEvent; (greylist, reflection, allowed)
2020-01-14 17:31:33.054 7581-7741/com.example.accounting W/cr_media: Requires BLUETOOTH permission
2020-01-14 17:31:33.063 7581-7747/com.example.accounting D/HostConnection: HostConnection::get() New Host Connection established 0xbf9280b0, tid 7747
2020-01-14 17:31:33.063 7581-7747/com.example.accounting D/HostConnection: HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_vulkan ANDROID_EMU_deferred_vulkan_commands ANDROID_EMU_vulkan_null_optional_strings ANDROID_EMU_vulkan_create_resources_with_requirements ANDROID_EMU_YUV420_888_to_NV21 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_3_0 
2020-01-14 17:31:33.066 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:33.071 7581-7747/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 0 (0) 0 0
2020-01-14 17:31:33.071 7581-7747/com.example.accounting D/EGL_emulation: eglCreateContext: 0xdf416fa0: maj 3 min 0 rcv 3
2020-01-14 17:31:33.072 7581-7747/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xdf416fa0: ver 3 0 (tinfo 0xbfab3c20)
2020-01-14 17:31:33.097 7581-7736/com.example.accounting W/Ads: Invoke Firebase method getInstance error.
2020-01-14 17:31:33.097 7581-7736/com.example.accounting W/Ads: The Google Mobile Ads SDK will not integrate with Firebase. Admob/Firebase integration requires the latest Firebase SDK jar, but Firebase SDK is either missing or out of date
2020-01-14 17:31:33.140 7581-7581/com.example.accounting I/Ads: This request is sent from a test device.
2020-01-14 17:31:33.159 7581-7747/com.example.accounting I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
2020-01-14 17:31:33.166 7581-7747/com.example.accounting W/cr_MediaCodecUtil: HW encoder for video/avc is not available on this device.
2020-01-14 17:31:33.215 7581-7705/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:33.223 7581-7581/com.example.accounting I/DynamiteModule: Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:20160
2020-01-14 17:31:33.223 7581-7581/com.example.accounting I/DynamiteModule: Selected remote version of com.google.android.gms.ads.dynamite, version >= 20160
2020-01-14 17:31:33.223 7581-7581/com.example.accounting V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils
2020-01-14 17:31:33.278 7581-7581/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:33.281 7581-7708/com.example.accounting D/zzei: File /data/user/0/com.example.accounting/cache/1570054248636.dex not found. No need for deletion
2020-01-14 17:31:33.292 7581-7774/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.294 7581-7772/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.311 7581-7775/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.318 7581-7773/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.322 7581-7771/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.326 7581-7776/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.331 7581-7777/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.336 7581-7778/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.339 7581-7780/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.340 7581-7781/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.344 7581-7779/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.350 7581-7782/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.367 7581-7783/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.374 7581-7785/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.375 7581-7784/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.386 7581-7787/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.406 7581-7788/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.406 7581-7790/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.413 7581-7794/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.414 7581-7791/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.414 7581-7795/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.421 7581-7797/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.423 7581-7799/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.429 7581-7796/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.429 7581-7747/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 0 (0) 0 0
2020-01-14 17:31:33.430 7581-7747/com.example.accounting D/EGL_emulation: eglCreateContext: 0xd3db1e00: maj 3 min 0 rcv 3
2020-01-14 17:31:33.430 7581-7581/com.example.accounting I/Choreographer: Skipped 47 frames!  The application may be doing too much work on its main thread.
2020-01-14 17:31:33.430 7581-7747/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd3db1e00: ver 3 0 (tinfo 0xbfab3c20)
2020-01-14 17:31:33.439 7581-7747/com.example.accounting E/eglCodecCommon: glUtilsParamSize: unknow param 0x000088ef
2020-01-14 17:31:33.440 7581-7747/com.example.accounting E/eglCodecCommon: glUtilsParamSize: unknow param 0x000088ef
2020-01-14 17:31:33.444 7581-7798/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.449 7581-7747/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 1 (1) 0 0
2020-01-14 17:31:33.498 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:33.511 7581-7626/com.example.accounting I/OpenGLRenderer: Davey! duration=855ms; Flags=1, IntendedVsync=530303389636, Vsync=531086722938, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=531087924000, AnimationStart=531088035300, PerformTraversalsStart=531088427200, DrawStart=531123051900, SyncQueued=531146303800, SyncStart=531156533600, IssueDrawCommandsStart=531156660400, SwapBuffers=531163738400, FrameCompleted=531168663800, DequeueBufferDuration=310000, QueueBufferDuration=518000, 
2020-01-14 17:31:33.514 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:33.524 7581-7597/com.example.accounting I/mple.accountin: NativeAlloc concurrent copying GC freed 20454(1833KB) AllocSpace objects, 8(284KB) LOS objects, 49% free, 3654KB/7308KB, paused 1.886ms total 295.251ms
2020-01-14 17:31:33.525 7581-7774/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 233.887ms
2020-01-14 17:31:33.526 7581-7772/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 231.516ms
2020-01-14 17:31:33.526 7581-7771/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 204.066ms
2020-01-14 17:31:33.526 7581-7777/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 195.205ms
2020-01-14 17:31:33.527 7581-7780/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 187.169ms
2020-01-14 17:31:33.527 7581-7778/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 191.120ms
2020-01-14 17:31:33.527 7581-7779/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 182.707ms
2020-01-14 17:31:33.527 7581-7782/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 176.693ms
2020-01-14 17:31:33.527 7581-7775/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.527 7581-7776/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.527 7581-7785/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 153.268ms
2020-01-14 17:31:33.527 7581-7787/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 141.865ms
2020-01-14 17:31:33.527 7581-7784/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7794/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 114.207ms
2020-01-14 17:31:33.528 7581-7796/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 98.787ms
2020-01-14 17:31:33.528 7581-7790/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 121.440ms
2020-01-14 17:31:33.528 7581-7795/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 113.753ms
2020-01-14 17:31:33.528 7581-7776/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7775/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7783/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7784/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7788/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7781/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.528 7581-7791/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.529 7581-7797/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 107.433ms
2020-01-14 17:31:33.530 7581-7798/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 84.621ms
2020-01-14 17:31:33.530 7581-7784/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 155.217ms
2020-01-14 17:31:33.530 7581-7788/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.530 7581-7791/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.531 7581-7781/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.531 7581-7799/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.531 7581-7773/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.532 7581-7775/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.533 7581-7783/com.example.accounting I/mple.accountin: Waiting for a blocking GC ClassLinker
2020-01-14 17:31:33.534 7581-7776/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 209.000ms
2020-01-14 17:31:33.534 7581-7791/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 120.834ms
2020-01-14 17:31:33.535 7581-7788/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 128.932ms
2020-01-14 17:31:33.535 7581-7773/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 216.594ms
2020-01-14 17:31:33.535 7581-7799/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 112.153ms
2020-01-14 17:31:33.535 7581-7781/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 194.714ms
2020-01-14 17:31:33.542 7581-7747/com.example.accounting E/eglCodecCommon: glUtilsParamSize: unknow param 0x000088ef
2020-01-14 17:31:33.542 7581-7747/com.example.accounting E/eglCodecCommon: glUtilsParamSize: unknow param 0x000088ef
2020-01-14 17:31:33.544 7581-7775/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 224.459ms
2020-01-14 17:31:33.544 7581-7783/com.example.accounting I/mple.accountin: WaitForGcToComplete blocked ClassLinker on ClassLinker for 176.629ms
2020-01-14 17:31:33.545 7581-7747/com.example.accounting D/eglCodecCommon: setVertexArrayObject: set vao to 2 (2) 0 0
2020-01-14 17:31:33.703 7581-7626/com.example.accounting D/EGL_emulation: eglMakeCurrent: 0xd721a2a0: ver 3 0 (tinfo 0xd720f080)
2020-01-14 17:31:33.747 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, linking, allowed)
2020-01-14 17:31:33.747 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.747 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
2020-01-14 17:31:33.748 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, linking, allowed)
2020-01-14 17:31:33.751 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.752 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, linking, allowed)
2020-01-14 17:31:33.759 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
2020-01-14 17:31:33.762 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, linking, allowed)
2020-01-14 17:31:33.768 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->allocateInstance(Ljava/lang/Class;)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.768 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->arrayBaseOffset(Ljava/lang/Class;)I (greylist,core-platform-api, linking, allowed)
2020-01-14 17:31:33.769 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->arrayIndexScale(Ljava/lang/Class;)I (greylist, linking, allowed)
2020-01-14 17:31:33.769 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->peekLong(JZ)J (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->pokeLong(JJZ)V (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->pokeInt(JIZ)V (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->peekInt(JZ)I (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->pokeByte(JB)V (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->peekByte(J)B (greylist, reflection, allowed)
2020-01-14 17:31:33.770 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->pokeByteArray(J[BII)V (greylist, reflection, allowed)
2020-01-14 17:31:33.771 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->peekByteArray(J[BII)V (greylist, reflection, allowed)
2020-01-14 17:31:33.774 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Llibcore/io/Memory;->pokeByte(JB)V (greylist, linking, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden field Ljava/nio/Buffer;->address:J (greylist, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, reflection, allowed)
2020-01-14 17:31:33.775 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, reflection, allowed)
2020-01-14 17:31:33.776 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.780 7581-7707/com.example.accounting I/chatty: uid=10136(com.example.accounting) AdWorker(Defaul identical 1 line
2020-01-14 17:31:33.785 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
2020-01-14 17:31:33.845 7581-7707/com.example.accounting W/mple.accountin: Accessing hidden method Lsun/misc/Unsafe;->compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z (greylist, linking, allowed)
2020-01-14 17:31:33.853 7581-7705/com.example.accounting W/Ads: Not retrying to fetch app settings


Mobile Ads SDK Forum Advisor Prod

unread,
Jan 14, 2020, 9:55:28 AM1/14/20
to lixib...@gmail.com, google-adm...@googlegroups.com
Hi there,

Thank you for reaching out to us. Let me do the best I can to assist you in this.

As per checking, it seems that there is no issue with your implementation. With this, could you please run your project on an actual device with an enabled test device?

Regards,
Teejay Pimentel
Mobile Ads SDK Team

ref:_00D1U1174p._5001USwOlT:ref
Reply all
Reply to author
Forward
0 new messages