AdMob error, need some help...

930 views
Skip to first unread message

dorian....@gmail.com

unread,
Jan 25, 2016, 5:06:51 AM1/25/16
to Google Mobile Ads SDK Developers
Hi, i try since 1 week to implement admob in my libgdx/gradle ap, but all time i get this error : 
W/GooglePlayServicesUtil Google Play services is missing.
E
/Ads JS: Uncaught ReferenceError: AFMA_buildAdURL is not defined (:1)
E/Ads JS: Not allowed to load local resource: file:///android_asset/webkit/android-weberror.png (data:text/html,chromewebdata:12)
I try to run my app in a real phone but no ads showing...

Here is my build.gradle :
buildscript {
    repositories
{
        mavenCentral
()
        maven
{ url "https://oss.sonatype.org/content/repositories/snapshots/" }
   
}
    dependencies
{
        classpath
'com.android.tools.build:gradle:1.2.3'
        classpath 'org.robovm:robovm-gradle-plugin:1.9.0'
    }
}

allprojects
{
    apply
plugin: "eclipse"
    apply plugin: "idea"

    version = '1.0'
    ext {
        appName
= "Hunter of Picks"
        gdxVersion = '1.8.0'
        roboVMVersion = '1.9.0'
        box2DLightsVersion = '1.4'
        ashleyVersion = '1.6.0'
        aiVersion = '1.6.0'
        admobVersion = '8.4.0'
    }

    repositories
{
        mavenCentral
()
        maven
{ url "https://oss.sonatype.org/content/repositories/snapshots/" }
        maven
{ url "https://oss.sonatype.org/content/repositories/releases/" }
   
}
}

project
(":desktop") {
    apply
plugin: "java"


    dependencies {
        compile project
(":core")
        compile
"com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
        compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
        compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
    }
}

project
(":android") {
    apply
plugin: "android"

    configurations { natives }

    dependencies
{
        compile project
(":core")
        compile
"com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
        natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
        natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
        natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
        compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
        natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
        natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
        natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
        compile "com.android.support:support-v4:23.1.1"
        compile 'com.google.android.gms:play-services:7.8.0'
    }
}

project
(":ios") {
    apply
plugin: "java"
    apply plugin: "robovm"


    dependencies {
        compile project
(":core")
        compile
"org.robovm:robovm-rt:$roboVMVersion"
        compile "org.robovm:robovm-cocoatouch:$roboVMVersion"
        compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
        compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
        compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
    }
}

project
(":core") {
    apply
plugin: "java"


    dependencies {
        compile
"com.badlogicgames.gdx:gdx:$gdxVersion"
        compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
    }
}

tasks.eclipse.doLast {
   
delete ".project"
}

And here my code :
package com.dorianb.hunterofpicks.main.android;

import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import com.dorianb.hunterofpicks.main.Main;
import com.google.android.gms.ads.AdListener;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdSize;
import com.google.android.gms.ads.AdView;

import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.RelativeLayout;

public class AndroidLauncher extends AndroidApplication {
   
private static final String TAG = "AndroidLauncher";
   private final int SHOW_ADS = 1;
   private final int HIDE_ADS = 0;
   protected AdView adView;
   
   Handler handler = new Handler(){
     
     
@Override
      public void handleMessage(Message msg){
         
switch(msg.what){
         
case SHOW_ADS:
           
adView.setVisibility(View.VISIBLE);
            break;
         case HIDE_ADS:
           
adView.setVisibility(View.GONE);
            break;
         }
     
}
   
};
   
   @Override
   protected void onCreate (Bundle savedInstanceState) {
     
super.onCreate(savedInstanceState);
     
      RelativeLayout layout = new RelativeLayout(this);
      AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
      View gameView = initializeForView(new Main(), config);
      layout.addView(gameView);
     
      adView = new AdView(this);
     
      adView.setAdListener(new AdListener(){
         
@Override
         public void onAdLoaded(){
           
int visiblity = adView.getVisibility();
            adView.setVisibility(View.GONE);
            adView.setVisibility(visiblity);
            Log.i(TAG, "Ad loaded...");
         }
     
});
      adView.setAdSize(AdSize.SMART_BANNER);
      adView.setAdUnitId("***************************");
     
      AdRequest.Builder builder = new AdRequest.Builder();
      //run once before uncommenting the following line. Get TEST device ID from the logcat logs.
      //builder.addTestDevice("INSERT TEST DEVICE ID HERE");
      RelativeLayout.LayoutParams adParams = new RelativeLayout.LayoutParams(
           
LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT
      );
     
      layout.addView(adView, adParams);
      adView.loadAd(builder.build());
     
      setContentView(layout);
     
     
      //initialize(new Main(), config);
   }



}

I hope you can help me.

dorian....@gmail.com

unread,
Jan 25, 2016, 5:09:50 AM1/25/16
to Google Mobile Ads SDK Developers
My sdk version : latest,
I test my app with a nexus 7 emulator,
I use Intellij idéa.

Veer Arjun Busani

unread,
Jan 25, 2016, 10:41:37 AM1/25/16
to Google Mobile Ads SDK Developers
Hi Dorian,

It looks like you are using libgdx, for which we do not currently provide support for. But I would suggest you to update the Google Play Service dependency to - 'com.google.android.gms:play-services-ads:8.3.0'. Also you can first build using our sample app just to ensure that your Ad Unit ID is working properly. Also make sure that you have Google Repository in place. 

Thanks,
Veer Arjun Busani
Mobile Ads SDK Team

dorian....@gmail.com

unread,
Jan 25, 2016, 12:05:10 PM1/25/16
to Google Mobile Ads SDK Developers
Hi,

When i  update the Google Play Service dependency to - 'com.google.android.gms:play-services-ads:8.3.0' i got the same errors, i have google repository installed in my sdk (rev 24) and your sample app (banner) don't work with my Ad Unit ID, i got the same errors. Then it's the Ad Unit ID who have some problems, how can i fix that ? Thanks,

Dorian.

Veer Arjun Busani

unread,
Jan 25, 2016, 1:12:41 PM1/25/16
to Google Mobile Ads SDK Developers
Hi Dorian,

Were you able to test our sample app without implementing libgdx? If you still see the issue do send us your Ad Unit ID in question. I'll be able to confirm this from our end. Also try to create a new Ad Unit ID to see if that is working for you. 

dorian....@gmail.com

unread,
Jan 25, 2016, 1:16:36 PM1/25/16
to Google Mobile Ads SDK Developers
Hum, i run the sample app (banner) with the default Ad Unit ID and errors still here, then isn't my Ad Unit ID but my sdk or other... I'm desperate...

Veer Arjun Busani

unread,
Jan 25, 2016, 2:08:30 PM1/25/16
to Google Mobile Ads SDK Developers
Hi Dorian,

In that case, I'm inclined to think that there might be a few missing jars or libraries. Here are a few suggestions - 
  • First, I would highly recommend that you try to use Android Studio and check all the relevant dependencies are downloaded. You can use the SDK Manager to check if all the latest versions are downloaded and that Google Play Services is updated as well. Then using Android Studio, try to run our sample app.
  • Next would be to look into the ProGuard settings and to check whether it's not obfuscating anything that could cause an issue.
  • Then, check whether the device that you are trying to test on does not have any custom ROM. Also see if you are able to retrieve ads by running on an emulator in Android Studio. If you think it's device specific, you could factory reset to see if the issue persists.
You could also get back with us with the complete stack trace as it would be more helpful in debugging.

dorian....@gmail.com

unread,
Jan 25, 2016, 4:44:28 PM1/25/16
to Google Mobile Ads SDK Developers
Check if all latest versions are downloaded -> OK (no problem)
Run sample app in Android Studio -> OK (Same errors)

The full logs here : 
01-25 21:32:05.902 0-54/? I/qemu-props: connected to 'boot-properties' qemud service.
01-01 00:00:00.230 48-48/? W/auditd: type=2000 audit(0.0:1): initialized
01-25 21:32:04.550 48-48/? I/auditd: type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295
01-25 21:32:04.560 48-48/? W/auditd: type=1404 audit(0.0:3): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
01-25 21:32:05.903 0-54/? I/qemu-props: receiving..
01-25 21:32:05.903 0-54/? I/qemu-props: received: dalvik.vm.heapsize=32m
01-25 21:32:05.940 0-54/? I/qemu-props: receiving..
01-25 21:32:05.940 0-54/? I/qemu-props: received: qemu.sf.lcd_density=213
01-25 21:32:05.941 0-54/? I/qemu-props: receiving..
01-25 21:32:05.941 0-54/? I/qemu-props: received: qemu.hw.mainkeys=0
01-25 21:32:05.941 0-54/? I/qemu-props: receiving..
01-25 21:32:05.942 0-54/? I/qemu-props: received: qemu.sf.fake_camera=back
01-25 21:32:05.942 0-54/? I/qemu-props: receiving..
01-25 21:32:05.942 0-54/? I/qemu-props: received: ro.opengles.version=131072
01-25 21:32:05.943 0-54/? I/qemu-props: receiving..
01-25 21:32:05.943 0-54/? I/qemu-props: exiting (5 properties set).
01-25 21:32:06.309 50-50/? I/lowmemorykiller: Using in-kernel low memory killer interface
01-25 21:32:06.340 65-65/? I/installd: installd firing up
01-25 21:32:06.658 60-60/? I/Netd: Netd 1.0 starting
01-25 21:32:06.684 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/default/optimistic_dad: No such file or directory
01-25 21:32:06.684 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/eth0/optimistic_dad: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/lo/optimistic_dad: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/sit0/optimistic_dad: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/default/use_optimistic: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/eth0/use_optimistic: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/lo/use_optimistic: No such file or directory
01-25 21:32:06.685 60-60/? E/Netd: Failed to open /proc/sys/net/ipv6/conf/sit0/use_optimistic: No such file or directory
01-25 21:32:06.814 52-52/? I/Vold: Vold 2.1 (the revenge) firing up
01-25 21:32:06.909 52-52/? D/Vold: Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)
01-25 21:32:07.417 53-53/? I/SurfaceFlinger: SurfaceFlinger is starting
01-25 21:32:07.426 53-53/? I/SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
01-25 21:32:07.474 53-53/? D/libEGL: loaded /system/lib/egl/libEGL_emulation.so
01-25 21:32:07.478 53-53/? D/libEGL: loaded /system/lib/egl/libGLESv1_CM_emulation.so
01-25 21:32:07.605 53-53/? D/libEGL: loaded /system/lib/egl/libGLESv2_emulation.so
01-25 21:32:07.745 53-53/? E/SurfaceFlinger: hwcomposer module not found
01-25 21:32:07.757 53-53/? W/SurfaceFlinger: no suitable EGLConfig found, trying a simpler query
01-25 21:32:07.759 53-53/? I/SurfaceFlinger: EGL information:
01-25 21:32:07.760 53-53/? I/SurfaceFlinger: vendor    : Android
01-25 21:32:07.760 53-53/? I/SurfaceFlinger: version   : 1.4 Android META-EGL
01-25 21:32:07.760 53-53/? I/SurfaceFlinger: extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_image_base EGL_KHR_fence_sync EGL_ANDROID_image_native_buffer 
01-25 21:32:07.760 53-53/? I/SurfaceFlinger: Client API: OpenGL_ES
01-25 21:32:07.760 53-53/? I/SurfaceFlinger: EGLSurface: 8-8-8-8, config=0x7
01-25 21:32:07.809 53-53/? I/SurfaceFlinger: OpenGL ES informations:
01-25 21:32:07.809 53-53/? I/SurfaceFlinger: vendor    : Google (NVIDIA Corporation)
01-25 21:32:07.809 53-53/? I/SurfaceFlinger: renderer  : Android Emulator OpenGL ES Translator (GeForce GTX 770/PCIe/SSE2)
01-25 21:32:07.809 53-53/? I/SurfaceFlinger: version   : OpenGL ES 2.0 (4.5.0 NVIDIA 359.06)
01-25 21:32:07.810 53-53/? I/SurfaceFlinger: extensions: 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
01-25 21:32:07.810 53-53/? I/SurfaceFlinger: GL_MAX_TEXTURE_SIZE = 16384
01-25 21:32:07.810 53-53/? I/SurfaceFlinger: GL_MAX_VIEWPORT_DIMS = 16384
01-25 21:32:07.851 53-53/? D/SurfaceFlinger: Set power mode=2, type=0 flinger=0xb6082000
01-25 21:32:08.319 53-53/? D/SurfaceFlinger: shader cache generated - 24 shaders in 412.497253 ms
01-25 21:32:09.249 53-85/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
01-25 21:32:09.295 99-113/? D/libEGL: loaded /system/lib/egl/libEGL_emulation.so
01-25 21:32:09.318 99-113/? D/libEGL: loaded /system/lib/egl/libGLESv1_CM_emulation.so
01-25 21:32:09.468 99-113/? D/libEGL: loaded /system/lib/egl/libGLESv2_emulation.so
01-25 21:32:10.355 64-64/? I/mediaserver: ServiceManager: 0xb58700c0
01-25 21:32:10.356 64-64/? I/AudioFlinger: Using default 3000 mSec as standby time.
01-25 21:32:10.398 64-64/? I/ServiceManager: Waiting for service batterystats...
01-25 21:32:10.519 67-67/? D/AndroidRuntime: >>>>>> START com.android.internal.os.ZygoteInit uid 0 <<<<<<
01-25 21:32:10.551 67-67/? D/AndroidRuntime: CheckJNI is ON
01-25 21:32:10.586 67-67/? I/art: option[0]=-Xzygote
01-25 21:32:10.597 67-67/? I/art: option[1]=-Xcheck:jni
01-25 21:32:10.597 67-67/? I/art: option[2]=-Xjnigreflimit:2000
01-25 21:32:10.597 67-67/? I/art: option[3]=-Xstacktracefile:/data/anr/traces.txt
01-25 21:32:10.597 67-67/? I/art: option[4]=exit
01-25 21:32:10.597 67-67/? I/art: option[5]=vfprintf
01-25 21:32:10.598 67-67/? I/art: option[6]=sensitiveThread
01-25 21:32:10.598 67-67/? I/art: option[7]=-verbose:gc
01-25 21:32:10.598 67-67/? I/art: option[8]=-Xms4m
01-25 21:32:10.598 67-67/? I/art: option[9]=-Xmx32m
01-25 21:32:10.598 67-67/? I/art: option[10]=-XX:mainThreadStackSize=24K
01-25 21:32:10.598 67-67/? I/art: option[11]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
01-25 21:32:10.598 67-67/? I/art: option[12]=-Ximage-compiler-option
01-25 21:32:10.598 67-67/? I/art: option[13]=--runtime-arg
01-25 21:32:10.598 67-67/? I/art: option[14]=-Ximage-compiler-option
01-25 21:32:10.599 67-67/? I/art: option[15]=-Xms64m
01-25 21:32:10.599 67-67/? I/art: option[16]=-Ximage-compiler-option
01-25 21:32:10.599 67-67/? I/art: option[17]=--runtime-arg
01-25 21:32:10.599 67-67/? I/art: option[18]=-Ximage-compiler-option
01-25 21:32:10.599 67-67/? I/art: option[19]=-Xmx64m
01-25 21:32:10.599 67-67/? I/art: option[20]=-Ximage-compiler-option
01-25 21:32:10.599 67-67/? I/art: option[21]=--image-classes=/system/etc/preloaded-classes
01-25 21:32:10.600 67-67/? I/art: option[22]=-Xcompiler-option
01-25 21:32:10.600 67-67/? I/art: option[23]=--runtime-arg
01-25 21:32:10.600 67-67/? I/art: option[24]=-Xcompiler-option
01-25 21:32:10.600 67-67/? I/art: option[25]=-Xms64m
01-25 21:32:10.600 67-67/? I/art: option[26]=-Xcompiler-option
01-25 21:32:10.600 67-67/? I/art: option[27]=--runtime-arg
01-25 21:32:10.600 67-67/? I/art: option[28]=-Xcompiler-option
01-25 21:32:10.600 67-67/? I/art: option[29]=-Xmx512m
01-25 21:32:10.600 67-67/? I/art: option[30]=-Duser.language=en
01-25 21:32:10.600 67-67/? I/art: option[31]=-Duser.region=US
01-25 21:32:11.399 64-64/? I/ServiceManager: Waiting for service batterystats...
01-25 21:32:12.401 64-64/? I/ServiceManager: Waiting for service batterystats...
01-25 21:32:13.403 64-64/? I/ServiceManager: Waiting for service batterystats...
01-25 21:32:13.594 67-67/? E/memtrack: Couldn't load memtrack module (No such file or directory)
01-25 21:32:13.595 67-67/? E/android.os.Debug: failed to load memtrack module: -2
01-25 21:32:13.785 67-67/? I/SamplingProfilerIntegration: Profiling disabled.
01-25 21:32:13.819 67-67/? D/Zygote: begin preload
01-25 21:32:13.843 67-67/? I/Zygote: Preloading classes...
01-25 21:32:13.959 67-67/? I/art: Explicit concurrent mark sweep GC freed 796(35KB) AllocSpace objects, 0(0B) LOS objects, 95% free, 44KB/1068KB, paused 1.406ms total 97.699ms
01-25 21:32:13.973 67-67/? I/art: Counter: 1
01-25 21:32:14.198 67-67/? I/art: Explicit concurrent mark sweep GC freed 514(32KB) AllocSpace objects, 0(0B) LOS objects, 94% free, 63KB/1087KB, paused 505us total 34.658ms
01-25 21:32:14.404 64-64/? I/ServiceManager: Waiting for service batterystats...
01-25 21:32:14.607 67-67/? I/art: Explicit concurrent mark sweep GC freed 650(41KB) AllocSpace objects, 0(0B) LOS objects, 93% free, 71KB/1095KB, paused 542us total 39.422ms
01-25 21:32:15.418 64-64/? I/CameraService: CameraService started (pid=64)
01-25 21:32:15.470 64-64/? D/EmulatedCamera_QemuClient: Emulated camera list: 
01-25 21:32:15.471 64-64/? D/EmulatedCamera_FakeCamera: Initialize: Fake camera is facing back
01-25 21:32:15.474 64-64/? V/EmulatedCamera_Device: initializeWhiteBalanceModes with auto, 1.000000, 1.000000
01-25 21:32:15.476 64-64/? V/EmulatedCamera_Device: initializeWhiteBalanceModes with incandescent, 1.380000, 0.600000
01-25 21:32:15.476 64-64/? V/EmulatedCamera_Device: initializeWhiteBalanceModes with daylight, 1.090000, 0.920000
01-25 21:32:15.477 64-64/? V/EmulatedCamera_Device: initializeWhiteBalanceModes with twilight, 0.920000, 1.220000
01-25 21:32:15.477 64-64/? V/EmulatedCamera_Device: setWhiteBalanceMode with white balance auto
01-25 21:32:15.541 64-64/? I/CameraService: Loaded "Emulated Camera Module" camera module
01-25 21:32:15.543 64-64/? I/AudioPolicyService: AudioPolicyService CSTOR in new mode
01-25 21:32:15.569 64-64/? I/AudioPolicyManager: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
01-25 21:32:15.574 64-64/? I/AudioFlinger: loadHwModule() Loaded primary audio interface from Generic audio HW HAL (audio) handle 1
01-25 21:32:15.576 64-64/? I/AudioFlinger: HAL output buffer size 1024 frames, normal sink buffer size 1024 frames
01-25 21:32:15.587 67-67/? I/art: Explicit concurrent mark sweep GC freed 381(22KB) AllocSpace objects, 0(0B) LOS objects, 90% free, 101KB/1125KB, paused 531us total 62.846ms
01-25 21:32:15.619 64-64/? I/AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
01-25 21:32:15.623 64-64/? I/AudioFlinger: Using module 1 has the primary audio interface
01-25 21:32:15.628 64-174/? I/AudioFlinger: AudioFlinger's thread 0xb58d0000 ready to run
01-25 21:32:15.630 64-174/? W/AudioFlinger: Thread AudioOut_2 cannot connect to the power manager service
01-25 21:32:15.642 64-64/? E/audio_hw_generic: Error opening input stream format 1, channel_mask 0010, sample_rate 16000
01-25 21:32:15.648 64-174/? W/AudioFlinger: Thread AudioOut_2 cannot connect to the power manager service
01-25 21:32:15.651 64-174/? W/AudioFlinger: Thread AudioOut_2 cannot connect to the power manager service
01-25 21:32:15.651 64-174/? E/AudioFlinger: no wake lock to update!
01-25 21:32:15.668 64-175/? I/AudioFlinger: AudioFlinger's thread 0xb591b000 ready to run
01-25 21:32:15.669 64-64/? E/AudioFlinger: int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.r_submix (No such file or directory)
01-25 21:32:15.669 64-64/? I/AudioFlinger: loadHwModule() error -2 loading module r_submix 
01-25 21:32:15.669 64-64/? W/AudioPolicyManager: could not open HW module r_submix
01-25 21:32:15.669 64-64/? W/AudioPolicyManager: Input device 80000100 unreachable
01-25 21:32:15.673 64-64/? E/SoundTriggerHwService: couldn't load sound trigger module sound_trigger.primary (No such file or directory)
01-25 21:32:16.029 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
01-25 21:32:16.030 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
01-25 21:32:16.030 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
01-25 21:32:16.030 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
01-25 21:32:16.030 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
01-25 21:32:16.031 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
01-25 21:32:16.031 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
01-25 21:32:16.032 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
01-25 21:32:16.099 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
01-25 21:32:16.099 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
01-25 21:32:16.120 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansThaana-Regular.ttf
01-25 21:32:16.120 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansThaana-Bold.ttf
01-25 21:32:16.120 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansCham-Regular.ttf
01-25 21:32:16.120 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansCham-Bold.ttf
01-25 21:32:16.120 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansBalinese-Regular.ttf
01-25 21:32:16.121 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansBatak-Regular.ttf
01-25 21:32:16.121 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansBuginese-Regular.ttf
01-25 21:32:16.121 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansBuhid-Regular.ttf
01-25 21:32:16.121 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
01-25 21:32:16.122 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
01-25 21:32:16.123 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansCoptic-Regular.ttf
01-25 21:32:16.124 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansGlagolitic-Regular.ttf
01-25 21:32:16.124 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansHanunoo-Regular.ttf
01-25 21:32:16.124 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansJavanese-Regular.ttf
01-25 21:32:16.125 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansKayahLi-Regular.ttf
01-25 21:32:16.126 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansLepcha-Regular.ttf
01-25 21:32:16.127 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansLimbu-Regular.ttf
01-25 21:32:16.131 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansMeeteiMayek-Regular.ttf
01-25 21:32:16.132 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansOlChiki-Regular.ttf
01-25 21:32:16.132 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansRejang-Regular.ttf
01-25 21:32:16.132 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansSaurashtra-Regular.ttf
01-25 21:32:16.132 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansSundanese-Regular.ttf
01-25 21:32:16.133 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansSylotiNagri-Regular.ttf
01-25 21:32:16.133 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansTagbanwa-Regular.ttf
01-25 21:32:16.133 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansTaiLe-Regular.ttf
01-25 21:32:16.137 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansTaiTham-Regular.ttf
01-25 21:32:16.137 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansTaiViet-Regular.ttf
01-25 21:32:16.158 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansTifinagh-Regular.ttf
01-25 21:32:16.158 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
01-25 21:32:16.158 67-67/? E/Minikin: addFont failed to create font /system/fonts/Lohit-Odia.ttf
01-25 21:32:16.159 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
01-25 21:32:16.159 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
01-25 21:32:16.162 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
01-25 21:32:16.162 67-67/? E/Minikin: addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
01-25 21:32:16.499 67-67/? I/art: Explicit concurrent mark sweep GC freed 1799(129KB) AllocSpace objects, 0(0B) LOS objects, 90% free, 112KB/1136KB, paused 585us total 31.208ms
01-25 21:32:16.733 67-67/? I/art: Explicit concurrent mark sweep GC freed 1942(92KB) AllocSpace objects, 0(0B) LOS objects, 86% free, 154KB/1178KB, paused 573us total 43.580ms
01-25 21:32:16.838 67-67/? I/art: Explicit concurrent mark sweep GC freed 1979(87KB) AllocSpace objects, 0(0B) LOS objects, 84% free, 189KB/1213KB, paused 12.509ms total 43.425ms
01-25 21:32:17.010 67-67/? I/art: Explicit concurrent mark sweep GC freed 371(19KB) AllocSpace objects, 0(0B) LOS objects, 82% free, 222KB/1246KB, paused 564us total 41.142ms
01-25 21:32:17.427 67-67/? I/art: Thread[1,tid=67,WaitingForJniOnLoad,Thread*=0xb4827400,peer=0x12c31160,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
01-25 21:32:17.449 67-67/? D/MtpDeviceJNI: register_android_mtp_MtpDevice
01-25 21:32:17.451 67-67/? I/art: Thread[1,tid=67,WaitingForJniOnLoad,Thread*=0xb4827400,peer=0x12c31160,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
01-25 21:32:17.453 67-67/? I/art: Thread[1,tid=67,WaitingForJniOnLoad,Thread*=0xb4827400,peer=0x12c31160,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
01-25 21:32:17.639 67-67/? I/art: Explicit concurrent mark sweep GC freed 661(37KB) AllocSpace objects, 0(0B) LOS objects, 80% free, 244KB/1268KB, paused 1.034ms total 39.007ms
01-25 21:32:18.014 67-67/? I/art: Explicit concurrent mark sweep GC freed 578(29KB) AllocSpace objects, 0(0B) LOS objects, 79% free, 264KB/1288KB, paused 632us total 53.259ms
01-25 21:32:18.139 67-67/? I/art: Explicit concurrent mark sweep GC freed 522(30KB) AllocSpace objects, 0(0B) LOS objects, 77% free, 303KB/1327KB, paused 516us total 38.133ms
01-25 21:32:18.470 67-67/? I/art: Explicit concurrent mark sweep GC freed 1808(105KB) AllocSpace objects, 0(0B) LOS objects, 69% free, 452KB/1476KB, paused 536us total 38.646ms
01-25 21:32:18.549 67-67/? E/EmojiFactory_jni: Failed to load libemoji.so: dlopen failed: library "libemoji.so" not found
01-25 21:32:18.765 67-67/? I/art: Explicit concurrent mark sweep GC freed 354(45KB) AllocSpace objects, 0(0B) LOS objects, 57% free, 750KB/1774KB, paused 11.186ms total 67.821ms
01-25 21:32:18.905 67-67/? I/art: Explicit concurrent mark sweep GC freed 440(30KB) AllocSpace objects, 0(0B) LOS objects, 57% free, 768KB/1792KB, paused 589us total 42.567ms
01-25 21:32:19.065 67-67/? I/art: Explicit concurrent mark sweep GC freed 780(49KB) AllocSpace objects, 0(0B) LOS objects, 57% free, 769KB/1793KB, paused 1.955ms total 43.337ms
01-25 21:32:19.555 67-67/? I/art: Explicit concurrent mark sweep GC freed 956(105KB) AllocSpace objects, 0(0B) LOS objects, 55% free, 811KB/1835KB, paused 550us total 52.074ms
01-25 21:32:19.764 67-67/? I/art: Explicit concurrent mark sweep GC freed 597(42KB) AllocSpace objects, 0(0B) LOS objects, 55% free, 818KB/1842KB, paused 585us total 44.659ms
01-25 21:32:20.000 67-67/? I/art: Explicit concurrent mark sweep GC freed 265(20KB) AllocSpace objects, 0(0B) LOS objects, 54% free, 847KB/1871KB, paused 576us total 40.877ms
01-25 21:32:20.407 67-67/? I/art: WaitForGcToComplete blocked for 34.421ms for cause Explicit
01-25 21:32:20.447 67-67/? I/art: Explicit concurrent mark sweep GC freed 31(1232B) AllocSpace objects, 0(0B) LOS objects, 45% free, 1225KB/2MB, paused 637us total 38.114ms
01-25 21:32:20.594 67-67/? I/art: Explicit concurrent mark sweep GC freed 572(33KB) AllocSpace objects, 0(0B) LOS objects, 45% free, 1241KB/2MB, paused 560us total 52.252ms
01-25 21:32:20.730 67-67/? I/art: Explicit concurrent mark sweep GC freed 741(45KB) AllocSpace objects, 0(0B) LOS objects, 45% free, 1245KB/2MB, paused 615us total 38.991ms
01-25 21:32:21.252 67-67/? I/System: Loaded time zone names for "" in 501ms (490ms in ICU)
01-25 21:32:21.566 67-67/? I/System: Loaded time zone names for "en_US" in 313ms (292ms in ICU)
01-25 21:32:21.642 67-67/? I/art: Explicit concurrent mark sweep GC freed 2345(178KB) AllocSpace objects, 0(0B) LOS objects, 42% free, 1403KB/2MB, paused 560us total 74.599ms
01-25 21:32:21.741 67-67/? I/art: Explicit concurrent mark sweep GC freed 136(12KB) AllocSpace objects, 0(0B) LOS objects, 41% free, 1469KB/2MB, paused 551us total 66.801ms
01-25 21:32:22.004 67-67/? I/art: Explicit concurrent mark sweep GC freed 288(24KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 1514KB/2MB, paused 625us total 101.639ms
01-25 21:32:22.187 67-67/? I/art: Explicit concurrent mark sweep GC freed 679(47KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 1516KB/2MB, paused 583us total 76.352ms
01-25 21:32:22.203 67-67/? I/Zygote: ...preloaded 3005 classes in 8359ms.
01-25 21:32:22.203 67-67/? I/art: VMRuntime.preloadDexCaches starting
01-25 21:32:22.626 67-67/? I/art: VMRuntime.preloadDexCaches strings total=213085 before=39163 after=39163
01-25 21:32:22.626 67-67/? I/art: VMRuntime.preloadDexCaches types total=18417 before=6416 after=6456
01-25 21:32:22.626 67-67/? I/art: VMRuntime.preloadDexCaches fields total=85375 before=32209 after=32543
01-25 21:32:22.627 67-67/? I/art: VMRuntime.preloadDexCaches methods total=151437 before=66646 after=67547
01-25 21:32:22.627 67-67/? I/art: VMRuntime.preloadDexCaches finished
01-25 21:32:22.638 67-67/? I/art: Counter: 0
01-25 21:32:22.641 67-67/? I/art: Counter: 1
01-25 21:32:22.718 67-67/? I/art: Explicit concurrent mark sweep GC freed 61(15KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1501KB/4MB, paused 604us total 75.490ms
01-25 21:32:22.929 240-240/? D/idmap: error: no read access to /vendor/overlay: No such file or directory
01-25 21:32:23.076 67-67/? I/Zygote: Preloading resources...
01-25 21:32:23.268 67-67/? W/Resources: Preloaded drawable resource #0x1080096 (android:drawable/toast_frame) that varies with configuration!!
01-25 21:32:23.289 67-67/? W/Resources: Preloaded drawable resource #0x108010d (android:drawable/btn_check_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:23.294 67-67/? W/Resources: Preloaded drawable resource #0x108010c (android:drawable/btn_check_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:23.377 67-67/? I/art: Explicit concurrent mark sweep GC freed 104(5KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1549KB/4MB, paused 699us total 69.213ms
01-25 21:32:23.385 67-67/? W/Resources: Preloaded drawable resource #0x108010a (android:drawable/btn_check_on_holo_light) that varies with configuration!!
01-25 21:32:23.401 67-67/? W/Resources: Preloaded drawable resource #0x1080109 (android:drawable/btn_check_on_holo_dark) that varies with configuration!!
01-25 21:32:23.406 67-67/? W/Resources: Preloaded drawable resource #0x1080107 (android:drawable/btn_check_on_focused_holo_light) that varies with configuration!!
01-25 21:32:23.431 67-67/? W/Resources: Preloaded drawable resource #0x1080106 (android:drawable/btn_check_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.435 67-67/? W/Resources: Preloaded drawable resource #0x1080105 (android:drawable/btn_check_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.449 67-67/? W/Resources: Preloaded drawable resource #0x1080104 (android:drawable/btn_check_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.500 67-67/? I/art: Explicit concurrent mark sweep GC freed 151(39KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1564KB/4MB, paused 699us total 46.212ms
01-25 21:32:23.511 67-67/? W/Resources: Preloaded drawable resource #0x1080103 (android:drawable/btn_check_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:23.514 67-67/? W/Resources: Preloaded drawable resource #0x1080102 (android:drawable/btn_check_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.516 67-67/? W/Resources: Preloaded drawable resource #0x10800fa (android:drawable/btn_check_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:23.519 67-67/? W/Resources: Preloaded drawable resource #0x10800f9 (android:drawable/btn_check_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:23.522 67-67/? W/Resources: Preloaded drawable resource #0x10800f5 (android:drawable/btn_check_off_holo_light) that varies with configuration!!
01-25 21:32:23.524 67-67/? W/Resources: Preloaded drawable resource #0x10800f4 (android:drawable/btn_check_off_holo_dark) that varies with configuration!!
01-25 21:32:23.589 67-67/? I/art: Explicit concurrent mark sweep GC freed 169(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1565KB/4MB, paused 624us total 59.320ms
01-25 21:32:23.596 67-67/? W/Resources: Preloaded drawable resource #0x10800f2 (android:drawable/btn_check_off_focused_holo_light) that varies with configuration!!
01-25 21:32:23.610 67-67/? W/Resources: Preloaded drawable resource #0x10800f1 (android:drawable/btn_check_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.612 67-67/? W/Resources: Preloaded drawable resource #0x10800f0 (android:drawable/btn_check_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.614 67-67/? W/Resources: Preloaded drawable resource #0x10800ef (android:drawable/btn_check_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.616 67-67/? W/Resources: Preloaded drawable resource #0x10800ee (android:drawable/btn_check_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:23.629 67-67/? W/Resources: Preloaded drawable resource #0x10800ed (android:drawable/btn_check_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.691 67-67/? I/art: Explicit concurrent mark sweep GC freed 167(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1566KB/4MB, paused 1.645ms total 60.187ms
01-25 21:32:23.714 67-67/? W/Resources: Preloaded drawable resource #0x108010a (android:drawable/btn_check_on_holo_light) that varies with configuration!!
01-25 21:32:23.730 67-67/? W/Resources: Preloaded drawable resource #0x10800f5 (android:drawable/btn_check_off_holo_light) that varies with configuration!!
01-25 21:32:23.733 67-67/? W/Resources: Preloaded drawable resource #0x108010d (android:drawable/btn_check_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:23.735 67-67/? W/Resources: Preloaded drawable resource #0x10800fa (android:drawable/btn_check_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:23.752 67-67/? W/Resources: Preloaded drawable resource #0x1080107 (android:drawable/btn_check_on_focused_holo_light) that varies with configuration!!
01-25 21:32:23.756 67-67/? W/Resources: Preloaded drawable resource #0x10800f2 (android:drawable/btn_check_off_focused_holo_light) that varies with configuration!!
01-25 21:32:23.780 67-67/? W/Resources: Preloaded drawable resource #0x10800f5 (android:drawable/btn_check_off_holo_light) that varies with configuration!!
01-25 21:32:23.783 67-67/? W/Resources: Preloaded drawable resource #0x108010a (android:drawable/btn_check_on_holo_light) that varies with configuration!!
01-25 21:32:23.786 67-67/? W/Resources: Preloaded drawable resource #0x1080105 (android:drawable/btn_check_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.799 67-67/? W/Resources: Preloaded drawable resource #0x10800f0 (android:drawable/btn_check_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.803 67-67/? W/Resources: Preloaded drawable resource #0x1080103 (android:drawable/btn_check_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:23.806 67-67/? W/Resources: Preloaded drawable resource #0x10800ee (android:drawable/btn_check_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:23.818 67-67/? W/Resources: Preloaded drawable resource #0x10800f0 (android:drawable/btn_check_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.821 67-67/? W/Resources: Preloaded drawable resource #0x1080105 (android:drawable/btn_check_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:23.823 67-67/? W/Resources: Preloaded drawable resource #0x10800e3 (android:drawable/btn_check_holo_light) that varies with configuration!!
01-25 21:32:23.883 67-67/? I/art: Explicit concurrent mark sweep GC freed 389(67KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1627KB/4MB, paused 577us total 56.480ms
01-25 21:32:23.903 67-67/? W/Resources: Preloaded drawable resource #0x1080109 (android:drawable/btn_check_on_holo_dark) that varies with configuration!!
01-25 21:32:23.905 67-67/? W/Resources: Preloaded drawable resource #0x10800f4 (android:drawable/btn_check_off_holo_dark) that varies with configuration!!
01-25 21:32:23.928 67-67/? W/Resources: Preloaded drawable resource #0x108010c (android:drawable/btn_check_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:23.931 67-67/? W/Resources: Preloaded drawable resource #0x10800f9 (android:drawable/btn_check_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:23.949 67-67/? W/Resources: Preloaded drawable resource #0x1080106 (android:drawable/btn_check_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.953 67-67/? W/Resources: Preloaded drawable resource #0x10800f1 (android:drawable/btn_check_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.955 67-67/? W/Resources: Preloaded drawable resource #0x10800f4 (android:drawable/btn_check_off_holo_dark) that varies with configuration!!
01-25 21:32:23.968 67-67/? W/Resources: Preloaded drawable resource #0x1080109 (android:drawable/btn_check_on_holo_dark) that varies with configuration!!
01-25 21:32:23.971 67-67/? W/Resources: Preloaded drawable resource #0x1080104 (android:drawable/btn_check_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.973 67-67/? W/Resources: Preloaded drawable resource #0x10800ef (android:drawable/btn_check_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.975 67-67/? W/Resources: Preloaded drawable resource #0x1080102 (android:drawable/btn_check_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.988 67-67/? W/Resources: Preloaded drawable resource #0x10800ed (android:drawable/btn_check_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:23.990 67-67/? W/Resources: Preloaded drawable resource #0x10800ef (android:drawable/btn_check_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.993 67-67/? W/Resources: Preloaded drawable resource #0x1080104 (android:drawable/btn_check_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:23.993 67-67/? W/Resources: Preloaded drawable resource #0x10800e2 (android:drawable/btn_check_holo_dark) that varies with configuration!!
01-25 21:32:24.052 67-67/? I/art: Explicit concurrent mark sweep GC freed 449(128KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1628KB/4MB, paused 634us total 56.517ms
01-25 21:32:24.070 67-67/? W/Resources: Preloaded drawable resource #0x10801bd (android:drawable/btn_radio_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.073 67-67/? W/Resources: Preloaded drawable resource #0x10801bc (android:drawable/btn_radio_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:24.090 67-67/? W/Resources: Preloaded drawable resource #0x10801b9 (android:drawable/btn_radio_on_holo_light) that varies with configuration!!
01-25 21:32:24.093 67-67/? W/Resources: Preloaded drawable resource #0x10801b8 (android:drawable/btn_radio_on_holo_dark) that varies with configuration!!
01-25 21:32:24.108 67-67/? W/Resources: Preloaded drawable resource #0x10801b6 (android:drawable/btn_radio_on_focused_holo_light) that varies with configuration!!
01-25 21:32:24.113 67-67/? W/Resources: Preloaded drawable resource #0x10801b5 (android:drawable/btn_radio_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.169 67-67/? I/art: Explicit concurrent mark sweep GC freed 227(114KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1568KB/4MB, paused 600us total 54.681ms
01-25 21:32:24.192 67-67/? W/Resources: Preloaded drawable resource #0x10801b4 (android:drawable/btn_radio_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.195 67-67/? W/Resources: Preloaded drawable resource #0x10801b3 (android:drawable/btn_radio_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:24.208 67-67/? W/Resources: Preloaded drawable resource #0x10801b2 (android:drawable/btn_radio_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.212 67-67/? W/Resources: Preloaded drawable resource #0x10801b1 (android:drawable/btn_radio_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.216 67-67/? W/Resources: Preloaded drawable resource #0x10801ae (android:drawable/btn_radio_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.228 67-67/? W/Resources: Preloaded drawable resource #0x10801ad (android:drawable/btn_radio_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:24.268 67-67/? I/art: Explicit concurrent mark sweep GC freed 169(54KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1569KB/4MB, paused 562us total 37.568ms
01-25 21:32:24.281 67-67/? W/Resources: Preloaded drawable resource #0x10801ab (android:drawable/btn_radio_off_holo_light) that varies with configuration!!
01-25 21:32:24.284 67-67/? W/Resources: Preloaded drawable resource #0x10801aa (android:drawable/btn_radio_off_holo_dark) that varies with configuration!!
01-25 21:32:24.290 67-67/? W/Resources: Preloaded drawable resource #0x10801a8 (android:drawable/btn_radio_off_focused_holo_light) that varies with configuration!!
01-25 21:32:24.292 67-67/? W/Resources: Preloaded drawable resource #0x10801a7 (android:drawable/btn_radio_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.294 67-67/? W/Resources: Preloaded drawable resource #0x10801a6 (android:drawable/btn_radio_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.296 67-67/? W/Resources: Preloaded drawable resource #0x10801a5 (android:drawable/btn_radio_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:24.366 67-67/? I/art: Explicit concurrent mark sweep GC freed 167(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1570KB/4MB, paused 622us total 67.936ms
01-25 21:32:24.383 67-67/? W/Resources: Preloaded drawable resource #0x10801a4 (android:drawable/btn_radio_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.398 67-67/? W/Resources: Preloaded drawable resource #0x10801a3 (android:drawable/btn_radio_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.404 67-67/? W/Resources: Preloaded drawable resource #0x108014e (android:drawable/btn_default_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.406 67-67/? W/Resources: Preloaded drawable resource #0x108014d (android:drawable/btn_default_pressed_holo_dark) that varies with configuration!!
01-25 21:32:24.419 67-67/? W/Resources: Preloaded drawable resource #0x108014a (android:drawable/btn_default_normal_holo_light) that varies with configuration!!
01-25 21:32:24.425 67-67/? W/Resources: Preloaded drawable resource #0x1080149 (android:drawable/btn_default_normal_holo_dark) that varies with configuration!!
01-25 21:32:24.487 67-67/? I/art: Explicit concurrent mark sweep GC freed 167(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1567KB/4MB, paused 618us total 59.110ms
01-25 21:32:24.492 67-67/? W/Resources: Preloaded drawable resource #0x1080140 (android:drawable/btn_default_focused_holo_light) that varies with configuration!!
01-25 21:32:24.495 67-67/? W/Resources: Preloaded drawable resource #0x108013f (android:drawable/btn_default_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.520 67-67/? W/Resources: Preloaded drawable resource #0x108013d (android:drawable/btn_default_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.525 67-67/? W/Resources: Preloaded drawable resource #0x108013c (android:drawable/btn_default_disabled_holo_dark) that varies with configuration!!
01-25 21:32:24.551 67-67/? W/Resources: Preloaded drawable resource #0x108013a (android:drawable/btn_default_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.553 67-67/? W/Resources: Preloaded drawable resource #0x1080139 (android:drawable/btn_default_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.569 67-67/? W/Resources: Preloaded drawable resource #0x1080149 (android:drawable/btn_default_normal_holo_dark) that varies with configuration!!
01-25 21:32:24.572 67-67/? W/Resources: Preloaded drawable resource #0x108013c (android:drawable/btn_default_disabled_holo_dark) that varies with configuration!!
01-25 21:32:24.575 67-67/? W/Resources: Preloaded drawable resource #0x108014d (android:drawable/btn_default_pressed_holo_dark) that varies with configuration!!
01-25 21:32:24.577 67-67/? W/Resources: Preloaded drawable resource #0x108013f (android:drawable/btn_default_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.594 67-67/? W/Resources: Preloaded drawable resource #0x1080149 (android:drawable/btn_default_normal_holo_dark) that varies with configuration!!
01-25 21:32:24.597 67-67/? W/Resources: Preloaded drawable resource #0x1080139 (android:drawable/btn_default_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:24.620 67-67/? W/Resources: Preloaded drawable resource #0x108013c (android:drawable/btn_default_disabled_holo_dark) that varies with configuration!!
01-25 21:32:24.621 67-67/? W/Resources: Preloaded drawable resource #0x1080141 (android:drawable/btn_default_holo_dark) that varies with configuration!!
01-25 21:32:24.680 67-67/? I/art: Explicit concurrent mark sweep GC freed 366(60KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1611KB/4MB, paused 620us total 56.305ms
01-25 21:32:24.699 67-67/? W/Resources: Preloaded drawable resource #0x108014a (android:drawable/btn_default_normal_holo_light) that varies with configuration!!
01-25 21:32:24.703 67-67/? W/Resources: Preloaded drawable resource #0x108013d (android:drawable/btn_default_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.705 67-67/? W/Resources: Preloaded drawable resource #0x108014e (android:drawable/btn_default_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.718 67-67/? W/Resources: Preloaded drawable resource #0x1080140 (android:drawable/btn_default_focused_holo_light) that varies with configuration!!
01-25 21:32:24.721 67-67/? W/Resources: Preloaded drawable resource #0x108014a (android:drawable/btn_default_normal_holo_light) that varies with configuration!!
01-25 21:32:24.723 67-67/? W/Resources: Preloaded drawable resource #0x108013a (android:drawable/btn_default_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.725 67-67/? W/Resources: Preloaded drawable resource #0x108013d (android:drawable/btn_default_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.726 67-67/? W/Resources: Preloaded drawable resource #0x1080142 (android:drawable/btn_default_holo_light) that varies with configuration!!
01-25 21:32:24.788 67-67/? I/art: Explicit concurrent mark sweep GC freed 344(95KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1573KB/4MB, paused 627us total 61.097ms
01-25 21:32:24.812 67-67/? W/Resources: Preloaded drawable resource #0x108021e (android:drawable/btn_star_off_normal_holo_light) that varies with configuration!!
01-25 21:32:24.816 67-67/? W/Resources: Preloaded drawable resource #0x1080228 (android:drawable/btn_star_on_normal_holo_light) that varies with configuration!!
01-25 21:32:24.829 67-67/? W/Resources: Preloaded drawable resource #0x1080224 (android:drawable/btn_star_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.832 67-67/? W/Resources: Preloaded drawable resource #0x108021a (android:drawable/btn_star_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.837 67-67/? W/Resources: Preloaded drawable resource #0x108022a (android:drawable/btn_star_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.861 67-67/? W/Resources: Preloaded drawable resource #0x1080220 (android:drawable/btn_star_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:24.908 67-67/? I/art: Explicit concurrent mark sweep GC freed 213(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1574KB/4MB, paused 584us total 44.621ms
01-25 21:32:24.915 67-67/? W/Resources: Preloaded drawable resource #0x1080226 (android:drawable/btn_star_on_focused_holo_light) that varies with configuration!!
01-25 21:32:24.939 67-67/? W/Resources: Preloaded drawable resource #0x108021c (android:drawable/btn_star_off_focused_holo_light) that varies with configuration!!
01-25 21:32:24.944 67-67/? W/Resources: Preloaded drawable resource #0x1080222 (android:drawable/btn_star_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.958 67-67/? W/Resources: Preloaded drawable resource #0x1080218 (android:drawable/btn_star_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:24.963 67-67/? W/Resources: Preloaded drawable resource #0x108021e (android:drawable/btn_star_off_normal_holo_light) that varies with configuration!!
01-25 21:32:24.966 67-67/? W/Resources: Preloaded drawable resource #0x1080228 (android:drawable/btn_star_on_normal_holo_light) that varies with configuration!!
01-25 21:32:24.978 67-67/? W/Resources: Preloaded drawable resource #0x1080224 (android:drawable/btn_star_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.981 67-67/? W/Resources: Preloaded drawable resource #0x108021a (android:drawable/btn_star_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:24.985 67-67/? W/Resources: Preloaded drawable resource #0x108022a (android:drawable/btn_star_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.013 67-67/? W/Resources: Preloaded drawable resource #0x1080220 (android:drawable/btn_star_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.017 67-67/? W/Resources: Preloaded drawable resource #0x1080226 (android:drawable/btn_star_on_focused_holo_light) that varies with configuration!!
01-25 21:32:25.030 67-67/? W/Resources: Preloaded drawable resource #0x108021c (android:drawable/btn_star_off_focused_holo_light) that varies with configuration!!
01-25 21:32:25.035 67-67/? W/Resources: Preloaded drawable resource #0x1080222 (android:drawable/btn_star_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.048 67-67/? W/Resources: Preloaded drawable resource #0x1080224 (android:drawable/btn_star_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.052 67-67/? W/Resources: Preloaded drawable resource #0x1080218 (android:drawable/btn_star_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.056 67-67/? W/Resources: Preloaded drawable resource #0x108021a (android:drawable/btn_star_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.069 67-67/? W/Resources: Preloaded drawable resource #0x108021e (android:drawable/btn_star_off_normal_holo_light) that varies with configuration!!
01-25 21:32:25.072 67-67/? W/Resources: Preloaded drawable resource #0x1080228 (android:drawable/btn_star_on_normal_holo_light) that varies with configuration!!
01-25 21:32:25.073 67-67/? W/Resources: Preloaded drawable resource #0x1080213 (android:drawable/btn_star_holo_light) that varies with configuration!!
01-25 21:32:25.135 67-67/? I/art: Explicit concurrent mark sweep GC freed 471(74KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1667KB/4MB, paused 637us total 58.614ms
01-25 21:32:25.141 67-67/? W/Resources: Preloaded drawable resource #0x108021d (android:drawable/btn_star_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.145 67-67/? W/Resources: Preloaded drawable resource #0x1080227 (android:drawable/btn_star_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.157 67-67/? W/Resources: Preloaded drawable resource #0x1080223 (android:drawable/btn_star_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.160 67-67/? W/Resources: Preloaded drawable resource #0x1080219 (android:drawable/btn_star_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.164 67-67/? W/Resources: Preloaded drawable resource #0x1080229 (android:drawable/btn_star_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.167 67-67/? W/Resources: Preloaded drawable resource #0x108021f (android:drawable/btn_star_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.250 67-67/? I/art: Explicit concurrent mark sweep GC freed 264(144KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1577KB/4MB, paused 837us total 80.947ms
01-25 21:32:25.277 67-67/? W/Resources: Preloaded drawable resource #0x1080225 (android:drawable/btn_star_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.281 67-67/? W/Resources: Preloaded drawable resource #0x108021b (android:drawable/btn_star_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.286 67-67/? W/Resources: Preloaded drawable resource #0x1080221 (android:drawable/btn_star_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.312 67-67/? W/Resources: Preloaded drawable resource #0x1080217 (android:drawable/btn_star_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.327 67-67/? W/Resources: Preloaded drawable resource #0x108021d (android:drawable/btn_star_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.331 67-67/? W/Resources: Preloaded drawable resource #0x1080227 (android:drawable/btn_star_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.333 67-67/? W/Resources: Preloaded drawable resource #0x1080223 (android:drawable/btn_star_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.336 67-67/? W/Resources: Preloaded drawable resource #0x1080219 (android:drawable/btn_star_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.372 67-67/? W/Resources: Preloaded drawable resource #0x1080229 (android:drawable/btn_star_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.376 67-67/? W/Resources: Preloaded drawable resource #0x108021f (android:drawable/btn_star_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.390 67-67/? W/Resources: Preloaded drawable resource #0x1080225 (android:drawable/btn_star_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.395 67-67/? W/Resources: Preloaded drawable resource #0x108021b (android:drawable/btn_star_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.410 67-67/? W/Resources: Preloaded drawable resource #0x1080221 (android:drawable/btn_star_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.413 67-67/? W/Resources: Preloaded drawable resource #0x1080223 (android:drawable/btn_star_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.416 67-67/? W/Resources: Preloaded drawable resource #0x1080217 (android:drawable/btn_star_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.430 67-67/? W/Resources: Preloaded drawable resource #0x1080219 (android:drawable/btn_star_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.449 67-67/? W/Resources: Preloaded drawable resource #0x108021d (android:drawable/btn_star_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.453 67-67/? W/Resources: Preloaded drawable resource #0x1080227 (android:drawable/btn_star_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.454 67-67/? W/Resources: Preloaded drawable resource #0x1080212 (android:drawable/btn_star_holo_dark) that varies with configuration!!
01-25 21:32:25.504 67-67/? I/art: Explicit concurrent mark sweep GC freed 469(73KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1668KB/4MB, paused 580us total 46.936ms
01-25 21:32:25.511 67-67/? W/Resources: Preloaded drawable resource #0x108025e (android:drawable/btn_toggle_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.513 67-67/? W/Resources: Preloaded drawable resource #0x108025d (android:drawable/btn_toggle_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.516 67-67/? W/Resources: Preloaded drawable resource #0x108025c (android:drawable/btn_toggle_on_normal_holo_light) that varies with configuration!!
01-25 21:32:25.523 67-67/? W/Resources: Preloaded drawable resource #0x108025b (android:drawable/btn_toggle_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.525 67-67/? W/Resources: Preloaded drawable resource #0x108025a (android:drawable/btn_toggle_on_focused_holo_light) that varies with configuration!!
01-25 21:32:25.548 67-67/? W/Resources: Preloaded drawable resource #0x1080259 (android:drawable/btn_toggle_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.552 67-67/? W/Resources: Preloaded drawable resource #0x1080258 (android:drawable/btn_toggle_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.598 67-67/? I/art: Explicit concurrent mark sweep GC freed 284(145KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1578KB/4MB, paused 639us total 43.994ms
01-25 21:32:25.606 67-67/? W/Resources: Preloaded drawable resource #0x1080257 (android:drawable/btn_toggle_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.628 67-67/? W/Resources: Preloaded drawable resource #0x1080256 (android:drawable/btn_toggle_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.631 67-67/? W/Resources: Preloaded drawable resource #0x1080255 (android:drawable/btn_toggle_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.633 67-67/? W/Resources: Preloaded drawable resource #0x1080253 (android:drawable/btn_toggle_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.637 67-67/? W/Resources: Preloaded drawable resource #0x1080252 (android:drawable/btn_toggle_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.639 67-67/? W/Resources: Preloaded drawable resource #0x1080251 (android:drawable/btn_toggle_off_normal_holo_light) that varies with configuration!!
01-25 21:32:25.641 67-67/? W/Resources: Preloaded drawable resource #0x1080250 (android:drawable/btn_toggle_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.693 67-67/? I/art: Explicit concurrent mark sweep GC freed 229(55KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1580KB/4MB, paused 612us total 49.808ms
01-25 21:32:25.711 67-67/? W/Resources: Preloaded drawable resource #0x108024f (android:drawable/btn_toggle_off_focused_holo_light) that varies with configuration!!
01-25 21:32:25.714 67-67/? W/Resources: Preloaded drawable resource #0x108024e (android:drawable/btn_toggle_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.716 67-67/? W/Resources: Preloaded drawable resource #0x108024d (android:drawable/btn_toggle_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.720 67-67/? W/Resources: Preloaded drawable resource #0x108024c (android:drawable/btn_toggle_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.722 67-67/? W/Resources: Preloaded drawable resource #0x108024b (android:drawable/btn_toggle_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.724 67-67/? W/Resources: Preloaded drawable resource #0x108024a (android:drawable/btn_toggle_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.739 67-67/? W/Resources: Preloaded drawable resource #0x108025c (android:drawable/btn_toggle_on_normal_holo_light) that varies with configuration!!
01-25 21:32:25.742 67-67/? W/Resources: Preloaded drawable resource #0x1080258 (android:drawable/btn_toggle_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.744 67-67/? W/Resources: Preloaded drawable resource #0x108025e (android:drawable/btn_toggle_on_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.746 67-67/? W/Resources: Preloaded drawable resource #0x108025a (android:drawable/btn_toggle_on_focused_holo_light) that varies with configuration!!
01-25 21:32:25.759 67-67/? W/Resources: Preloaded drawable resource #0x108025c (android:drawable/btn_toggle_on_normal_holo_light) that varies with configuration!!
01-25 21:32:25.762 67-67/? W/Resources: Preloaded drawable resource #0x1080256 (android:drawable/btn_toggle_on_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.764 67-67/? W/Resources: Preloaded drawable resource #0x1080258 (android:drawable/btn_toggle_on_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.767 67-67/? W/Resources: Preloaded drawable resource #0x1080251 (android:drawable/btn_toggle_off_normal_holo_light) that varies with configuration!!
01-25 21:32:25.779 67-67/? W/Resources: Preloaded drawable resource #0x108024d (android:drawable/btn_toggle_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.782 67-67/? W/Resources: Preloaded drawable resource #0x1080253 (android:drawable/btn_toggle_off_pressed_holo_light) that varies with configuration!!
01-25 21:32:25.787 67-67/? W/Resources: Preloaded drawable resource #0x108024f (android:drawable/btn_toggle_off_focused_holo_light) that varies with configuration!!
01-25 21:32:25.801 67-67/? W/Resources: Preloaded drawable resource #0x1080251 (android:drawable/btn_toggle_off_normal_holo_light) that varies with configuration!!
01-25 21:32:25.803 67-67/? W/Resources: Preloaded drawable resource #0x108024b (android:drawable/btn_toggle_off_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:25.805 67-67/? W/Resources: Preloaded drawable resource #0x108024d (android:drawable/btn_toggle_off_disabled_holo_light) that varies with configuration!!
01-25 21:32:25.806 67-67/? W/Resources: Preloaded drawable resource #0x1080246 (android:drawable/btn_toggle_holo_light) that varies with configuration!!
01-25 21:32:25.879 60-60/? V/NatController: runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
01-25 21:32:25.893 67-67/? I/art: Explicit concurrent mark sweep GC freed 551(75KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1665KB/4MB, paused 665us total 83.237ms
01-25 21:32:25.911 67-67/? W/Resources: Preloaded drawable resource #0x108025b (android:drawable/btn_toggle_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.914 67-67/? W/Resources: Preloaded drawable resource #0x1080257 (android:drawable/btn_toggle_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.916 67-67/? W/Resources: Preloaded drawable resource #0x108025d (android:drawable/btn_toggle_on_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.930 67-67/? W/Resources: Preloaded drawable resource #0x1080259 (android:drawable/btn_toggle_on_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.932 67-67/? W/Resources: Preloaded drawable resource #0x108025b (android:drawable/btn_toggle_on_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.935 67-67/? W/Resources: Preloaded drawable resource #0x1080255 (android:drawable/btn_toggle_on_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.937 67-67/? W/Resources: Preloaded drawable resource #0x1080257 (android:drawable/btn_toggle_on_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.948 60-60/? V/NatController: runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
01-25 21:32:25.961 67-67/? W/Resources: Preloaded drawable resource #0x1080250 (android:drawable/btn_toggle_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.963 67-67/? W/Resources: Preloaded drawable resource #0x108024c (android:drawable/btn_toggle_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.965 67-67/? W/Resources: Preloaded drawable resource #0x1080252 (android:drawable/btn_toggle_off_pressed_holo_dark) that varies with configuration!!
01-25 21:32:25.978 67-67/? W/Resources: Preloaded drawable resource #0x108024e (android:drawable/btn_toggle_off_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.980 67-67/? W/Resources: Preloaded drawable resource #0x1080250 (android:drawable/btn_toggle_off_normal_holo_dark) that varies with configuration!!
01-25 21:32:25.984 67-67/? W/Resources: Preloaded drawable resource #0x108024a (android:drawable/btn_toggle_off_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:25.986 67-67/? W/Resources: Preloaded drawable resource #0x108024c (android:drawable/btn_toggle_off_disabled_holo_dark) that varies with configuration!!
01-25 21:32:25.987 67-67/? W/Resources: Preloaded drawable resource #0x1080245 (android:drawable/btn_toggle_holo_dark) that varies with configuration!!
01-25 21:32:26.062 67-67/? I/art: Explicit concurrent mark sweep GC freed 600(151KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1627KB/4MB, paused 619us total 71.852ms
01-25 21:32:26.072 67-67/? W/Resources: Preloaded drawable resource #0x108071d (android:drawable/textfield_multiline_default_holo_light) that varies with configuration!!
01-25 21:32:26.075 67-67/? W/Resources: Preloaded drawable resource #0x1080721 (android:drawable/textfield_multiline_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.077 67-67/? W/Resources: Preloaded drawable resource #0x108071b (android:drawable/textfield_multiline_activated_holo_light) that varies with configuration!!
01-25 21:32:26.102 67-67/? W/Resources: Preloaded drawable resource #0x1080723 (android:drawable/textfield_multiline_focused_holo_light) that varies with configuration!!
01-25 21:32:26.104 67-67/? W/Resources: Preloaded drawable resource #0x108071d (android:drawable/textfield_multiline_default_holo_light) that varies with configuration!!
01-25 21:32:26.110 60-60/? V/NatController: runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
01-25 21:32:26.121 67-67/? W/Resources: Preloaded drawable resource #0x108071f (android:drawable/textfield_multiline_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:26.126 67-67/? W/Resources: Preloaded drawable resource #0x1080721 (android:drawable/textfield_multiline_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.140 67-67/? W/Resources: Preloaded drawable resource #0x108070f (android:drawable/textfield_default_holo_light) that varies with configuration!!
01-25 21:32:26.142 67-67/? W/Resources: Preloaded drawable resource #0x1080715 (android:drawable/textfield_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.145 67-67/? W/Resources: Preloaded drawable resource #0x1080706 (android:drawable/textfield_activated_holo_light) that varies with configuration!!
01-25 21:32:26.158 67-67/? W/Resources: Preloaded drawable resource #0x1080718 (android:drawable/textfield_focused_holo_light) that varies with configuration!!
01-25 21:32:26.161 67-67/? W/Resources: Preloaded drawable resource #0x108070f (android:drawable/textfield_default_holo_light) that varies with configuration!!
01-25 21:32:26.163 67-67/? W/Resources: Preloaded drawable resource #0x1080713 (android:drawable/textfield_disabled_focused_holo_light) that varies with configuration!!
01-25 21:32:26.165 67-67/? W/Resources: Preloaded drawable resource #0x1080715 (android:drawable/textfield_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.166 67-67/? W/Resources: Preloaded drawable resource #0x10802c6 (android:drawable/edit_text_holo_light) that varies with configuration!!
01-25 21:32:26.227 67-67/? I/art: Explicit concurrent mark sweep GC freed 527(113KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1628KB/4MB, paused 572us total 58.661ms
01-25 21:32:26.233 67-67/? W/Resources: Preloaded drawable resource #0x108071c (android:drawable/textfield_multiline_default_holo_dark) that varies with configuration!!
01-25 21:32:26.247 67-67/? W/Resources: Preloaded drawable resource #0x1080720 (android:drawable/textfield_multiline_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.250 67-67/? W/Resources: Preloaded drawable resource #0x108071a (android:drawable/textfield_multiline_activated_holo_dark) that varies with configuration!!
01-25 21:32:26.254 67-67/? W/Resources: Preloaded drawable resource #0x1080722 (android:drawable/textfield_multiline_focused_holo_dark) that varies with configuration!!
01-25 21:32:26.256 67-67/? W/Resources: Preloaded drawable resource #0x108071c (android:drawable/textfield_multiline_default_holo_dark) that varies with configuration!!
01-25 21:32:26.294 67-67/? W/Resources: Preloaded drawable resource #0x108071e (android:drawable/textfield_multiline_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:26.298 60-60/? V/NatController: runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
01-25 21:32:26.308 67-67/? W/Resources: Preloaded drawable resource #0x1080720 (android:drawable/textfield_multiline_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.311 67-67/? W/Resources: Preloaded drawable resource #0x108070e (android:drawable/textfield_default_holo_dark) that varies with configuration!!
01-25 21:32:26.314 67-67/? W/Resources: Preloaded drawable resource #0x1080714 (android:drawable/textfield_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.316 67-67/? W/Resources: Preloaded drawable resource #0x1080705 (android:drawable/textfield_activated_holo_dark) that varies with configuration!!
01-25 21:32:26.330 67-67/? W/Resources: Preloaded drawable resource #0x1080717 (android:drawable/textfield_focused_holo_dark) that varies with configuration!!
01-25 21:32:26.333 67-67/? W/Resources: Preloaded drawable resource #0x108070e (android:drawable/textfield_default_holo_dark) that varies with configuration!!
01-25 21:32:26.336 67-67/? W/Resources: Preloaded drawable resource #0x1080712 (android:drawable/textfield_disabled_focused_holo_dark) that varies with configuration!!
01-25 21:32:26.349 67-67/? W/Resources: Preloaded drawable resource #0x1080714 (android:drawable/textfield_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.350 67-67/? W/Resources: Preloaded drawable resource #0x10802c5 (android:drawable/edit_text_holo_dark) that varies with configuration!!
01-25 21:32:26.371 60-60/? V/NatController: runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
01-25 21:32:26.424 67-67/? I/art: Explicit concurrent mark sweep GC freed 527(112KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1630KB/4MB, paused 11.001ms total 71.587ms
01-25 21:32:26.452 67-67/? W/Resources: Preloaded drawable resource #0x10806fc (android:drawable/text_select_handle_left) that varies with configuration!!
01-25 21:32:26.469 67-67/? W/Resources: Preloaded drawable resource #0x1080702 (android:drawable/text_select_handle_right) that varies with configuration!!
01-25 21:32:26.473 67-67/? W/Resources: Preloaded drawable resource #0x10806f9 (android:drawable/text_edit_paste_window) that varies with configuration!!
01-25 21:32:26.530 60-60/? V/NatController: runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
01-25 21:32:26.543 67-67/? I/art: Explicit concurrent mark sweep GC freed 259(95KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1588KB/4MB, paused 767us total 67.884ms
01-25 21:32:26.559 67-67/? W/Resources: Preloaded drawable resource #0x10802dd (android:drawable/expander_close_holo_dark) that varies with configuration!!
01-25 21:32:26.562 67-67/? W/Resources: Preloaded drawable resource #0x10802de (android:drawable/expander_close_holo_light) that varies with configuration!!
01-25 21:32:26.565 67-67/? W/Resources: Preloaded drawable resource #0x10802dd (android:drawable/expander_close_holo_dark) that varies with configuration!!
01-25 21:32:26.578 60-60/? V/NatController: runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=1
01-25 21:32:26.589 67-67/? W/Resources: Preloaded drawable resource #0x10802e6 (android:drawable/expander_open_holo_dark) that varies with configuration!!
01-25 21:32:26.590 67-67/? W/Resources: Preloaded drawable resource #0x10802e1 (android:drawable/expander_group_holo_dark) that varies with configuration!!
01-25 21:32:26.593 67-67/? W/Resources: Preloaded drawable resource #0x10802de (android:drawable/expander_close_holo_light) that varies with configuration!!
01-25 21:32:26.596 67-67/? W/Resources: Preloaded drawable resource #0x10802e7 (android:drawable/expander_open_holo_light) that varies with configuration!!
01-25 21:32:26.596 67-67/? W/Resources: Preloaded drawable resource #0x10802e2 (android:drawable/expander_group_holo_light) that varies with configuration!!
01-25 21:32:26.669 67-67/? I/art: Explicit concurrent mark sweep GC freed 197(56KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1589KB/4MB, paused 632us total 60.232ms
01-25 21:32:26.688 67-67/? W/Resources: Preloaded drawable resource #0x10804bd (android:drawable/list_selector_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.690 67-67/? W/Resources: Preloaded drawable resource #0x10804bd (android:drawable/list_selector_disabled_holo_dark) that varies with configuration!!
01-25 21:32:26.698 67-67/? W/Resources: Preloaded drawable resource #0x108049c (android:drawable/list_pressed_holo_dark) that varies with configuration!!
01-25 21:32:26.704 67-67/? W/Resources: Preloaded drawable resource #0x108049a (android:drawable/list_longpressed_holo_dark) that varies with configuration!!
01-25 21:32:26.706 67-67/? W/Resources: Preloaded drawable resource #0x10804ba (android:drawable/list_selector_background_transition_holo_dark) that varies with configuration!!
01-25 21:32:26.720 67-67/? W/Resources: Preloaded drawable resource #0x108049c (android:drawable/list_pressed_holo_dark) that varies with configuration!!
01-25 21:32:26.722 67-67/? W/Resources: Preloaded drawable resource #0x108049a (android:drawable/list_longpressed_holo_dark) that varies with configuration!!
01-25 21:32:26.723 67-67/? W/Resources: Preloaded drawable resource #0x10804ba (android:drawable/list_selector_background_transition_holo_dark) that varies with configuration!!
01-25 21:32:26.725 67-67/? W/Resources: Preloaded drawable resource #0x1080495 (android:drawable/list_focused_holo) that varies with configuration!!
01-25 21:32:26.725 67-67/? W/Resources: Preloaded drawable resource #0x10804c1 (android:drawable/list_selector_holo_dark) that varies with configuration!!
01-25 21:32:26.741 67-67/? W/Resources: Preloaded drawable resource #0x10804be (android:drawable/list_selector_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.743 67-67/? W/Resources: Preloaded drawable resource #0x10804be (android:drawable/list_selector_disabled_holo_light) that varies with configuration!!
01-25 21:32:26.745 67-67/? W/Resources: Preloaded drawable resource #0x108049d (android:drawable/list_pressed_holo_light) that varies with configuration!!
01-25 21:32:26.747 67-67/? W/Resources: Preloaded drawable resource #0x108049b (android:drawable/list_longpressed_holo_light) that varies with configuration!!
01-25 21:32:26.757 67-67/? W/Resources: Preloaded drawable resource #0x10804bb (android:drawable/list_selector_background_transition_holo_light) that varies with configuration!!
01-25 21:32:26.760 67-67/? W/Resources: Preloaded drawable resource #0x108049d (android:drawable/list_pressed_holo_light) that varies with configuration!!
01-25 21:32:26.761 67-67/? W/Resources: Preloaded drawable resource #0x108049b (android:drawable/list_longpressed_holo_light) that varies with configuration!!
01-25 21:32:26.762 67-67/? W/Resources: Preloaded drawable resource #0x10804bb (android:drawable/list_selector_background_transition_holo_light) that varies with configuration!!
01-25 21:32:26.763 67-67/? W/Resources: Preloaded drawable resource #0x1080495 (android:drawable/list_focused_holo) that varies with configuration!!
01-25 21:32:26.763 67-67/? W/Resources: Preloaded drawable resource #0x10804c2 (android:drawable/list_selector_holo_light) that varies with configuration!!
01-25 21:32:26.834 67-67/? I/art: Explicit concurrent mark sweep GC freed 547(74KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1574KB/4MB, paused 645us total 67.158ms
01-25 21:32:26.840 67-67/? W/Resources: Preloaded drawable resource #0x108049f (android:drawable/list_section_divider_holo_light) that varies with configuration!!
01-25 21:32:26.842 67-67/? W/Resources: Preloaded drawable resource #0x108049e (android:drawable/list_section_divider_holo_dark) that varies with configuration!!
01-25 21:32:26.845 67-67/? W/Resources: Preloaded drawable resource #0x10804d2 (android:drawable/menu_hardkey_panel_holo_dark) that varies with configuration!!
01-25 21:32:26.858 67-67/? W/Resources: Preloaded drawable resource #0x10804d3 (android:drawable/menu_hardkey_panel_holo_light) that varies with configuration!!
01-25 21:32:26.863 67-67/? W/Resources: Preloaded drawable resource #0x10804da (android:drawable/menu_submenu_background) that varies with configuration!!
01-25 21:32:26.925 67-67/? I/art: Explicit concurrent mark sweep GC freed 322(35KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1589KB/4MB, paused 570us total 57.438ms
01-25 21:32:26.932 67-67/? W/Resources: Preloaded drawable resource #0x10804d1 (android:drawable/menu_dropdown_panel_holo_light) that varies with configuration!!
01-25 21:32:26.935 67-67/? W/Resources: Preloaded drawable resource #0x10804d0 (android:drawable/menu_dropdown_panel_holo_dark) that varies with configuration!!
01-25 21:32:26.950 67-67/? W/Resources: Preloaded drawable resource #0x10804d7 (android:drawable/menu_popup_panel_holo_light) that varies with configuration!!
01-25 21:32:27.026 67-67/? I/art: Explicit concurrent mark sweep GC freed 125(47KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1591KB/4MB, paused 721us total 73.656ms
01-25 21:32:27.033 67-67/? W/Resources: Preloaded drawable resource #0x10804d6 (android:drawable/menu_popup_panel_holo_dark) that varies with configuration!!
01-25 21:32:27.052 67-67/? W/Resources: Preloaded drawable resource #0x10804d7 (android:drawable/menu_popup_panel_holo_light) that varies with configuration!!
01-25 21:32:27.069 67-67/? W/Resources: Preloaded drawable resource #0x10804d1 (android:drawable/menu_dropdown_panel_holo_light) that varies with configuration!!
01-25 21:32:27.070 67-67/? W/Resources: Preloaded drawable resource #0x10804d5 (android:drawable/menu_panel_holo_light) that varies with configuration!!
01-25 21:32:27.117 67-67/? I/art: Explicit concurrent mark sweep GC freed 125(50KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1592KB/4MB, paused 582us total 45.242ms
01-25 21:32:27.138 67-67/? W/Resources: Preloaded drawable resource #0x10804d6 (android:drawable/menu_popup_panel_holo_dark) that varies with configuration!!
01-25 21:32:27.144 67-67/? W/Resources: Preloaded drawable resource #0x10804d0 (android:drawable/menu_dropdown_panel_holo_dark) that varies with configuration!!
01-25 21:32:27.145 67-67/? W/Resources: Preloaded drawable resource #0x10804d4 (android:drawable/menu_panel_holo_dark) that varies with configuration!!
01-25 21:32:27.159 67-67/? W/Resources: Preloaded drawable resource #0x1080607 (android:drawable/spinner_16_outer_holo) that varies with configuration!!
01-25 21:32:27.164 67-67/? W/Resources: Preloaded drawable resource #0x1080606 (android:drawable/spinner_16_inner_holo) that varies with configuration!!
01-25 21:32:27.180 67-67/? W/Resources: Preloaded drawable resource #0x1080609 (android:drawable/spinner_48_outer_holo) that varies with configuration!!
01-25 21:32:27.255 67-67/? I/art: Explicit concurrent mark sweep GC freed 178(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1598KB/4MB, paused 645us total 73.067ms
01-25 21:32:27.272 67-67/? W/Resources: Preloaded drawable resource #0x1080608 (android:drawable/spinner_48_inner_holo) that varies with configuration!!
01-25 21:32:27.294 67-67/? W/Resources: Preloaded drawable resource #0x108060b (android:drawable/spinner_76_outer_holo) that varies with configuration!!
01-25 21:32:27.362 67-67/? I/art: Explicit concurrent mark sweep GC freed 103(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1604KB/4MB, paused 662us total 66.892ms
01-25 21:32:27.383 67-67/? W/Resources: Preloaded drawable resource #0x108060a (android:drawable/spinner_76_inner_holo) that varies with configuration!!
01-25 21:32:27.398 67-67/? W/Resources: Preloaded drawable resource #0x1080560 (android:drawable/progress_bg_holo_dark) that varies with configuration!!
01-25 21:32:27.402 67-67/? W/Resources: Preloaded drawable resource #0x1080561 (android:drawable/progress_bg_holo_light) that varies with configuration!!
01-25 21:32:27.405 67-67/? W/Resources: Preloaded drawable resource #0x1080560 (android:drawable/progress_bg_holo_dark) that varies with configuration!!
01-25 21:32:27.420 67-67/? W/Resources: Preloaded drawable resource #0x1080572 (android:drawable/progress_secondary_holo_dark) that varies with configuration!!
01-25 21:32:27.424 67-67/? W/Resources: Preloaded drawable resource #0x1080570 (android:drawable/progress_primary_holo_dark) that varies with configuration!!
01-25 21:32:27.424 67-67/? W/Resources: Preloaded drawable resource #0x1080562 (android:drawable/progress_horizontal_holo_dark) that varies with configuration!!
01-25 21:32:27.495 67-67/? I/art: Explicit concurrent mark sweep GC freed 173(66KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1596KB/4MB, paused 624us total 69.308ms
01-25 21:32:27.504 67-67/? W/Resources: Preloaded drawable resource #0x1080561 (android:drawable/progress_bg_holo_light) that varies with configuration!!
01-25 21:32:27.506 67-67/? W/Resources: Preloaded drawable resource #0x1080573 (android:drawable/progress_secondary_holo_light) that varies with configuration!!
01-25 21:32:27.520 67-67/? W/Resources: Preloaded drawable resource #0x1080571 (android:drawable/progress_primary_holo_light) that varies with configuration!!
01-25 21:32:27.520 67-67/? W/Resources: Preloaded drawable resource #0x1080563 (android:drawable/progress_horizontal_holo_light) that varies with configuration!!
01-25 21:32:27.526 67-67/? W/Resources: Preloaded drawable resource #0x108057c (android:drawable/progressbar_indeterminate_holo1) that varies with configuration!!
01-25 21:32:27.545 67-67/? W/Resources: Preloaded drawable resource #0x108057d (android:drawable/progressbar_indeterminate_holo2) that varies with configuration!!
01-25 21:32:27.563 67-67/? W/Resources: Preloaded drawable resource #0x108057e (android:drawable/progressbar_indeterminate_holo3) that varies with configuration!!
01-25 21:32:27.588 67-67/? W/Resources: Preloaded drawable resource #0x108057f (android:drawable/progressbar_indeterminate_holo4) that varies with configuration!!
01-25 21:32:27.594 67-67/? W/Resources: Preloaded drawable resource #0x1080580 (android:drawable/progressbar_indeterminate_holo5) that varies with configuration!!
01-25 21:32:27.610 67-67/? W/Resources: Preloaded drawable resource #0x1080581 (android:drawable/progressbar_indeterminate_holo6) that varies with configuration!!
01-25 21:32:27.615 67-67/? W/Resources: Preloaded drawable resource #0x1080582 (android:drawable/progressbar_indeterminate_holo7) that varies with configuration!!
01-25 21:32:27.652 67-67/? W/Resources: Preloaded drawable resource #0x1080583 (android:drawable/progressbar_indeterminate_holo8) that varies with configuration!!
01-25 21:32:27.653 67-67/? W/Resources: Preloaded drawable resource #0x1080565 (android:drawable/progress_indeterminate_horizontal_holo) that varies with configuration!!
01-25 21:32:27.719 67-67/? I/art: Explicit concurrent mark sweep GC freed 373(66KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 2MB/6MB, paused 631us total 57.875ms
01-25 21:32:27.742 67-67/? W/Resources: Preloaded drawable resource #0x108060b (android:drawable/spinner_76_outer_holo) that varies with configuration!!
01-25 21:32:27.759 67-67/? W/Resources: Preloaded drawable resource #0x108060a (android:drawable/spinner_76_inner_holo) that varies with configuration!!
01-25 21:32:27.760 67-67/? W/Resources: Preloaded drawable resource #0x1080568 (android:drawable/progress_large_holo) that varies with configuration!!
01-25 21:32:27.820 67-67/? I/art: Explicit concurrent mark sweep GC freed 190(542KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1631KB/4MB, paused 578us total 54.593ms
01-25 21:32:27.828 67-67/? W/Resources: Preloaded drawable resource #0x1080609 (android:drawable/spinner_48_outer_holo) that varies with configuration!!
01-25 21:32:27.832 67-67/? W/Resources: Preloaded drawable resource #0x1080608 (android:drawable/spinner_48_inner_holo) that varies with configuration!!
01-25 21:32:27.832 67-67/? W/Resources: Preloaded drawable resource #0x108056c (android:drawable/progress_medium_holo) that varies with configuration!!
01-25 21:32:27.837 67-67/? W/Resources: Preloaded drawable resource #0x1080570 (android:drawable/progress_primary_holo_dark) that varies with configuration!!
01-25 21:32:27.841 67-67/? W/Resources: Preloaded drawable resource #0x1080571 (android:drawable/progress_primary_holo_light) that varies with configuration!!
01-25 21:32:27.843 67-67/? W/Resources: Preloaded drawable resource #0x1080572 (android:drawable/progress_secondary_holo_dark) that varies with configuration!!
01-25 21:32:27.845 67-67/? W/Resources: Preloaded drawable resource #0x1080573 (android:drawable/progress_secondary_holo_light) that varies with configuration!!
01-25 21:32:27.904 67-67/? I/art: Explicit concurrent mark sweep GC freed 175(90KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1592KB/4MB, paused 7.832ms total 57.104ms
01-25 21:32:27.912 67-67/? W/Resources: Preloaded drawable resource #0x1080607 (android:drawable/spinner_16_outer_holo) that varies with configuration!!
01-25 21:32:27.914 67-67/? W/Resources: Preloaded drawable resource #0x1080606 (android:drawable/spinner_16_inner_holo) that varies with configuration!!
01-25 21:32:27.914 67-67/? W/Resources: Preloaded drawable resource #0x1080575 (android:drawable/progress_small_holo) that varies with configuration!!
01-25 21:32:27.929 67-67/? W/Resources: Preloaded drawable resource #0x10805ee (android:drawable/scrubber_track_holo_dark) that varies with configuration!!
01-25 21:32:27.931 67-67/? W/Resources: Preloaded drawable resource #0x10805ed (android:drawable/scrubber_secondary_holo) that varies with configuration!!
01-25 21:32:27.933 67-67/? W/Resources: Preloaded drawable resource #0x10805e8 (android:drawable/scrubber_primary_holo) that varies with configuration!!
01-25 21:32:27.933 67-67/? W/Resources: Preloaded drawable resource #0x10805ea (android:drawable/scrubber_progress_horizontal_holo_dark) that varies with configuration!!
01-25 21:32:27.936 67-67/? W/Resources: Preloaded drawable resource #0x10805ef (android:drawable/scrubber_track_holo_light) that varies with configuration!!
01-25 21:32:27.949 67-67/? W/Resources: Preloaded drawable resource #0x10805ed (android:drawable/scrubber_secondary_holo) that varies with configuration!!
01-25 21:32:27.951 67-67/? W/Resources: Preloaded drawable resource #0x10805e8 (android:drawable/scrubber_primary_holo) that varies with configuration!!
01-25 21:32:27.951 67-67/? W/Resources: Preloaded drawable resource #0x10805eb (android:drawable/scrubber_progress_horizontal_holo_light) that varies with configuration!!
01-25 21:32:27.979 67-67/? W/Resources: Preloaded drawable resource #0x10805cc (android:drawable/scrollbar_handle_holo_dark) that varies with configuration!!
01-25 21:32:27.981 67-67/? W/Resources: Preloaded drawable resource #0x10805cd (android:drawable/scrollbar_handle_holo_light) that varies with configuration!!
01-25 21:32:27.986 67-67/? W/Resources: Preloaded drawable resource #0x108062e (android:drawable/spinner_disabled_holo_dark) that varies with configuration!!
01-25 21:32:28.000 67-67/? W/Resources: Preloaded drawable resource #0x108063c (android:drawable/spinner_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.004 67-67/? W/Resources: Preloaded drawable resource #0x1080634 (android:drawable/spinner_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.029 67-67/? W/Resources: Preloaded drawable resource #0x1080629 (android:drawable/spinner_default_holo_dark) that varies with configuration!!
01-25 21:32:28.030 67-67/? W/Resources: Preloaded drawable resource #0x1080622 (android:drawable/spinner_background_holo_dark) that varies with configuration!!
01-25 21:32:28.104 67-67/? I/art: Explicit concurrent mark sweep GC freed 509(67KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1599KB/4MB, paused 642us total 69.286ms
01-25 21:32:28.123 67-67/? W/Resources: Preloaded drawable resource #0x1080630 (android:drawable/spinner_disabled_holo_light) that varies with configuration!!
01-25 21:32:28.126 67-67/? W/Resources: Preloaded drawable resource #0x108063e (android:drawable/spinner_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.129 67-67/? W/Resources: Preloaded drawable resource #0x1080636 (android:drawable/spinner_focused_holo_light) that varies with configuration!!
01-25 21:32:28.148 67-67/? W/Resources: Preloaded drawable resource #0x108062b (android:drawable/spinner_default_holo_light) that varies with configuration!!
01-25 21:32:28.149 67-67/? W/Resources: Preloaded drawable resource #0x1080623 (android:drawable/spinner_background_holo_light) that varies with configuration!!
01-25 21:32:28.154 67-67/? W/Resources: Preloaded drawable resource #0x108060e (android:drawable/spinner_ab_default_holo_dark) that varies with configuration!!
01-25 21:32:28.157 67-67/? W/Resources: Preloaded drawable resource #0x1080610 (android:drawable/spinner_ab_default_holo_light) that varies with configuration!!
01-25 21:32:28.171 67-67/? W/Resources: Preloaded drawable resource #0x1080612 (android:drawable/spinner_ab_disabled_holo_dark) that varies with configuration!!
01-25 21:32:28.223 67-67/? I/art: Explicit concurrent mark sweep GC freed 508(54KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1599KB/4MB, paused 598us total 50.053ms
01-25 21:32:28.258 67-67/? W/Resources: Preloaded drawable resource #0x1080614 (android:drawable/spinner_ab_disabled_holo_light) that varies with configuration!!
01-25 21:32:28.263 67-67/? W/Resources: Preloaded drawable resource #0x1080616 (android:drawable/spinner_ab_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.267 67-67/? W/Resources: Preloaded drawable resource #0x1080618 (android:drawable/spinner_ab_focused_holo_light) that varies with configuration!!
01-25 21:32:28.280 67-67/? W/Resources: Preloaded drawable resource #0x108061c (android:drawable/spinner_ab_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.283 67-67/? W/Resources: Preloaded drawable resource #0x108061e (android:drawable/spinner_ab_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.287 67-67/? W/Resources: Preloaded drawable resource #0x1080612 (android:drawable/spinner_ab_disabled_holo_dark) that varies with configuration!!
01-25 21:32:28.298 67-67/? W/Resources: Preloaded drawable resource #0x108061c (android:drawable/spinner_ab_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.306 67-67/? W/Resources: Preloaded drawable resource #0x1080616 (android:drawable/spinner_ab_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.323 67-67/? W/Resources: Preloaded drawable resource #0x108060e (android:drawable/spinner_ab_default_holo_dark) that varies with configuration!!
01-25 21:32:28.323 67-67/? W/Resources: Preloaded drawable resource #0x108061a (android:drawable/spinner_ab_holo_dark) that varies with configuration!!
01-25 21:32:28.395 67-67/? I/art: Explicit concurrent mark sweep GC freed 384(55KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1612KB/4MB, paused 638us total 67.961ms
01-25 21:32:28.404 67-67/? W/Resources: Preloaded drawable resource #0x1080614 (android:drawable/spinner_ab_disabled_holo_light) that varies with configuration!!
01-25 21:32:28.420 67-67/? W/Resources: Preloaded drawable resource #0x108061e (android:drawable/spinner_ab_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.424 67-67/? W/Resources: Preloaded drawable resource #0x1080618 (android:drawable/spinner_ab_focused_holo_light) that varies with configuration!!
01-25 21:32:28.428 67-67/? W/Resources: Preloaded drawable resource #0x1080610 (android:drawable/spinner_ab_default_holo_light) that varies with configuration!!
01-25 21:32:28.430 67-67/? W/Resources: Preloaded drawable resource #0x108061b (android:drawable/spinner_ab_holo_light) that varies with configuration!!
01-25 21:32:28.433 67-67/? W/Resources: Preloaded drawable resource #0x1080629 (android:drawable/spinner_default_holo_dark) that varies with configuration!!
01-25 21:32:28.436 67-67/? W/Resources: Preloaded drawable resource #0x108062b (android:drawable/spinner_default_holo_light) that varies with configuration!!
01-25 21:32:28.450 67-67/? W/Resources: Preloaded drawable resource #0x108062e (android:drawable/spinner_disabled_holo_dark) that varies with configuration!!
01-25 21:32:28.516 67-67/? I/art: Explicit concurrent mark sweep GC freed 375(63KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1601KB/4MB, paused 607us total 62.881ms
01-25 21:32:28.531 67-67/? W/Resources: Preloaded drawable resource #0x1080630 (android:drawable/spinner_disabled_holo_light) that varies with configuration!!
01-25 21:32:28.534 67-67/? W/Resources: Preloaded drawable resource #0x1080634 (android:drawable/spinner_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.537 67-67/? W/Resources: Preloaded drawable resource #0x1080636 (android:drawable/spinner_focused_holo_light) that varies with configuration!!
01-25 21:32:28.541 67-67/? W/Resources: Preloaded drawable resource #0x108063c (android:drawable/spinner_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.544 67-67/? W/Resources: Preloaded drawable resource #0x108063e (android:drawable/spinner_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.546 67-67/? W/Resources: Preloaded drawable resource #0x108026f (android:drawable/cab_background_bottom_holo_dark) that varies with configuration!!
01-25 21:32:28.559 67-67/? W/Resources: Preloaded drawable resource #0x1080274 (android:drawable/cab_background_top_holo_light) that varies with configuration!!
01-25 21:32:28.561 67-67/? W/Resources: Preloaded drawable resource #0x1080270 (android:drawable/cab_background_bottom_holo_light) that varies with configuration!!
01-25 21:32:28.608 67-67/? I/art: Explicit concurrent mark sweep GC freed 329(52KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1603KB/4MB, paused 582us total 45.174ms
01-25 21:32:28.636 67-67/? W/Resources: Preloaded drawable resource #0x108032f (android:drawable/ic_cab_done_holo_dark) that varies with configuration!!
01-25 21:32:28.649 67-67/? W/Resources: Preloaded drawable resource #0x1080273 (android:drawable/cab_background_top_holo_dark) that varies with configuration!!
01-25 21:32:28.655 67-67/? W/Resources: Preloaded drawable resource #0x1080330 (android:drawable/ic_cab_done_holo_light) that varies with configuration!!
01-25 21:32:28.670 67-67/? W/Resources: Preloaded drawable resource #0x10800d5 (android:drawable/btn_cab_done_default_holo_dark) that varies with configuration!!
01-25 21:32:28.672 67-67/? W/Resources: Preloaded drawable resource #0x10800d8 (android:drawable/btn_cab_done_focused_holo_light) that varies with configuration!!
01-25 21:32:28.674 67-67/? W/Resources: Preloaded drawable resource #0x10800d6 (android:drawable/btn_cab_done_default_holo_light) that varies with configuration!!
01-25 21:32:28.676 67-67/? W/Resources: Preloaded drawable resource #0x10800dd (android:drawable/btn_cab_done_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.688 67-67/? W/Resources: Preloaded drawable resource #0x10800d7 (android:drawable/btn_cab_done_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.690 67-67/? W/Resources: Preloaded drawable resource #0x10800de (android:drawable/btn_cab_done_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.693 67-67/? W/Resources: Preloaded drawable resource #0x108049d (android:drawable/list_pressed_holo_light) that varies with configuration!!
01-25 21:32:28.695 67-67/? W/Resources: Preloaded drawable resource #0x10800d8 (android:drawable/btn_cab_done_focused_holo_light) that varies with configuration!!
01-25 21:32:28.696 67-67/? W/Resources: Preloaded drawable resource #0x10800d6 (android:drawable/btn_cab_done_default_holo_light) that varies with configuration!!
01-25 21:32:28.697 67-67/? W/Resources: Preloaded drawable resource #0x10800da (android:drawable/btn_cab_done_holo_light) that varies with configuration!!
01-25 21:32:28.710 67-67/? W/Resources: Preloaded drawable resource #0x108049c (android:drawable/list_pressed_holo_dark) that varies with configuration!!
01-25 21:32:28.712 67-67/? W/Resources: Preloaded drawable resource #0x10800d7 (android:drawable/btn_cab_done_focused_holo_dark) that varies with configuration!!
01-25 21:32:28.714 67-67/? W/Resources: Preloaded drawable resource #0x10800d5 (android:drawable/btn_cab_done_default_holo_dark) that varies with configuration!!
01-25 21:32:28.714 67-67/? W/Resources: Preloaded drawable resource #0x10800d9 (android:drawable/btn_cab_done_holo_dark) that varies with configuration!!
01-25 21:32:28.768 67-67/? W/art: Suspending all threads took: 10.329ms
01-25 21:32:28.776 67-67/? I/art: Explicit concurrent mark sweep GC freed 481(65KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1592KB/4MB, paused 11.414ms total 58.317ms
01-25 21:32:28.781 67-67/? W/Resources: Preloaded drawable resource #0x1080038 (android:drawable/ic_menu_close_clear_cancel) that varies with configuration!!
01-25 21:32:28.784 67-67/? W/Resources: Preloaded drawable resource #0x10803d1 (android:drawable/ic_menu_copy_holo_dark) that varies with configuration!!
01-25 21:32:28.787 67-67/? W/Resources: Preloaded drawable resource #0x10803d2 (android:drawable/ic_menu_copy_holo_light) that varies with configuration!!
01-25 21:32:28.801 67-67/? W/Resources: Preloaded drawable resource #0x10803d5 (android:drawable/ic_menu_cut_holo_dark) that varies with configuration!!
01-25 21:32:28.803 67-67/? W/Resources: Preloaded drawable resource #0x10803d6 (android:drawable/ic_menu_cut_holo_light) that varies with configuration!!
01-25 21:32:28.822 67-67/? W/Resources: Preloaded drawable resource #0x1080045 (android:drawable/ic_menu_more) that varies with configuration!!
01-25 21:32:28.882 67-67/? I/art: Explicit concurrent mark sweep GC freed 313(38KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1608KB/4MB, paused 616us total 58.600ms
01-25 21:32:28.899 67-67/? W/Resources: Preloaded drawable resource #0x10803ed (android:drawable/ic_menu_moreoverflow_normal_holo_dark) that varies with configuration!!
01-25 21:32:28.899 67-67/? W/Resources: Preloaded drawable resource #0x10803ea (android:drawable/ic_menu_moreoverflow_holo_dark) that varies with configuration!!
01-25 21:32:28.918 67-67/? W/Resources: Preloaded drawable resource #0x10803ee (android:drawable/ic_menu_moreoverflow_normal_holo_light) that varies with configuration!!
01-25 21:32:28.919 67-67/? W/Resources: Preloaded drawable resource #0x10803eb (android:drawable/ic_menu_moreoverflow_holo_light) that varies with configuration!!
01-25 21:32:28.921 67-67/? W/Resources: Preloaded drawable resource #0x10803f1 (android:drawable/ic_menu_paste_holo_dark) that varies with configuration!!
01-25 21:32:28.923 67-67/? W/Resources: Preloaded drawable resource #0x10803f2 (android:drawable/ic_menu_paste_holo_light) that varies with configuration!!
01-25 21:32:28.938 67-67/? W/Resources: Preloaded drawable resource #0x10803fb (android:drawable/ic_menu_selectall_holo_light) that varies with configuration!!
01-25 21:32:28.987 67-67/? I/art: Explicit concurrent mark sweep GC freed 191(57KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1605KB/4MB, paused 636us total 45.648ms
01-25 21:32:29.003 67-67/? W/Resources: Preloaded drawable resource #0x10803fa (android:drawable/ic_menu_selectall_holo_dark) that varies with configuration!!
01-25 21:32:29.007 67-67/? W/Resources: Preloaded drawable resource #0x1080334 (android:drawable/ic_clear_disabled) that varies with configuration!!
01-25 21:32:29.022 67-67/? W/Resources: Preloaded drawable resource #0x1080339 (android:drawable/ic_clear_normal) that varies with configuration!!
01-25 21:32:29.023 67-67/? W/Resources: Preloaded drawable resource #0x1080333 (android:drawable/ic_clear) that varies with configuration!!
01-25 21:32:29.025 67-67/? W/Resources: Preloaded drawable resource #0x1080334 (android:drawable/ic_clear_disabled) that varies with configuration!!
01-25 21:32:29.038 67-67/? W/Resources: Preloaded drawable resource #0x1080339 (android:drawable/ic_clear_normal) that varies with configuration!!
01-25 21:32:29.040 67-67/? W/Resources: Preloaded drawable resource #0x108042e (android:drawable/ic_search_api_holo_dark) that varies with configuration!!
01-25 21:32:29.103 67-67/? I/art: Explicit concurrent mark sweep GC freed 206(48KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1610KB/4MB, paused 625us total 60.315ms
01-25 21:32:29.120 67-67/? W/Resources: Preloaded drawable resource #0x108042f (android:drawable/ic_search_api_holo_light) that varies with configuration!!
01-25 21:32:29.123 67-67/? W/Resources: Preloaded drawable resource #0x1080361 (android:drawable/ic_go) that varies with configuration!!
01-25 21:32:29.125 67-67/? W/Resources: Preloaded drawable resource #0x108043c (android:drawable/ic_voice_search_api_holo_dark) that varies with configuration!!
01-25 21:32:29.138 67-67/? W/Resources: Preloaded drawable resource #0x108043d (android:drawable/ic_voice_search_api_holo_light) that varies with configuration!!
01-25 21:32:29.146 67-67/? W/Resources: Preloaded drawable resource #0x108028f (android:drawable/dialog_bottom_holo_dark) that varies with configuration!!
01-25 21:32:29.160 67-67/? W/Resources: Preloaded drawable resource #0x1080290 (android:drawable/dialog_bottom_holo_light) that varies with configuration!!
01-25 21:32:29.219 67-67/? I/art: Explicit concurrent mark sweep GC freed 180(50KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1618KB/4MB, paused 695us total 45.603ms
01-25 21:32:29.232 67-67/? W/Resources: Preloaded drawable resource #0x1080294 (android:drawable/dialog_full_holo_dark) that varies with configuration!!
01-25 21:32:29.249 67-67/? W/Resources: Preloaded drawable resource #0x1080295 (android:drawable/dialog_full_holo_light) that varies with configuration!!
01-25 21:32:29.322 67-67/? I/art: Explicit concurrent mark sweep GC freed 97(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1622KB/4MB, paused 669us total 70.438ms
01-25 21:32:29.330 67-67/? W/Resources: Preloaded drawable resource #0x108029d (android:drawable/dialog_middle_holo_dark) that varies with configuration!!
01-25 21:32:29.333 67-67/? W/Resources: Preloaded drawable resource #0x108029e (android:drawable/dialog_middle_holo_light) that varies with configuration!!
01-25 21:32:29.337 67-67/? W/Resources: Preloaded drawable resource #0x108029f (android:drawable/dialog_top_holo_dark) that varies with configuration!!
01-25 21:32:29.349 67-67/? W/Resources: Preloaded drawable resource #0x10802a0 (android:drawable/dialog_top_holo_light) that varies with configuration!!
01-25 21:32:29.402 67-67/? I/art: Explicit concurrent mark sweep GC freed 109(59KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1621KB/4MB, paused 636us total 50.126ms
01-25 21:32:29.420 67-67/? W/Resources: Preloaded drawable resource #0x1080350 (android:drawable/ic_dialog_alert_holo_dark) that varies with configuration!!
01-25 21:32:29.422 67-67/? W/Resources: Preloaded drawable resource #0x1080351 (android:drawable/ic_dialog_alert_holo_light) that varies with configuration!!
01-25 21:32:29.424 67-67/? W/Resources: Preloaded drawable resource #0x1080490 (android:drawable/list_divider_holo_dark) that varies with configuration!!
01-25 21:32:29.426 67-67/? W/Resources: Preloaded drawable resource #0x1080491 (android:drawable/list_divider_holo_light) that varies with configuration!!
01-25 21:32:29.449 67-67/? W/Resources: Preloaded drawable resource #0x1080491 (android:drawable/list_divider_holo_light) that varies with configuration!!
01-25 21:32:29.452 67-67/? W/Resources: Preloaded drawable resource #0x10800c1 (android:drawable/ab_transparent_dark_holo) that varies with configuration!!
01-25 21:32:29.454 67-67/? W/Resources: Preloaded drawable resource #0x10800bf (android:drawable/ab_stacked_transparent_dark_holo) that varies with configuration!!
01-25 21:32:29.456 67-67/? W/Resources: Preloaded drawable resource #0x10800a1 (android:drawable/ab_bottom_transparent_dark_holo) that varies with configuration!!
01-25 21:32:29.469 67-67/? W/Resources: Preloaded drawable resource #0x10800b7 (android:drawable/ab_solid_dark_holo) that varies with configuration!!
01-25 21:32:29.471 67-67/? W/Resources: Preloaded drawable resource #0x10800bc (android:drawable/ab_stacked_solid_dark_holo) that varies with configuration!!
01-25 21:32:29.532 67-67/? I/art: Explicit concurrent mark sweep GC freed 245(65KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1609KB/4MB, paused 662us total 58.366ms
01-25 21:32:29.539 67-67/? W/Resources: Preloaded drawable resource #0x108009e (android:drawable/ab_bottom_solid_dark_holo) that varies with configuration!!
01-25 21:32:29.542 67-67/? W/Resources: Preloaded drawable resource #0x10800c2 (android:drawable/ab_transparent_light_holo) that varies with configuration!!
01-25 21:32:29.544 67-67/? W/Resources: Preloaded drawable resource #0x10800c0 (android:drawable/ab_stacked_transparent_light_holo) that varies with configuration!!
01-25 21:32:29.546 67-67/? W/Resources: Preloaded drawable resource #0x10800a2 (android:drawable/ab_bottom_transparent_light_holo) that varies with configuration!!
01-25 21:32:29.559 67-67/? W/Resources: Preloaded drawable resource #0x10800b8 (android:drawable/ab_solid_light_holo) that varies with configuration!!
01-25 21:32:29.562 67-67/? W/Resources: Preloaded drawable resource #0x10800be (android:drawable/ab_stacked_solid_light_holo) that varies with configuration!!
01-25 21:32:29.579 67-67/? W/Resources: Preloaded drawable resource #0x10800a0 (android:drawable/ab_bottom_solid_light_holo) that varies with configuration!!
01-25 21:32:29.581 67-67/? W/Resources: Preloaded drawable resource #0x10800b9 (android:drawable/ab_solid_shadow_holo) that varies with configuration!!
01-25 21:32:29.585 67-67/? W/Resources: Preloaded drawable resource #0x10804bd (android:drawable/list_selector_disabled_holo_dark) that varies with configuration!!
01-25 21:32:29.618 67-67/? W/Resources: Preloaded drawable resource #0x10804bd (android:drawable/list_selector_disabled_holo_dark) that varies with configuration!!
01-25 21:32:29.622 67-67/? W/Resources: Preloaded drawable resource #0x108049c (android:drawable/list_pressed_holo_dark) that varies with configuration!!
01-25 21:32:29.623 67-67/? W/Resources: Preloaded drawable resource #0x108049a (android:drawable/list_longpressed_holo_dark) that varies with configuration!!
01-25 21:32:29.624 67-67/? W/Resources: Preloaded drawable resource #0x10804ba (android:drawable/list_selector_background_transition_holo_dark) that varies with configuration!!
01-25 21:32:29.625 67-67/? W/Resources: Preloaded drawable resource #0x108049c (android:drawable/list_pressed_holo_dark) that varies with configuration!!
01-25 21:32:29.637 67-67/? W/Resources: Preloaded drawable resource #0x108049a (android:drawable/list_longpressed_holo_dark) that varies with configuration!!
01-25 21:32:29.638 67-67/? W/Resources: Preloaded drawable resource #0x10804ba (android:drawable/list_selector_background_transition_holo_dark) that varies with configuration!!
01-25 21:32:29.640 67-67/? W/Resources: Preloaded drawable resource #0x1080495 (android:drawable/list_focused_holo) that varies with configuration!!
01-25 21:32:29.641 67-67/? W/Resources: Preloaded drawable resource #0x108044e (android:drawable/item_background_holo_dark) that varies with configuration!!
01-25 21:32:29.702 67-67/? I/art: Explicit concurrent mark sweep GC freed 487(63KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1620KB/4MB, paused 653us total 58.453ms
01-25 21:32:29.719 67-67/? W/Resources: Preloaded drawable resource #0x10804be (android:drawable/list_selector_disabled_holo_light) that varies with configuration!!
01-25 21:32:29.721 67-67/? W/Resources: Preloaded drawable resource #0x10804be (android:drawable/list_selector_disabled_holo_light) that varies with configuration!!
01-25 21:32:29.724 67-67/? W/Resources: Preloaded drawable resource #0x108049d (android:drawable/list_pressed_holo_light) that varies with configuration!!
01-25 21:32:29.725 67-67/? W/Resources: Preloaded drawable resource #0x108049b (android:drawable/list_longpressed_holo_light) that varies with configuration!!
01-25 21:32:29.726 67-67/? W/Resources: Preloaded drawable resource #0x10804bb (android:drawable/list_selector_background_transition_holo_light) that varies with configuration!!
01-25 21:32:29.739 67-67/? W/Resources: Preloaded drawable resource #0x108049d (android:drawable/list_pressed_holo_light) that varies with configuration!!
01-25 21:32:29.742 67-67/? W/Resources: Preloaded drawable resource #0x108049b (android:drawable/list_longpressed_holo_light) that varies with configuration!!
01-25 21:32:29.743 67-67/? W/Resources: Preloaded drawable resource #0x10804bb (android:drawable/list_selector_background_transition_holo_light) that varies with configuration!!
01-25 21:32:29.745 67-67/? W/Resources: Preloaded drawable resource #0x1080495 (android:drawable/list_focused_holo) that varies with configuration!!
01-25 21:32:29.745 67-67/? W/Resources: Preloaded drawable resource #0x108044f (android:drawable/item_background_holo_light) that varies with configuration!!
01-25 21:32:29.751 67-67/? W/Resources: Preloaded drawable resource #0x10802f2 (android:drawable/fastscroll_thumb_pressed_holo) that varies with configuration!!
01-25 21:32:29.754 67-67/? W/Resources: Preloaded drawable resource #0x10802ef (android:drawable/fastscroll_thumb_default_holo) that varies with configuration!!
01-25 21:32:29.754 67-67/? W/Resources: Preloaded drawable resource #0x10802f0 (android:drawable/fastscroll_thumb_holo) that varies with configuration!!
01-25 21:32:29.820 67-67/? I/art: Explicit concurrent mark sweep GC freed 495(66KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1610KB/4MB, paused 624us total 57.347ms
01-25 21:32:29.840 67-67/? W/Resources: Preloaded drawable resource #0x10802f2 (android:drawable/fastscroll_thumb_pressed_holo) that varies with configuration!!
01-25 21:32:29.843 67-67/? W/Resources: Preloaded drawable resource #0x10802ef (android:drawable/fastscroll_thumb_default_holo) that varies with configuration!!
01-25 21:32:29.846 67-67/? W/Resources: Preloaded drawable resource #0x10802f8 (android:drawable/fastscroll_track_pressed_holo_dark) that varies with configuration!!
01-25 21:32:29.851 67-67/? W/Resources: Preloaded drawable resource #0x10802f3 (android:drawable/fastscroll_track_default_holo_dark) that varies with configuration!!
01-25 21:32:29.851 67-67/? W/Resources: Preloaded drawable resource #0x10802f5 (android:drawable/fastscroll_track_holo_dark) that varies with configuration!!
01-25 21:32:29.853 67-67/? W/Resources: Preloaded drawable resource #0x10802f8 (android:drawable/fastscroll_track_pressed_holo_dark) that varies with configuration!!
01-25 21:32:29.854 67-67/? W/Resources: Preloaded drawable resource #0x10802f3 (android:drawable/fastscroll_track_default_holo_dark) that varies with configuration!!
01-25 21:32:29.870 67-67/? W/Resources: Preloaded drawable resource #0x10802e9 (android:drawable/fastscroll_label_left_holo_dark) that varies with configuration!!
01-25 21:32:29.935 67-67/? I/art: Explicit concurrent mark sweep GC freed 301(49KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1637KB/4MB, paused 657us total 55.191ms
01-25 21:32:29.946 67-67/? W/Resources: Preloaded drawable resource #0x10802ec (android:drawable/fastscroll_label_right_holo_dark) that varies with configuration!!
01-25 21:32:29.952 67-67/? W/Resources: Preloaded drawable resource #0x10802f9 (android:drawable/fastscroll_track_pressed_holo_light) that varies with configuration!!
01-25 21:32:29.954 67-67/? W/Resources: Preloaded drawable resource #0x10802f4 (android:drawable/fastscroll_track_default_holo_light) that varies with configuration!!
01-25 21:32:29.954 67-67/? W/Resources: Preloaded drawable resource #0x10802f6 (android:drawable/fastscroll_track_holo_light) that varies with configuration!!
01-25 21:32:29.956 67-67/? W/Resources: Preloaded drawable resource #0x10802f9 (android:drawable/fastscroll_track_pressed_holo_light) that varies with configuration!!
01-25 21:32:29.988 67-67/? W/Resources: Preloaded drawable resource #0x10802f4 (android:drawable/fastscroll_track_default_holo_light) that varies with configuration!!
01-25 21:32:30.035 67-67/? I/art: Explicit concurrent mark sweep GC freed 211(72KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1614KB/4MB, paused 594us total 44.554ms
01-25 21:32:30.053 67-67/? W/Resources: Preloaded drawable resource #0x10802ea (android:drawable/fastscroll_label_left_holo_light) that varies with configuration!!
01-25 21:32:30.072 67-67/? W/Resources: Preloaded drawable resource #0x10802ed (android:drawable/fastscroll_label_right_holo_light) that varies with configuration!!
01-25 21:32:30.131 67-67/? I/art: Explicit concurrent mark sweep GC freed 116(43KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1649KB/4MB, paused 645us total 57.366ms
01-25 21:32:30.135 67-67/? W/Resources: Preloaded drawable resource #0x10802ca (android:drawable/editbox_dropdown_background_dark) that varies with configuration!!
01-25 21:32:30.149 67-67/? W/Resources: Preloaded drawable resource #0x1080736 (android:drawable/textfield_search_selected_holo_dark) that varies with configuration!!
01-25 21:32:30.155 67-67/? W/Resources: Preloaded drawable resource #0x1080728 (android:drawable/textfield_search_default_holo_dark) that varies with configuration!!
01-25 21:32:30.156 67-67/? W/Resources: Preloaded drawable resource #0x1080738 (android:drawable/textfield_searchview_holo_dark) that varies with configuration!!
01-25 21:32:30.172 67-67/? W/Resources: Preloaded drawable resource #0x1080733 (android:drawable/textfield_search_right_selected_holo_dark) that varies with configuration!!
01-25 21:32:30.176 67-67/? W/Resources: Preloaded drawable resource #0x1080731 (android:drawable/textfield_search_right_default_holo_dark) that varies with configuration!!
01-25 21:32:30.177 67-67/? W/Resources: Preloaded drawable resource #0x108073a (android:drawable/textfield_searchview_right_holo_dark) that varies with configuration!!
01-25 21:32:30.190 67-67/? W/Resources: Preloaded drawable resource #0x1080737 (android:drawable/textfield_search_selected_holo_light) that varies with configuration!!
01-25 21:32:30.192 67-67/? W/Resources: Preloaded drawable resource #0x1080729 (android:drawable/textfield_search_default_holo_light) that varies with configuration!!
01-25 21:32:30.192 67-67/? W/Resources: Preloaded drawable resource #0x1080739 (android:drawable/textfield_searchview_holo_light) that varies with configuration!!
01-25 21:32:30.196 67-67/? W/Resources: Preloaded drawable resource #0x1080734 (android:drawable/textfield_search_right_selected_holo_light) that varies with configuration!!
01-25 21:32:30.209 67-67/? W/Resources: Preloaded drawable resource #0x1080732 (android:drawable/textfield_search_right_default_holo_light) that varies with configuration!!
01-25 21:32:30.209 67-67/? W/Resources: Preloaded drawable resource #0x108073b (android:drawable/textfield_searchview_right_holo_light) that varies with configuration!!
01-25 21:32:30.211 67-67/? W/Resources: Preloaded drawable resource #0x1080736 (android:drawable/textfield_search_selected_holo_dark) that varies with configuration!!
01-25 21:32:30.213 67-67/? W/Resources: Preloaded drawable resource #0x1080728 (android:drawable/textfield_search_default_holo_dark) that varies with configuration!!
01-25 21:32:30.215 67-67/? W/Resources: Preloaded drawable resource #0x1080733 (android:drawable/textfield_search_right_selected_holo_dark) that varies with configuration!!
01-25 21:32:30.216 67-67/? W/Resources: Preloaded drawable resource #0x1080731 (android:drawable/textfield_search_right_default_holo_dark) that varies with configuration!!
01-25 21:32:30.228 67-67/? W/Resources: Preloaded drawable resource #0x1080737 (android:drawable/textfield_search_selected_holo_light) that varies with configuration!!
01-25 21:32:30.230 67-67/? W/Resources: Preloaded drawable resource #0x1080729 (android:drawable/textfield_search_default_holo_light) that varies with configuration!!
01-25 21:32:30.307 67-67/? I/art: Explicit concurrent mark sweep GC freed 410(102KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1596KB/4MB, paused 590us total 73.650ms
01-25 21:32:30.324 67-67/? W/Resources: Preloaded drawable resource #0x1080734 (android:drawable/textfield_search_right_selected_holo_light) that varies with configuration!!
01-25 21:32:30.327 67-67/? W/Resources: Preloaded drawable resource #0x1080732 (android:drawable/textfield_search_right_default_holo_light) that varies with configuration!!
01-25 21:32:30.337 67-67/? W/Resources: Preloaded drawable resource #0x10806f2 (android:drawable/tab_unselected_holo) that varies with configuration!!
01-25 21:32:30.350 67-67/? W/Resources: Preloaded drawable resource #0x10806ed (android:drawable/tab_selected_holo) that varies with configuration!!
01-25 21:32:30.353 67-67/? W/Resources: Preloaded drawable resource #0x10806f1 (android:drawable/tab_unselected_focused_holo) that varies with configuration!!
01-25 21:32:30.354 67-67/? W/Resources: Preloaded drawable resource #0x10806ec (android:drawable/tab_selected_focused_holo) that varies with configuration!!
01-25 21:32:30.356 67-67/? W/Resources: Preloaded drawable resource #0x10806f3 (android:drawable/tab_unselected_pressed_holo) that varies with configuration!!
01-25 21:32:30.367 67-67/? W/Resources: Preloaded drawable resource #0x10806ee (android:drawable/tab_selected_pressed_holo) that varies with configuration!!
01-25 21:32:30.369 67-67/? W/Resources: Preloaded drawable resource #0x10806f3 (android:drawable/tab_unselected_pressed_holo) that varies with configuration!!
01-25 21:32:30.371 67-67/? W/Resources: Preloaded drawable resource #0x10806ee (android:drawable/tab_selected_pressed_holo) that varies with configuration!!
01-25 21:32:30.372 67-67/? W/Resources: Preloaded drawable resource #0x10806df (android:drawable/tab_indicator_holo) that varies with configuration!!
01-25 21:32:30.373 67-67/? W/Resources: Preloaded drawable resource #0x10806f2 (android:drawable/tab_unselected_holo) that varies with configuration!!
01-25 21:32:30.375 67-67/? W/Resources: Preloaded drawable resource #0x10806ed (android:drawable/tab_selected_holo) that varies with configuration!!
01-25 21:32:30.388 67-67/? W/Resources: Preloaded drawable resource #0x10806f1 (android:drawable/tab_unselected_focused_holo) that varies with configuration!!
01-25 21:32:30.390 67-67/? W/Resources: Preloaded drawable resource #0x10806ec (android:drawable/tab_selected_focused_holo) that varies with configuration!!
01-25 21:32:30.392 67-67/? W/Resources: Preloaded drawable resource #0x10806f3 (android:drawable/tab_unselected_pressed_holo) that varies with configuration!!
01-25 21:32:30.394 67-67/? W/Resources: Preloaded drawable resource #0x10806ee (android:drawable/tab_selected_pressed_holo) that varies with configuration!!
01-25 21:32:30.409 67-67/? W/Resources: Preloaded drawable resource #0x1080596 (android:drawable/quickcontact_badge_overlay_pressed_dark) that varies with configuration!!
01-25 21:32:30.413 67-67/? W/Resources: Preloaded drawable resource #0x108058d (android:drawable/quickcontact_badge_overlay_focused_dark) that varies with configuration!!
01-25 21:32:30.415 67-67/? W/Resources: Preloaded drawable resource #0x1080592 (android:drawable/quickcontact_badge_overlay_normal_dark) that varies with configuration!!
01-25 21:32:30.416 67-67/? W/Resources: Preloaded drawable resource #0x108058c (android:drawable/quickcontact_badge_overlay_dark) that varies with configuration!!
01-25 21:32:30.487 67-67/? I/art: Explicit concurrent mark sweep GC freed 670(49KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1604KB/4MB, paused 593us total 66.620ms
01-25 21:32:30.494 67-67/? W/Resources: Preloaded drawable resource #0x1080592 (android:drawable/quickcontact_badge_overlay_normal_dark) that varies with configuration!!
01-25 21:32:30.496 67-67/? W/Resources: Preloaded drawable resource #0x1080596 (android:drawable/quickcontact_badge_overlay_pressed_dark) that varies with configuration!!
01-25 21:32:30.523 67-67/? W/Resources: Preloaded drawable resource #0x1080598 (android:drawable/quickcontact_badge_overlay_pressed_light) that varies with configuration!!
01-25 21:32:30.526 67-67/? W/Resources: Preloaded drawable resource #0x108058f (android:drawable/quickcontact_badge_overlay_focused_light) that varies with configuration!!
01-25 21:32:30.540 67-67/? W/Resources: Preloaded drawable resource #0x1080594 (android:drawable/quickcontact_badge_overlay_normal_light) that varies with configuration!!
01-25 21:32:30.540 67-67/? W/Resources: Preloaded drawable resource #0x1080591 (android:drawable/quickcontact_badge_overlay_light) that varies with configuration!!
01-25 21:32:30.543 67-67/? W/Resources: Preloaded drawable resource #0x1080594 (android:drawable/quickcontact_badge_overlay_normal_light) that varies with configuration!!
01-25 21:32:30.545 67-67/? W/Resources: Preloaded drawable resource #0x1080598 (android:drawable/quickcontact_badge_overlay_pressed_light) that varies with configuration!!
01-25 21:32:30.560 67-67/? W/Resources: Preloaded drawable resource #0x10800b5 (android:drawable/ab_share_pack_material) that varies with configuration!!
01-25 21:32:30.624 67-67/? I/art: Explicit concurrent mark sweep GC freed 485(39KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1616KB/4MB, paused 630us total 60.232ms
01-25 21:32:30.636 67-67/? W/Resources: Preloaded drawable resource #0x10800ba (android:drawable/ab_solid_shadow_material) that varies with configuration!!
01-25 21:32:30.664 67-67/? W/Resources: Preloaded drawable resource #0x10800db (android:drawable/btn_cab_done_material) that varies with configuration!!
01-25 21:32:30.889 67-67/? W/Resources: Preloaded drawable resource #0x10800e5 (android:drawable/btn_check_material_anim) that varies with configuration!!
01-25 21:32:30.968 67-67/? I/art: Explicit concurrent mark sweep GC freed 680(64KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1867KB/5MB, paused 612us total 73.258ms
01-25 21:32:31.215 67-67/? W/Resources: Preloaded drawable resource #0x10801a1 (android:drawable/btn_radio_material_anim) that varies with configuration!!
01-25 21:32:31.293 67-67/? I/art: Explicit concurrent mark sweep GC freed 819(302KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1867KB/5MB, paused 612us total 72.619ms
01-25 21:32:31.316 67-67/? W/Resources: Preloaded drawable resource #0x1080215 (android:drawable/btn_star_material) that varies with configuration!!
01-25 21:32:31.352 67-67/? W/Resources: Preloaded drawable resource #0x1080248 (android:drawable/btn_toggle_material) that varies with configuration!!
01-25 21:32:31.356 67-67/? W/Resources: Preloaded drawable resource #0x1080271 (android:drawable/cab_background_bottom_material) that varies with configuration!!
01-25 21:32:31.370 67-67/? W/Resources: Preloaded drawable resource #0x1080275 (android:drawable/cab_background_top_material) that varies with configuration!!
01-25 21:32:31.442 67-67/? I/art: Explicit concurrent mark sweep GC freed 504(285KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1634KB/4MB, paused 641us total 69.290ms
01-25 21:32:31.480 67-67/? W/Resources: Preloaded drawable resource #0x108028e (android:drawable/dialog_background_shadow_material) that varies with configuration!!
01-25 21:32:31.549 67-67/? I/art: Explicit concurrent mark sweep GC freed 173(39KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1691KB/4MB, paused 629us total 66.726ms
01-25 21:32:31.568 67-67/? W/Resources: Preloaded drawable resource #0x10802c7 (android:drawable/edit_text_material) that varies with configuration!!
01-25 21:32:31.574 67-67/? W/Resources: Preloaded drawable resource #0x10802e3 (android:drawable/expander_group_material) that varies with configuration!!
01-25 21:32:31.646 67-67/? W/Resources: Preloaded drawable resource #0x1080343 (android:drawable/ic_commit_search_api_material) that varies with configuration!!
01-25 21:32:31.715 67-67/? I/art: Explicit concurrent mark sweep GC freed 420(110KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1637KB/4MB, paused 630us total 65.513ms
01-25 21:32:31.733 67-67/? W/Resources: Preloaded drawable resource #0x108035b (android:drawable/ic_find_next_material) that varies with configuration!!
01-25 21:32:31.736 67-67/? W/Resources: Preloaded drawable resource #0x108035f (android:drawable/ic_find_previous_material) that varies with configuration!!
01-25 21:32:31.787 67-67/? W/Resources: Preloaded drawable resource #0x10803ab (android:drawable/ic_media_route_connecting_material) that varies with configuration!!
01-25 21:32:31.853 67-67/? I/art: Explicit concurrent mark sweep GC freed 538(46KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1656KB/4MB, paused 645us total 61.707ms
01-25 21:32:31.878 67-67/? W/Resources: Preloaded drawable resource #0x10803ab (android:drawable/ic_media_route_connecting_material) that varies with configuration!!
01-25 21:32:31.898 67-67/? W/Resources: Preloaded drawable resource #0x10803b1 (android:drawable/ic_media_route_material) that varies with configuration!!
01-25 21:32:31.970 67-67/? I/art: Explicit concurrent mark sweep GC freed 248(56KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1662KB/4MB, paused 631us total 68.943ms
01-25 21:32:32.021 67-67/? W/Resources: Preloaded drawable resource #0x10803dd (android:drawable/ic_menu_find_material) that varies with configuration!!
01-25 21:32:32.081 67-67/? I/art: Explicit concurrent mark sweep GC freed 1142(91KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1625KB/4MB, paused 590us total 58.259ms
01-25 21:32:32.096 67-67/? W/Resources: Preloaded drawable resource #0x10803f8 (android:drawable/ic_menu_search_material) that varies with configuration!!
01-25 21:32:32.174 67-67/? I/art: Explicit concurrent mark sweep GC freed 1518(59KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1636KB/4MB, paused 630us total 57.748ms
01-25 21:32:32.278 67-67/? I/art: Explicit concurrent mark sweep GC freed 1386(53KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1638KB/4MB, paused 12.079ms total 64.111ms
01-25 21:32:32.286 67-67/? W/Resources: Preloaded drawable resource #0x1080493 (android:drawable/list_divider_material) that varies with configuration!!
01-25 21:32:32.301 67-67/? W/Resources: Preloaded drawable resource #0x10804a0 (android:drawable/list_section_divider_material) that varies with configuration!!
01-25 21:32:32.322 67-67/? W/Resources: Preloaded drawable resource #0x1080564 (android:drawable/progress_horizontal_material) that varies with configuration!!
01-25 21:32:32.553 67-67/? I/art: Explicit concurrent mark sweep GC freed 1523(61KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1679KB/4MB, paused 640us total 83.637ms
01-25 21:32:32.629 67-67/? W/Resources: Preloaded drawable resource #0x10805ba (android:drawable/ratingbar_full_empty_material) that varies with configuration!!
01-25 21:32:32.687 67-67/? I/art: Explicit concurrent mark sweep GC freed 684(33KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1727KB/5MB, paused 3.738ms total 52.724ms
01-25 21:32:32.706 67-67/? W/Resources: Preloaded drawable resource #0x10805be (android:drawable/ratingbar_full_filled_material) that varies with configuration!!
01-25 21:32:32.725 67-67/? W/Resources: Preloaded drawable resource #0x10805ba (android:drawable/ratingbar_full_empty_material) that varies with configuration!!
01-25 21:32:32.743 67-67/? W/Resources: Preloaded drawable resource #0x10805ba (android:drawable/ratingbar_full_empty_material) that varies with configuration!!
01-25 21:32:32.763 67-67/? W/Resources: Preloaded drawable resource #0x10805be (android:drawable/ratingbar_full_filled_material) that varies with configuration!!
01-25 21:32:32.763 67-67/? W/Resources: Preloaded drawable resource #0x10805c1 (android:drawable/ratingbar_full_material) that varies with configuration!!
01-25 21:32:32.827 67-67/? I/art: Explicit concurrent mark sweep GC freed 411(54KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1817KB/5MB, paused 666us total 63.250ms
01-25 21:32:32.955 67-67/? W/Resources: Preloaded drawable resource #0x10805d9 (android:drawable/scrubber_control_material_anim) that varies with configuration!!
01-25 21:32:33.031 67-67/? I/art: Explicit concurrent mark sweep GC freed 327(149KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1728KB/5MB, paused 629us total 72.335ms
01-25 21:32:33.061 67-67/? W/Resources: Preloaded drawable resource #0x10805e1 (android:drawable/scrubber_control_selector_material) that varies with configuration!!
01-25 21:32:33.079 67-67/? W/Resources: Preloaded drawable resource #0x10805ec (android:drawable/scrubber_progress_horizontal_material) that varies with configuration!!
01-25 21:32:33.086 67-67/? W/Resources: Preloaded drawable resource #0x1080624 (android:drawable/spinner_background_material) that varies with configuration!!
01-25 21:32:33.144 67-67/? W/Resources: Preloaded drawable resource #0x1080641 (android:drawable/spinner_textfield_background_material) that varies with configuration!!
01-25 21:32:33.221 67-67/? I/art: Explicit concurrent mark sweep GC freed 491(52KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1733KB/5MB, paused 1.147ms total 62.520ms
01-25 21:32:33.396 67-67/? W/Resources: Preloaded drawable resource #0x10806b1 (android:drawable/switch_thumb_material_anim) that varies with configuration!!
01-25 21:32:33.462 330-330/? E/logwrapper: executing /system/bin/ip failed: No such file or directory
01-25 21:32:33.474 67-67/? I/art: Explicit concurrent mark sweep GC freed 629(57KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1851KB/5MB, paused 592us total 73.343ms
01-25 21:32:33.478 60-60/? E/Netd: failed to flush rules
01-25 21:32:33.478 60-60/? E/CommandListener: failed to initialize RouteController (Remote I/O error)
01-25 21:32:33.483 60-60/? D/MDnsDS: MDnsSdListener::Hander starting up
01-25 21:32:33.487 60-335/? D/MDnsDS: MDnsSdListener starting to monitor
01-25 21:32:33.487 60-335/? D/MDnsDS: Going to poll with pollCount 1
01-25 21:32:33.496 67-67/? W/Resources: Preloaded drawable resource #0x10806b6 (android:drawable/switch_track_material) that varies with configuration!!
01-25 21:32:33.500 67-67/? W/Resources: Preloaded drawable resource #0x10806e0 (android:drawable/tab_indicator_material) that varies with configuration!!
01-25 21:32:33.502 67-67/? W/Resources: Preloaded drawable resource #0x10806f7 (android:drawable/text_cursor_material) that varies with configuration!!
01-25 21:32:33.514 67-67/? W/Resources: Preloaded drawable resource #0x108072f (android:drawable/textfield_search_material) that varies with configuration!!
01-25 21:32:33.525 67-67/? W/Resources: Preloaded drawable resource #0x10806fd (android:drawable/text_select_handle_left_material) that varies with configuration!!
01-25 21:32:33.530 67-67/? W/Resources: Preloaded drawable resource #0x1080700 (android:drawable/text_select_handle_middle_material) that varies with configuration!!
01-25 21:32:33.533 67-67/? W/Resources: Preloaded drawable resource #0x1080703 (android:drawable/text_select_handle_right_material) that varies with configuration!!
01-25 21:32:33.566 67-67/? I/art: Explicit concurrent mark sweep GC freed 607(167KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1735KB/5MB, paused 589us total 29.065ms
01-25 21:32:33.570 67-67/? I/Zygote: ...preloaded 343 resources in 10494ms.
01-25 21:32:33.644 67-67/? I/art: Explicit concurrent mark sweep GC freed 858(73KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1711KB/5MB, paused 1.141ms total 31.702ms
01-25 21:32:33.652 67-67/? I/Zygote: ...preloaded 41 resources in 81ms.
01-25 21:32:33.653 67-67/? I/art: Counter: 0
01-25 21:32:33.665 67-67/? D/libEGL: loaded /system/lib/egl/libEGL_emulation.so
01-25 21:32:33.671 67-67/? D/libEGL: loaded /system/lib/egl/libGLESv1_CM_emulation.so
01-25 21:32:33.739 67-67/? D/libEGL: loaded /system/lib/egl/libGLESv2_emulation.so
01-25 21:32:33.806 67-67/? I/Zygote: Preloading shared libraries...
01-25 21:32:33.850 67-67/? D/Zygote: end preload
01-25 21:32:33.886 67-67/? I/art: Explicit concurrent mark sweep GC freed 426(18KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1701KB/4MB, paused 629us total 34.523ms
01-25 21:32:33.917 67-67/? I/art: Explicit concurrent mark sweep GC freed 96(3KB) AllocSpace objects, 0(0B) LOS objects, 66% free, 1697KB/4MB, paused 623us total 28.362ms
01-25 21:32:33.950 67-67/? I/art: Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 66% free, 1697KB/4MB, paused 561us total 30.589ms
01-25 21:32:34.163 67-67/? I/Zygote: System server process 339 has been created
01-25 21:32:34.182 67-67/? I/Zygote: Accepting command socket connections
01-25 21:32:34.361 339-339/system_process I/InstallerConnection: disconnecting...
01-25 21:32:34.525 339-339/system_process I/SystemServer: Entered the Android system server!
01-25 21:32:34.691 339-339/system_process V/Fingerprint-JNI: FingerprintManager JNI ready.
01-25 21:32:34.697 339-339/system_process D/SensorService: nuSensorService starting...
01-25 21:32:34.714 339-354/system_process D/SensorService: new thread SensorEventAckReceiver
01-25 21:32:34.715 339-355/system_process D/SensorService: nuSensorService thread starting...
01-25 21:32:34.785 339-339/system_process I/SystemServiceManager: Starting com.android.server.pm.Installer
01-25 21:32:34.814 339-339/system_process I/Installer: Waiting for installd to be ready.
01-25 21:32:34.815 339-339/system_process I/InstallerConnection: connecting...
01-25 21:32:34.821 65-65/? I/installd: new connection
01-25 21:32:34.826 339-339/system_process I/SystemServiceManager: Starting com.android.server.am.ActivityManagerService$Lifecycle
01-25 21:32:34.945 339-339/system_process I/ActivityManager: Memory class: 32
01-25 21:32:34.976 339-357/system_process I/ServiceThread: Enabled StrictMode logging for ActivityManager looper.
01-25 21:32:35.313 339-339/system_process I/IntentFirewall: Read new rules (A:0 B:0 S:0)
01-25 21:32:35.353 339-360/system_process I/ServiceThread: Enabled StrictMode logging for android.ui looper.
01-25 21:32:35.364 339-362/system_process I/ServiceThread: Enabled StrictMode logging for android.display looper.
01-25 21:32:35.390 339-339/system_process D/AppOps: AppOpsService published
01-25 21:32:35.392 339-339/system_process I/SystemServiceManager: Starting com.android.server.power.PowerManagerService
01-25 21:32:35.408 339-364/system_process I/ServiceThread: Enabled StrictMode logging for PowerManagerService looper.
01-25 21:32:35.421 339-339/system_process E/PowerManagerService-JNI: Couldn't load power module (No such file or directory)
01-25 21:32:35.422 339-339/system_process W/libsuspend: Error writing 'on' to /sys/power/state: Invalid argument
01-25 21:32:35.422 339-339/system_process I/libsuspend: Selected wakeup count
01-25 21:32:35.454 339-339/system_process I/SystemServiceManager: Starting com.android.server.display.DisplayManagerService
01-25 21:32:35.495 53-85/? E/SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
01-25 21:32:35.504 339-339/system_process I/SystemServiceManager: Starting phase 100
01-25 21:32:35.581 339-362/system_process I/DisplayManagerService: Display device added: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:0", 800 x 1280, 60.000004 fps, supportedRefreshRates [60.000004], density 213, 213.0 x 213.0 dpi, appVsyncOff 0, presDeadline 17666666, touch INTERNAL, rotation 0, type BUILT_IN, state UNKNOWN, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
01-25 21:32:35.588 339-339/system_process I/SystemServer: Package Manager
01-25 21:32:35.696 339-339/system_process W/SystemConfig: No directory /system/etc/sysconfig, skipping
01-25 21:32:35.843 339-339/system_process D/SELinuxMMAC: Using policy file /system/etc/security/mac_permissions.xml
01-25 21:32:36.184 339-339/system_process D/PackageManager: No files in app dir /vendor/overlay
01-25 21:32:36.198 339-339/system_process W/PackageManager: Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
01-25 21:32:36.442 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/BackupRestoreConfirmation/arm/BackupRestoreConfirmation.odex needs to be relocated for /system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
01-25 21:32:36.557 339-339/system_process W/PackageParser: No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #356
01-25 21:32:36.587 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/Contacts/arm/Contacts.odex needs to be relocated for /system/priv-app/Contacts/Contacts.apk
01-25 21:32:36.749 339-339/system_process W/PackageParser: No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #166
01-25 21:32:36.863 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/ExternalStorageProvider/arm/ExternalStorageProvider.odex needs to be relocated for /system/priv-app/ExternalStorageProvider/ExternalStorageProvider.apk
01-25 21:32:37.143 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/MmsService/arm/MmsService.odex needs to be relocated for /system/priv-app/MmsService/MmsService.apk
01-25 21:32:37.164 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/ProxyHandler/arm/ProxyHandler.odex needs to be relocated for /system/priv-app/ProxyHandler/ProxyHandler.apk
01-25 21:32:37.526 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/Shell/arm/Shell.odex needs to be relocated for /system/priv-app/Shell/Shell.apk
01-25 21:32:37.679 339-339/system_process W/ResourceType: Failure getting entry for 0x7f08026f (t=7 e=623) (error -75)
01-25 21:32:37.772 339-339/system_process W/PackageParser: Unknown element under <intent-filter>: android at /system/priv-app/Telecom/Telecom.apk Binary XML file line #232
01-25 21:32:37.881 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/priv-app/VpnDialogs/arm/VpnDialogs.odex needs to be relocated for /system/priv-app/VpnDialogs/VpnDialogs.apk
01-25 21:32:37.913 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/BasicDreams/arm/BasicDreams.odex needs to be relocated for /system/app/BasicDreams/BasicDreams.apk
01-25 21:32:38.038 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 45362(2MB) AllocSpace objects, 18(315KB) LOS objects, 46% free, 2MB/4MB, paused 1.293ms total 296.949ms
01-25 21:32:38.074 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/Calculator/arm/Calculator.odex needs to be relocated for /system/app/Calculator/Calculator.apk
01-25 21:32:38.173 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex needs to be relocated for /system/app/CaptivePortalLogin/CaptivePortalLogin.apk
01-25 21:32:38.203 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/CertInstaller/arm/CertInstaller.odex needs to be relocated for /system/app/CertInstaller/CertInstaller.apk
01-25 21:32:38.224 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/CustomLocale/arm/CustomLocale.odex needs to be relocated for /system/app/CustomLocale/CustomLocale.apk
01-25 21:32:38.410 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/Development/arm/Development.odex needs to be relocated for /system/app/Development/Development.apk
01-25 21:32:38.462 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/DocumentsUI/arm/DocumentsUI.odex needs to be relocated for /system/app/DocumentsUI/DocumentsUI.apk
01-25 21:32:38.486 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/DownloadProviderUi/arm/DownloadProviderUi.odex needs to be relocated for /system/app/DownloadProviderUi/DownloadProviderUi.apk
01-25 21:32:38.648 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/EmulatorSmokeTests/arm/EmulatorSmokeTests.odex needs to be relocated for /system/app/EmulatorSmokeTests/EmulatorSmokeTests.apk
01-25 21:32:38.714 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/Fallback/arm/Fallback.odex needs to be relocated for /system/app/Fallback/Fallback.apk
01-25 21:32:38.753 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/Gallery/arm/Gallery.odex needs to be relocated for /system/app/Gallery/Gallery.apk
01-25 21:32:38.781 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/HTMLViewer/arm/HTMLViewer.odex needs to be relocated for /system/app/HTMLViewer/HTMLViewer.apk
01-25 21:32:38.971 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex needs to be relocated for /system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
01-25 21:32:39.080 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/OpenWnn/arm/OpenWnn.odex needs to be relocated for /system/app/OpenWnn/OpenWnn.apk
01-25 21:32:39.099 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/PacProcessor/arm/PacProcessor.odex needs to be relocated for /system/app/PacProcessor/PacProcessor.apk
01-25 21:32:39.132 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/PackageInstaller/arm/PackageInstaller.odex needs to be relocated for /system/app/PackageInstaller/PackageInstaller.apk
01-25 21:32:39.224 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/Protips/arm/Protips.odex needs to be relocated for /system/app/Protips/Protips.apk
01-25 21:32:39.254 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/QuickSearchBox/arm/QuickSearchBox.odex needs to be relocated for /system/app/QuickSearchBox/QuickSearchBox.apk
01-25 21:32:39.275 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/SdkSetup/arm/SdkSetup.odex needs to be relocated for /system/app/SdkSetup/SdkSetup.apk
01-25 21:32:39.304 339-339/system_process I/art: DexFile_isDexOptNeeded file /system/app/SoundRecorder/arm/SoundRecorder.odex needs to be relocated for /system/app/SoundRecorder/SoundRecorder.apk
01-25 21:32:39.446 339-339/system_process D/PackageManager: No files in app dir /system/vendor/app
01-25 21:32:39.447 339-339/system_process D/PackageManager: No files in app dir /oem/app
01-25 21:32:39.468 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 42065(1826KB) AllocSpace objects, 0(0B) LOS objects, 33% free, 2MB/3MB, paused 1.253ms total 160.614ms
01-25 21:32:39.689 339-339/system_process W/PackageParser: No actions in intent filter at /data/app/ApiDemos/ApiDemos.apk Binary XML file line #3027
01-25 21:32:39.690 339-339/system_process W/PackageParser: No actions in intent filter at /data/app/ApiDemos/ApiDemos.apk Binary XML file line #3033
01-25 21:32:39.700 339-339/system_process W/PackageManager: Package com.example.android.apis desires unavailable shared library com.example.will.never.exist; ignoring!
01-25 21:32:39.740 339-339/system_process I/SELinux: SELinux: Loaded file_contexts from /file_contexts
01-25 21:32:40.453 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 12640(574KB) AllocSpace objects, 0(0B) LOS objects, 20% free, 2MB/3MB, paused 1.950ms total 124.945ms
01-25 21:32:40.891 339-339/system_process I/PackageManager: /data/app/com.dorianb.hunterofpicks.main.android-3 changed; collecting certs
01-25 21:32:41.101 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 14691(730KB) AllocSpace objects, 6(212KB) LOS objects, 33% free, 2MB/4MB, paused 2.433ms total 164.168ms
01-25 21:32:43.588 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 23300(856KB) AllocSpace objects, 2(74KB) LOS objects, 21% free, 3MB/4MB, paused 1.729ms total 121.522ms
01-25 21:32:44.064 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 29561(1348KB) AllocSpace objects, 10(402KB) LOS objects, 33% free, 3MB/4MB, paused 2.054ms total 189.224ms
01-25 21:32:44.115 339-339/system_process W/PackageManager: Failed to parse /data/app/com.dorianb.hunterofpicks.main.android-3: Application package com.dorianb.hunterofpicks.main.android already installed.  Skipping duplicate.
01-25 21:32:44.199 339-339/system_process I/PackageManager: /data/app/com.dorianb.hunterofpicks.main.android-4 changed; collecting certs
01-25 21:32:46.017 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 28646(1214KB) AllocSpace objects, 3(174KB) LOS objects, 33% free, 3MB/5MB, paused 1.150ms total 185.901ms
01-25 21:32:47.317 339-339/system_process W/PackageManager: Failed to parse /data/app/com.dorianb.hunterofpicks.main.android-4: Application package com.dorianb.hunterofpicks.main.android already installed.  Skipping duplicate.
01-25 21:32:47.367 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 18541(708KB) AllocSpace objects, 8(286KB) LOS objects, 17% free, 4MB/5MB, paused 1.819ms total 104.176ms
01-25 21:32:47.465 339-339/system_process D/PackageManager: No files in app dir /data/app-private
01-25 21:32:47.465 339-339/system_process W/PackageManager: Package com.android.camera desires unavailable shared library com.google.android.media.effects; ignoring!
01-25 21:32:47.465 339-339/system_process W/PackageManager: Package com.example.android.apis desires unavailable shared library com.example.will.never.exist; ignoring!
01-25 21:32:47.466 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.server.telecom to armeabi-v7a
01-25 21:32:47.472 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.providers.settings to armeabi-v7a
01-25 21:32:47.475 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.keychain to armeabi-v7a
01-25 21:32:47.476 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.inputdevices to armeabi-v7a
01-25 21:32:47.477 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.settings to armeabi-v7a
01-25 21:32:47.479 339-339/system_process I/PackageManager: Adjusting ABI for : com.android.location.fused to armeabi-v7a
01-25 21:32:47.494 339-339/system_process I/PackageManager: Time to scan packages: 11.461 seconds
01-25 21:32:47.495 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar
01-25 21:32:47.496 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar
01-25 21:32:47.497 339-339/system_process W/PackageManager: Not granting permission android.permission.GLOBAL_SEARCH to package com.android.quicksearchbox (protectionLevel=18 flags=0x8be45)
01-25 21:32:47.499 339-339/system_process W/PackageManager: Not granting permission android.permission.ACCESS_DOWNLOAD_MANAGER to package com.android.browser (protectionLevel=18 flags=0x9be45)
01-25 21:32:47.499 339-339/system_process W/PackageManager: Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
01-25 21:32:47.500 339-339/system_process W/PackageManager: Unknown permission android.permission.INSTALL_DRM in package com.android.mms
01-25 21:32:47.500 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar
01-25 21:32:47.502 339-339/system_process W/PackageManager: Not granting permission android.permission.DELETE_PACKAGES to package com.svox.pico (protectionLevel=18 flags=0x8be45)
01-25 21:32:47.503 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
01-25 21:32:47.505 339-339/system_process W/PackageManager: Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
01-25 21:32:47.506 339-339/system_process W/PackageManager: Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x48be45)
01-25 21:32:47.508 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
01-25 21:32:47.508 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
01-25 21:32:47.509 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
01-25 21:32:47.509 339-339/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
01-25 21:32:47.509 339-339/system_process W/PackageManager: Not granting permission android.permission.BIND_APPWIDGET to package com.android.widgetpreview (protectionLevel=18 flags=0x8be44)
01-25 21:32:47.735 339-339/system_process I/art: Explicit concurrent mark sweep GC freed 32389(1816KB) AllocSpace objects, 5(206KB) LOS objects, 33% free, 2MB/3MB, paused 1.038ms total 94.067ms
01-25 21:32:47.740 339-339/system_process I/SystemServer: User Service
01-25 21:32:47.776 50-50/? I/lowmemorykiller: ActivityManager connected
01-25 21:32:47.789 339-339/system_process I/SystemServiceManager: Starting com.android.server.lights.LightsService
01-25 21:32:47.804 339-339/system_process I/SystemServiceManager: Starting com.android.server.BatteryService
01-25 21:32:47.844 339-339/system_process I/SystemServiceManager: Starting com.android.server.usage.UsageStatsService
01-25 21:32:47.883 339-339/system_process I/SystemServiceManager: Starting com.android.server.webkit.WebViewUpdateService
01-25 21:32:47.903 339-339/system_process I/SystemServer: Reading configuration...
01-25 21:32:47.904 339-339/system_process I/SystemServer: Scheduling Policy
01-25 21:32:47.911 339-339/system_process I/SystemServiceManager: Starting com.android.server.telecom.TelecomLoaderService
01-25 21:32:47.915 339-339/system_process I/SystemServer: Telephony Registry
01-25 21:32:47.944 339-339/system_process I/SystemServer: Entropy Mixer
01-25 21:32:47.960 339-339/system_process I/EntropyMixer: Writing entropy...
01-25 21:32:47.972 339-339/system_process I/SystemServer: Account Manager
01-25 21:32:48.012 339-339/system_process I/SystemServer: Content Manager
01-25 21:32:48.050 339-339/system_process I/SystemServer: System Content Providers
01-25 21:32:48.272 339-339/system_process I/SystemServer: Vibrator Service
01-25 21:32:48.280 339-339/system_process I/SystemServer: Consumer IR Service
01-25 21:32:48.282 339-339/system_process E/ConsumerIrService: Can't open consumer IR HW Module, error: -2
01-25 21:32:48.284 339-339/system_process I/SystemServiceManager: Starting com.android.server.AlarmManagerService
01-25 21:32:48.304 339-339/system_process D/AlarmManagerService: Kernel timezone updated to 0 minutes west of GMT
01-25 21:32:48.333 339-339/system_process I/SystemServer: Init Watchdog
01-25 21:32:48.336 339-339/system_process I/SystemServer: Input Manager
01-25 21:32:48.343 339-339/system_process I/InputManager: Initializing input manager, mUseDevInputEventForAudioJack=false
01-25 21:32:48.408 339-339/system_process I/SystemServer: Window Manager
01-25 21:32:48.630 339-362/system_process I/WindowManager: No existing display settings /data/system/display_settings.xml; starting empty
01-25 21:32:48.656 53-189/? D/PermissionCache: checking android.permission.ACCESS_SURFACE_FLINGER for uid=1000 => granted (6706 us)
01-25 21:32:48.942 339-339/system_process I/InputManager: Starting input manager
01-25 21:32:48.963 339-373/system_process E/EventHub: could not get driver version for /dev/input/mouse0, Not a typewriter
01-25 21:32:49.022 339-373/system_process W/EventHub: Unable to disable kernel key repeat for /dev/input/event0: Function not implemented
01-25 21:32:49.024 339-373/system_process I/EventHub: New device: id=1, fd=76, path='/dev/input/event0', name='qwerty2', classes=0x7, configuration='/system/usr/idc/qwerty2.idc', keyLayout='/system/usr/keylayout/qwerty.kl', keyCharacterMap='/system/usr/keychars/qwerty2.kcm', builtinKeyboard=true, wakeMechanism=EVIOCSSUSPENDBLOCK, usingClockIoctl=true
01-25 21:32:49.024 339-373/system_process E/EventHub: could not get driver version for /dev/input/mice, Not a typewriter
01-25 21:32:49.046 339-373/system_process I/InputReader: Device added: id=-1, name='Virtual', sources=0x00000301
01-25 21:32:49.055 339-373/system_process I/InputReader:   Touch device 'qwerty2' could not query the properties of its associated display.  The device will be inoperable until the display size becomes available.
01-25 21:32:49.056 339-373/system_process I/InputReader: Device added: id=0, name='qwerty2', sources=0x00001103
01-25 21:32:49.111 339-339/system_process I/SystemServer: No Bluetooh Service (emulator)
01-25 21:32:49.112 339-339/system_process I/SystemServer: Input Method Service
01-25 21:32:49.167 339-339/system_process W/InputMethodManagerService: Couldn't create dir.: /data/system/inputmethod
01-25 21:32:49.261 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 8821(664KB) AllocSpace objects, 1(16KB) LOS objects, 16% free, 3MB/3MB, paused 7.423ms total 311.493ms
01-25 21:32:49.348 339-339/system_process I/SystemServer: Accessibility Manager
01-25 21:32:49.420 339-339/system_process I/ActivityManager: Config changes=1df8 {1.0 ?mcc?mnc en_US ?layoutDir sw600dp w600dp h961dp 213dpi lrg port ?uimode ?night -touch qwerty/v/v -nav/h s.2}
01-25 21:32:49.459 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000004
01-25 21:32:49.459 339-373/system_process I/InputReader: Device reconfigured: id=0, name='qwerty2', size 800x1280, orientation 0, mode 1, display id 0
01-25 21:32:49.475 339-339/system_process I/ActivityManager: Config changes=408 {1.0 ?mcc?mnc en_US ?layoutDir sw600dp w600dp h888dp 213dpi lrg port ?uimode ?night finger qwerty/v/v -nav/h s.3}
01-25 21:32:49.503 339-339/system_process I/SystemServer: Mount Service
01-25 21:32:49.515 339-339/system_process D/MountService: got storage path: /storage/sdcard description: USB storage primary: true removable: false emulated: false mtpReserve: 0 allowMassStorage: false maxFileSize: 0
01-25 21:32:49.525 339-339/system_process D/MountService: addVolumeLocked() StorageVolume:
                                                              mStorageId=0 mPath=/storage/sdcard mDescriptionId=17040807 mPrimary=true 
                                                              mRemovable=false mEmulated=false mMtpReserveSpace=0 
                                                              mAllowMassStorage=false mMaxFileSize=0 mOwner=null mUuid=null 
                                                              mUserLabel=null mState=null 
01-25 21:32:49.571 339-339/system_process I/SystemServer: LockSettingsService
01-25 21:32:49.627 339-376/system_process D/MountService: volume state changed for /storage/sdcard (unmounted -> removed)
01-25 21:32:49.637 339-339/system_process I/SystemServiceManager: Starting com.android.server.devicepolicy.DevicePolicyManagerService$Lifecycle
01-25 21:32:49.644 339-376/system_process W/MountService: getSecureContainerList() called when storage not mounted
01-25 21:32:49.650 339-376/system_process I/PackageManager: No secure containers found
01-25 21:32:49.652 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar
01-25 21:32:49.652 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar
01-25 21:32:49.653 339-376/system_process W/PackageManager: Not granting permission android.permission.GLOBAL_SEARCH to package com.android.quicksearchbox (protectionLevel=18 flags=0x8be45)
01-25 21:32:49.653 339-376/system_process W/PackageManager: Not granting permission android.permission.ACCESS_DOWNLOAD_MANAGER to package com.android.browser (protectionLevel=18 flags=0x9be45)
01-25 21:32:49.654 339-376/system_process W/PackageManager: Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
01-25 21:32:49.654 339-376/system_process W/PackageManager: Unknown permission android.permission.INSTALL_DRM in package com.android.mms
01-25 21:32:49.655 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar
01-25 21:32:49.655 339-376/system_process W/PackageManager: Not granting permission android.permission.DELETE_PACKAGES to package com.svox.pico (protectionLevel=18 flags=0x8be45)
01-25 21:32:49.656 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
01-25 21:32:49.668 339-376/system_process W/PackageManager: Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
01-25 21:32:49.669 339-376/system_process W/PackageManager: Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x48be45)
01-25 21:32:49.670 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
01-25 21:32:49.670 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
01-25 21:32:49.670 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
01-25 21:32:49.670 339-376/system_process W/PackageManager: Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
01-25 21:32:49.670 339-376/system_process W/PackageManager: Not granting permission android.permission.BIND_APPWIDGET to package com.android.widgetpreview (protectionLevel=18 flags=0x8be44)
01-25 21:32:49.800 339-339/system_process I/SystemServer: Status Bar
01-25 21:32:49.811 339-376/system_process W/MountService: getSecureContainerList() called when storage not mounted
01-25 21:32:49.820 339-339/system_process I/SystemServer: Clipboard Service
01-25 21:32:49.830 339-339/system_process I/SystemServer: NetworkManagement Service
01-25 21:32:49.857 339-339/system_process I/SystemServer: Text Service Manager Service
01-25 21:32:49.885 339-339/system_process I/SystemServer: Network Score Service
01-25 21:32:49.890 339-339/system_process I/SystemServer: NetworkStats Service
01-25 21:32:49.925 339-339/system_process I/SystemServer: NetworkPolicy Service
01-25 21:32:50.063 339-339/system_process I/SystemServiceManager: Starting com.android.server.wifi.p2p.WifiP2pService
01-25 21:32:50.257 339-339/system_process I/WifiP2pService: Registering wifip2p
01-25 21:32:50.269 339-339/system_process I/SystemServiceManager: Starting com.android.server.wifi.WifiService
01-25 21:32:50.495 339-351/system_process W/art: Suspending all threads took: 16.097ms
01-25 21:32:50.558 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 13236(992KB) AllocSpace objects, 4(64KB) LOS objects, 33% free, 3MB/5MB, paused 26.240ms total 952.800ms
01-25 21:32:51.021 339-339/system_process E/WifiConfigStore: associatedPartialScanPeriodMilli set to 20000
01-25 21:32:51.097 339-339/system_process D/WifiController: isAirplaneModeOn = false, isWifiEnabled = false, isScanningAvailable = false
01-25 21:32:51.105 339-339/system_process I/WifiService: Registering wifi
01-25 21:32:51.111 339-339/system_process I/SystemServiceManager: Starting com.android.server.wifi.WifiScanningService
01-25 21:32:51.111 339-339/system_process I/WifiScanningService: Creating wifiscanner
01-25 21:32:51.112 339-339/system_process I/WifiScanningService: Starting wifiscanner
01-25 21:32:51.117 339-339/system_process I/SystemServiceManager: Starting com.android.server.wifi.RttService
01-25 21:32:51.118 339-339/system_process I/RttService: Creating rttmanager
01-25 21:32:51.120 339-339/system_process I/RttService: Starting rttmanager
01-25 21:32:51.124 339-339/system_process I/SystemServer: Connectivity Service
01-25 21:32:51.151 339-339/system_process D/ConnectivityService: ConnectivityService starting up
01-25 21:32:51.171 339-339/system_process D/ConnectivityService: wifiOnly=false
01-25 21:32:51.277 339-339/system_process I/SystemServer: Network Service Discovery Service
01-25 21:32:51.303 339-339/system_process D/NsdService: Network service discovery enabled true
01-25 21:32:51.314 339-339/system_process I/SystemServer: UpdateLock Service
01-25 21:32:51.412 339-339/system_process I/SystemServiceManager: Starting com.android.server.notification.NotificationManagerService
01-25 21:32:51.509 339-339/system_process D/ZenLog: set_zen_mode: off,setting
01-25 21:32:51.520 339-339/system_process I/SystemServiceManager: Starting com.android.server.storage.DeviceStorageMonitorService
01-25 21:32:51.534 339-339/system_process I/SystemServer: Location Manager
01-25 21:32:51.547 339-339/system_process I/SystemServer: Country Detector
01-25 21:32:51.551 339-339/system_process I/SystemServer: Search Service
01-25 21:32:51.562 339-339/system_process I/SystemServer: DropBox Service
01-25 21:32:51.573 339-339/system_process I/SystemServer: Wallpaper Service
01-25 21:32:51.616 339-339/system_process I/SystemServer: Audio Service
01-25 21:32:51.703 339-339/system_process W/TelecomManager: Telecom Service not found.
01-25 21:32:51.856 339-339/system_process I/SystemServiceManager: Starting com.android.server.DockObserver
01-25 21:32:51.860 339-339/system_process W/DockObserver: This kernel does not have dock station support
01-25 21:32:51.867 339-339/system_process I/SystemServer: Wired Accessory Manager
01-25 21:32:51.876 339-339/system_process W/WiredAccessoryManager: This kernel does not have wired headset support
01-25 21:32:51.876 339-339/system_process W/WiredAccessoryManager: This kernel does not have usb audio support
01-25 21:32:51.877 339-339/system_process W/WiredAccessoryManager: This kernel does not have HDMI audio support
01-25 21:32:51.878 339-339/system_process I/SystemServer: Serial Service
01-25 21:32:51.881 339-339/system_process I/SystemServiceManager: Starting com.android.server.twilight.TwilightService
01-25 21:32:51.899 339-339/system_process I/SystemServiceManager: Starting com.android.server.UiModeManagerService
01-25 21:32:51.920 339-339/system_process I/SystemServiceManager: Starting com.android.server.job.JobSchedulerService
01-25 21:32:51.948 339-339/system_process I/SystemServiceManager: Starting com.android.server.backup.BackupManagerService$Lifecycle
01-25 21:32:51.958 339-339/system_process I/SystemServiceManager: Starting com.android.server.appwidget.AppWidgetService
01-25 21:32:51.994 339-339/system_process I/SystemServiceManager: Starting com.android.server.voiceinteraction.VoiceInteractionManagerService
01-25 21:32:52.007 339-339/system_process W/SoundTriggerHelper: listModules status=0, # of modules=0
01-25 21:32:52.009 339-339/system_process I/SystemServer: DiskStats Service
01-25 21:32:52.012 339-339/system_process I/SystemServer: SamplingProfiler Service
01-25 21:32:52.025 339-339/system_process I/SystemServer: NetworkTimeUpdateService
01-25 21:32:52.030 339-339/system_process I/SystemServer: CommonTimeManagementService
01-25 21:32:52.039 339-339/system_process I/SystemServer: CertBlacklister
01-25 21:32:52.044 339-339/system_process I/SystemServiceManager: Starting com.android.server.dreams.DreamManagerService
01-25 21:32:52.058 339-339/system_process I/SystemServer: Assets Atlas Service
01-25 21:32:52.071 339-339/system_process I/SystemServiceManager: Starting com.android.server.print.PrintManagerService
01-25 21:32:52.111 339-339/system_process I/SystemServiceManager: Starting com.android.server.restrictions.RestrictionsManagerService
01-25 21:32:52.117 339-339/system_process I/SystemServiceManager: Starting com.android.server.media.MediaSessionService
01-25 21:32:52.118 339-391/system_process D/AssetAtlas: Loaded configuration: SliceMinArea (768x768) flags=0x2 count=2
01-25 21:32:52.198 339-351/system_process W/art: Suspending all threads took: 12.830ms
01-25 21:32:52.218 339-339/system_process I/SystemServer: Media Router Service
01-25 21:32:52.226 339-339/system_process I/SystemServiceManager: Starting com.android.server.trust.TrustManagerService
01-25 21:32:52.247 339-339/system_process I/SystemServiceManager: Starting com.android.server.fingerprint.FingerprintService
01-25 21:32:52.268 339-339/system_process V/Fingerprint-JNI: nativeInit()
01-25 21:32:52.273 339-339/system_process V/Fingerprint-JNI: nativeOpenHal()
01-25 21:32:52.273 339-339/system_process E/Fingerprint-JNI: Can't open fingerprint HW Module, error: -2
01-25 21:32:52.273 339-339/system_process I/SystemServer: BackgroundDexOptService
01-25 21:32:52.292 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 19506(1330KB) AllocSpace objects, 6(96KB) LOS objects, 15% free, 4MB/5MB, paused 28.465ms total 712.446ms
01-25 21:32:52.314 339-391/system_process D/AssetAtlas: Rendered atlas in 58.90ms (5.01+53.89ms)
01-25 21:32:52.318 339-339/system_process I/SystemServiceManager: Starting com.android.server.pm.LauncherAppsService
01-25 21:32:52.328 339-339/system_process I/SystemServiceManager: Starting com.android.server.media.projection.MediaProjectionManagerService
01-25 21:32:52.377 339-339/system_process I/WindowManager: SAFE MODE not enabled
01-25 21:32:52.387 339-339/system_process I/SystemServiceManager: Starting com.android.server.MmsServiceBroker
01-25 21:32:52.440 339-339/system_process E/SQLiteLog: (283) recovered 16 frames from WAL file /data/system/locksettings.db-wal
01-25 21:32:52.482 339-339/system_process E/LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/password.key: open failed: ENOENT (No such file or directory)
01-25 21:32:52.482 339-339/system_process E/LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gesture.key: open failed: ENOENT (No such file or directory)
01-25 21:32:52.483 339-339/system_process I/SystemServiceManager: Starting phase 480
01-25 21:32:52.509 339-339/system_process I/SystemServiceManager: Starting phase 500
01-25 21:32:52.510 339-339/system_process I/WifiService: WifiService starting up with Wi-Fi disabled
01-25 21:32:52.552 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:32:52.561 339-339/system_process I/WifiScanningService: Registering wifiscanner
01-25 21:32:52.629 339-339/system_process D/WifiScanningService: New client, channel: null messenger: null
01-25 21:32:52.638 339-395/system_process D/WifiScanningService: DefaultState
01-25 21:32:52.639 339-395/system_process D/WifiChangeStateMachine: Entering IdleState
01-25 21:32:52.639 339-339/system_process I/RttService: Registering rttmanager
01-25 21:32:52.683 339-339/system_process I/ActivityManager: Config changes=200 {1.0 ?mcc?mnc en_US ?layoutDir sw600dp w600dp h888dp 213dpi lrg port finger qwerty/v/v -nav/h s.4}
01-25 21:32:52.816 339-339/system_process D/BackupManagerService: Now staging backup of com.android.browser
01-25 21:32:52.823 339-339/system_process D/BackupManagerService: Now staging backup of android
01-25 21:32:52.826 339-339/system_process D/BackupManagerService: Now staging backup of com.android.calendar
01-25 21:32:52.839 339-339/system_process D/BackupManagerService: Now staging backup of com.android.providers.settings
01-25 21:32:52.843 339-339/system_process D/BackupManagerService: Now staging backup of com.android.sharedstoragebackup
01-25 21:32:52.845 339-339/system_process D/BackupManagerService: Now staging backup of com.android.dialer
01-25 21:32:52.847 339-339/system_process D/BackupManagerService: Now staging backup of com.android.providers.userdictionary
01-25 21:32:52.850 339-339/system_process V/BackupManagerService: Starting with transport android/com.android.internal.backup.LocalTransport
01-25 21:32:52.851 339-339/system_process V/BackupManagerService: Found transports: 1
01-25 21:32:52.852 339-339/system_process I/BackupManagerService: Binding to transport host ComponentInfo{android/com.android.internal.backup.LocalTransportService}
01-25 21:32:52.899 339-339/system_process I/BackupManagerService: Found stale backup journal, scheduling
01-25 21:32:52.912 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 7382(559KB) AllocSpace objects, 3(48KB) LOS objects, 33% free, 4MB/7MB, paused 5.594ms total 331.759ms
01-25 21:32:52.995 339-356/system_process I/UsageStatsService: User[0] Rollover scheduled @ 2016-01-26 00:00:00(1453766400000)
01-25 21:32:53.077 339-362/system_process I/DisplayManagerService: Display device changed: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:0", 800 x 1280, 60.000004 fps, supportedRefreshRates [60.000004], density 213, 213.0 x 213.0 dpi, appVsyncOff 0, presDeadline 17666666, touch INTERNAL, rotation 0, type BUILT_IN, state ON, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
01-25 21:32:53.109 53-53/? D/SurfaceFlinger: Set power mode=2, type=0 flinger=0xb6082000
01-25 21:32:53.109 53-53/? D/SurfaceFlinger: Screen type=0 is already mode=2
01-25 21:32:53.213 339-339/system_process I/ActivityManager: System now ready
01-25 21:32:53.232 339-339/system_process I/SystemServer: Making services ready
01-25 21:32:53.233 339-339/system_process I/SystemServiceManager: Starting phase 550
01-25 21:32:53.245 339-339/system_process I/SystemServer: WebViewFactory preparation
01-25 21:32:53.272 339-339/system_process I/Zygote: Process: zygote socket opened, supported ABIS: armeabi-v7a,armeabi
01-25 21:32:53.346 339-339/system_process I/ActivityManager: Start proc 401:WebViewLoader-armeabi-v7a/1037 [android.webkit.WebViewFactory$RelroFileCreator] for 
01-25 21:32:53.536 401-401/? V/WebViewFactory: RelroFileCreator (64bit = false),  32-bit lib: /system/app/webview/lib/arm/libwebviewchromium.so, 64-bit lib: 
01-25 21:32:53.577 67-67/? I/art: Background concurrent mark sweep GC freed 776(32KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 610us total 139.267ms
01-25 21:32:53.624 339-339/system_process I/ActivityManager: Start proc 416:com.android.systemui/u0a12 for service com.android.systemui/.SystemUIService
01-25 21:32:53.636 339-339/system_process D/NetworkManagementService: enabling bandwidth control
01-25 21:32:54.397 401-401/? I/art: System.exit called, status: 0
01-25 21:32:54.412 401-401/? I/AndroidRuntime: VM exiting with result code 0, cleanup skipped.
01-25 21:32:54.543 416-416/? V/SystemUIService: Starting SystemUI services.
01-25 21:32:54.749 339-353/system_process V/FingerprintService: startListening(android.service.fingerprint.IFingerprintServiceReceiver$Stub$Proxy@2c8abe9)
01-25 21:32:55.026 64-442/? E/WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
01-25 21:32:55.234 64-176/? D/NuPlayerDriver: start(0xb5873f40)
01-25 21:32:55.235 64-441/? I/GenericSource: start
01-25 21:32:55.433 64-449/? W/OMXNodeInstance: [f:google.mpeg4.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.439 64-449/? W/OMXNodeInstance: [10:google.h263.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.446 64-449/? W/OMXNodeInstance: [11:google.h264.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.461 64-449/? D/SoftHEVC: Number of CPU cores: 1
01-25 21:32:55.463 64-449/? D/SoftHEVC: Initializing decoder
01-25 21:32:55.466 64-449/? D/SoftHEVC: Set number of cores to 1
01-25 21:32:55.466 64-449/? D/SoftHEVC: Ittiam decoder version number: @(#)Id:HEVCDEC_production Ver:04.01 Released by ITTIAM Build: Feb 14 2015 @ 14:22:22
01-25 21:32:55.466 64-449/? W/OMXNodeInstance: [12:google.hevc.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.467 64-449/? D/SoftHEVC: Freeing codec memory
01-25 21:32:55.470 64-449/? D/SoftHEVC: Number of CPU cores: 1
01-25 21:32:55.471 64-449/? D/SoftHEVC: Initializing decoder
01-25 21:32:55.473 64-449/? D/SoftHEVC: Set number of cores to 1
01-25 21:32:55.473 64-449/? D/SoftHEVC: Ittiam decoder version number: @(#)Id:HEVCDEC_production Ver:04.01 Released by ITTIAM Build: Feb 14 2015 @ 14:22:22
01-25 21:32:55.476 64-449/? D/SoftHEVC: In SoftHEVC::~SoftHEVC
01-25 21:32:55.476 64-449/? D/SoftHEVC: Freeing codec memory
01-25 21:32:55.489 64-449/? W/OMXNodeInstance: [13:google.vp8.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.496 64-449/? W/OMXNodeInstance: [14:google.vp9.decoder] component does not support metadata mode; using fallback
01-25 21:32:55.514 64-449/? I/SoftMPEG4Encoder: Construct SoftMPEG4Encoder
01-25 21:32:55.515 64-449/? W/ACodec: do not know color format 0x7f000789 = 2130708361
01-25 21:32:55.522 64-449/? I/SoftAVCEncoder: Construct SoftAVCEncoder
01-25 21:32:55.522 64-449/? W/ACodec: do not know color format 0x7f000789 = 2130708361
01-25 21:32:55.529 64-449/? I/SoftMPEG4Encoder: Construct SoftMPEG4Encoder
01-25 21:32:55.529 64-449/? W/ACodec: do not know color format 0x7f000789 = 2130708361
01-25 21:32:55.540 64-449/? W/ACodec: do not know color format 0x7f000789 = 2130708361
01-25 21:32:55.706 64-176/? D/NuPlayerDriver: reset(0xb5873f40)
01-25 21:32:55.758 64-441/? D/NuPlayerDriver: notifyResetComplete(0xb5873f40)
01-25 21:32:55.977 64-389/? D/NuPlayerDriver: start(0xb591b280)
01-25 21:32:55.978 64-502/? I/GenericSource: start
01-25 21:32:56.103 64-389/? D/NuPlayerDriver: reset(0xb591b280)
01-25 21:32:56.115 64-502/? D/NuPlayerDriver: notifyResetComplete(0xb591b280)
01-25 21:32:56.461 64-388/? D/NuPlayerDriver: start(0xb591b100)
01-25 21:32:56.462 64-511/? I/GenericSource: start
01-25 21:32:56.544 64-388/? D/NuPlayerDriver: reset(0xb591b100)
01-25 21:32:56.561 64-511/? D/NuPlayerDriver: notifyResetComplete(0xb591b100)
01-25 21:32:56.612 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:56.612 416-416/? W/PackageManager: Failure retrieving resources for com.CircleWar.game.android: Resource ID #0x0
01-25 21:32:57.003 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.003 416-416/? W/PackageManager: Failure retrieving resources for com.dorianb.lolhunter.main.android: Resource ID #0x0
01-25 21:32:57.080 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.081 416-416/? W/PackageManager: Failure retrieving resources for com.dorianb.enigma: Resource ID #0x0
01-25 21:32:57.211 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.212 416-416/? W/PackageManager: Failure retrieving resources for com.dorianb.nombremysterieux: Resource ID #0x0
01-25 21:32:57.279 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.279 416-416/? W/PackageManager: Failure retrieving resources for com.dorianb.mysteriousnumber: Resource ID #0x0
01-25 21:32:57.312 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.312 416-416/? W/PackageManager: Failure retrieving resources for com.android.camera: Resource ID #0x0
01-25 21:32:57.493 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.494 416-416/? W/PackageManager: Failure retrieving resources for com.google.android.gms.example.bannerexample: Resource ID #0x0
01-25 21:32:57.579 416-416/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:32:57.580 416-416/? W/PackageManager: Failure retrieving resources for com.dorianb.hunterofpicks.main.android: Resource ID #0x0
01-25 21:32:57.911 339-339/system_process E/NetdConnector: NDC Command {1 bandwidth enable} took too long (4273ms)
01-25 21:32:58.679 339-339/system_process E/NetdConnector: NDC Command {2 firewall disable} took too long (737ms)
01-25 21:32:59.068 416-427/? W/art: Suspending all threads took: 18.224ms
01-25 21:32:59.208 416-416/? I/art: WaitForGcToComplete blocked for 5.593ms for cause DisableMovingGc
01-25 21:32:59.374 416-416/? D/VolumeUI: Registering volume controller
01-25 21:32:59.790 339-339/system_process E/NetdConnector: NDC Command {5 firewall disable} took too long (537ms)
01-25 21:32:59.790 339-339/system_process D/PermissionMonitor: Monitoring
01-25 21:32:59.798 339-339/system_process D/PermissionMonitor: Users: 1, Apps: 49
01-25 21:32:59.835 339-339/system_process I/SystemServiceManager: Starting phase 600
01-25 21:32:59.840 339-387/system_process E/BluetoothAdapter: Bluetooth binder is null
01-25 21:32:59.842 339-387/system_process E/BluetoothAdapter: Bluetooth binder is null
01-25 21:32:59.904 339-339/system_process I/BackupManagerService: Backup enabled => true
01-25 21:32:59.970 339-339/system_process E/InputMethodManagerService: Ignoring setImeWindowStatus due to an invalid token. uid:1000 token:null
01-25 21:33:00.060 339-353/system_process I/StatusBarManagerService: registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@27e11b9f
01-25 21:33:00.255 67-67/? I/art: Background concurrent mark sweep GC freed 782(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 632us total 139.726ms
01-25 21:33:00.323 339-339/system_process I/ActivityManager: Start proc 556:com.android.inputmethod.latin/u0a30 for service com.android.inputmethod.latin/.LatinIME
01-25 21:33:00.324 339-339/system_process V/InputMethodManagerService: Adding window token: android.os.Binder@3211e3d8
01-25 21:33:00.468 339-339/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 0
01-25 21:33:00.468 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:00.468 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:00.469 339-339/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:00.469 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:00.469 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:00.474 339-339/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:00.474 339-339/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:00.475 339-339/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:00.493 339-339/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:00.493 339-339/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:00 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:00.533 64-64/? D/NuPlayerDriver: start(0xb5873ca0)
01-25 21:33:00.534 64-554/? I/GenericSource: start
01-25 21:33:00.562 339-339/system_process W/ServiceWatcher: com.google.android.location not found
01-25 21:33:00.571 339-339/system_process W/ServiceWatcher: com.google.android.location not found
01-25 21:33:00.573 339-339/system_process W/LocationManagerService: no network location provider found
01-25 21:33:00.575 339-339/system_process W/ServiceWatcher: com.google.android.location not found
01-25 21:33:00.648 339-339/system_process W/ServiceWatcher: com.google.android.location not found
01-25 21:33:00.648 339-339/system_process E/LocationManagerService: no geocoder provider found
01-25 21:33:00.649 339-339/system_process E/FlpHardwareProvider: Error hw_get_module 'flp': -2
01-25 21:33:00.650 339-339/system_process E/LocationManagerService: FLP HAL not supported
01-25 21:33:00.714 339-339/system_process W/ServiceWatcher: com.google.android.location not found
01-25 21:33:00.727 64-64/? D/NuPlayerDriver: reset(0xb5873ca0)
01-25 21:33:00.760 64-554/? D/NuPlayerDriver: notifyResetComplete(0xb5873ca0)
01-25 21:33:00.777 339-339/system_process E/LocationManagerService: Unable to bind FLP Geofence proxy.
01-25 21:33:00.779 339-339/system_process E/ActivityRecognitionHardware: Error hw_get_module: -2
01-25 21:33:00.779 339-339/system_process E/LocationManagerService: Hardware Activity-Recognition not supported.
01-25 21:33:01.074 64-176/? D/NuPlayerDriver: start(0xb5873f40)
01-25 21:33:01.074 64-576/? I/GenericSource: start
01-25 21:33:01.089 339-351/system_process W/art: Suspending all threads took: 212.599ms
01-25 21:33:01.139 339-339/system_process I/CommonTimeManagementService: No common time service detected on this platform.  Common time services will be unavailable.
01-25 21:33:01.146 339-339/system_process I/MmsServiceBroker: Delay connecting to MmsService until an API is called
01-25 21:33:01.159 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000020
01-25 21:33:01.198 339-339/system_process W/VoiceInteractionManagerService: no available voice interaction services found for user 0
01-25 21:33:01.198 339-339/system_process W/VoiceInteractionManagerService: no available voice recognition services found for user 0
01-25 21:33:01.239 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000010
01-25 21:33:01.259 64-176/? D/NuPlayerDriver: reset(0xb5873f40)
01-25 21:33:01.272 64-576/? D/NuPlayerDriver: notifyResetComplete(0xb5873f40)
01-25 21:33:01.297 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 15732(1328KB) AllocSpace objects, 21(336KB) LOS objects, 25% free, 5MB/7MB, paused 219.906ms total 725.833ms
01-25 21:33:01.440 67-67/? I/art: Background concurrent mark sweep GC freed 784(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 585us total 128.285ms
01-25 21:33:01.485 339-339/system_process I/ActivityManager: Start proc 588:com.android.phone/1001 for added application com.android.phone
01-25 21:33:01.497 339-356/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:01.512 339-339/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=com.android.launcher/com.android.launcher2.Launcher} from uid 0 on display 0
01-25 21:33:01.657 339-339/system_process V/WindowManager: addAppToken: AppWindowToken{dc16ae5 token=Token{1c6409dc ActivityRecord{2cf87e4f u0 com.android.launcher/com.android.launcher2.Launcher t59}}} to stack=0 task=59 at 0
01-25 21:33:01.803 67-67/? W/art: Suspending all threads took: 5.487ms
01-25 21:33:01.811 64-389/? D/NuPlayerDriver: start(0xb591b280)
01-25 21:33:01.812 64-586/? I/GenericSource: start
01-25 21:33:01.842 67-67/? I/art: Background concurrent mark sweep GC freed 781(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 6.390ms total 108.474ms
01-25 21:33:01.875 339-339/system_process I/ActivityManager: Start proc 609:com.android.launcher/u0a7 for activity com.android.launcher/com.android.launcher2.Launcher
01-25 21:33:01.928 339-339/system_process I/SystemServer: Enabled StrictMode for system server main thread.
01-25 21:33:02.000 339-339/system_process V/ActivityManager: Display changed displayId=0
01-25 21:33:02.002 339-339/system_process V/ActivityManager: Display changed displayId=0
01-25 21:33:02.006 339-339/system_process D/WifiScanningService: SCAN_AVAILABLE : 1
01-25 21:33:02.006 339-339/system_process D/RttService: SCAN_AVAILABLE : 1
01-25 21:33:02.012 339-395/system_process D/WifiScanningService: DefaultState got{ when=-4ms what=160007 target=com.android.internal.util.StateMachine$SmHandler }
01-25 21:33:02.054 64-389/? D/NuPlayerDriver: reset(0xb591b280)
01-25 21:33:02.059 339-396/system_process D/RttService: DefaultState got{ when=0 what=160513 target=com.android.internal.util.StateMachine$SmHandler }
01-25 21:33:02.085 64-586/? D/NuPlayerDriver: notifyResetComplete(0xb591b280)
01-25 21:33:02.140 339-339/system_process I/Choreographer: Skipped 551 frames!  The application may be doing too much work on its main thread.
01-25 21:33:02.486 339-339/system_process V/ActivityManager: Display changed displayId=0
01-25 21:33:02.491 339-339/system_process V/ActivityManager: Display changed displayId=0
01-25 21:33:03.098 339-339/system_process I/Telecom: TelecomGlobals: TelecomGlobals initializing
01-25 21:33:03.396 556-556/com.android.inputmethod.latin I/LatinIME: Hardware accelerated drawing: true
01-25 21:33:03.450 64-388/? D/NuPlayerDriver: start(0xb591b100)
01-25 21:33:03.451 64-617/? I/GenericSource: start
01-25 21:33:03.564 67-67/? I/art: Background concurrent mark sweep GC freed 784(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 576us total 303.163ms
01-25 21:33:03.596 339-627/system_process I/ActivityManager: Start proc 634:android.process.acore/u0a2 for content provider com.android.providers.contacts/.CallLogProvider
01-25 21:33:03.639 64-388/? D/NuPlayerDriver: reset(0xb591b100)
01-25 21:33:03.653 64-617/? D/NuPlayerDriver: notifyResetComplete(0xb591b100)
01-25 21:33:03.699 339-339/system_process E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:03.893 339-339/system_process I/Telecom: TelecomGlobals: CallsManager initialized
01-25 21:33:03.895 339-339/system_process E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:03.964 339-339/system_process D/ZenLog: downtime: Autotrigger skipped: not in downtime
01-25 21:33:04.207 339-339/system_process W/ResourcesManager: Asset path '/system/framework/com.android.location.provider.jar' does not exist or contains no resources.
01-25 21:33:04.365 339-362/system_process W/WindowManager: Window freeze timeout expired.
01-25 21:33:04.366 339-362/system_process W/WindowManager: Force clearing orientation change: Window{33fcbf0c u0 KeyguardScrim}
01-25 21:33:04.386 339-339/system_process D/GpsNetInitiatedHandler: location enabled :true
01-25 21:33:04.387 339-339/system_process V/WiredAccessoryManager: init()
01-25 21:33:04.624 339-545/system_process I/DropBoxManagerService: Cleaning temp file: /data/system/dropbox/drop100.tmp
01-25 21:33:05.142 64-389/? D/NuPlayerDriver: start(0xb591b280)
01-25 21:33:05.142 64-641/? I/GenericSource: start
01-25 21:33:05.441 416-429/? I/art: Background sticky concurrent mark sweep GC freed 9141(717KB) AllocSpace objects, 0(0B) LOS objects, 11% free, 5MB/6MB, paused 64.324ms total 441.884ms
01-25 21:33:05.964 64-389/? D/NuPlayerDriver: reset(0xb591b280)
01-25 21:33:05.982 64-641/? D/NuPlayerDriver: notifyResetComplete(0xb591b280)
01-25 21:33:06.403 556-556/com.android.inputmethod.latin I/art: WaitForGcToComplete blocked for 65.938ms for cause DisableMovingGc
01-25 21:33:06.460 53-88/? D/PermissionCache: checking android.permission.HARDWARE_TEST for uid=1000 => granted (586 us)
01-25 21:33:06.813 339-339/system_process V/BackupManagerService: Connected to transport ComponentInfo{android/com.android.internal.backup.LocalTransportService}
01-25 21:33:06.816 339-339/system_process V/BackupManagerService: Registering transport android/com.android.internal.backup.LocalTransportService::android/com.android.internal.backup.LocalTransport = android.app.backup.BackupTransport$TransportImpl@39ff9dcd
01-25 21:33:06.878 339-339/system_process I/Choreographer: Skipped 266 frames!  The application may be doing too much work on its main thread.
01-25 21:33:07.228 339-339/system_process V/ActivityManager: Display changed displayId=0
01-25 21:33:07.333 556-556/com.android.inputmethod.latin W/InputAttributes: No editor info for this field. Bug?
01-25 21:33:07.372 64-64/? D/NuPlayerDriver: start(0xb5873ca0)
01-25 21:33:07.372 64-663/? I/GenericSource: start
01-25 21:33:07.509 64-64/? D/NuPlayerDriver: reset(0xb5873ca0)
01-25 21:33:07.523 64-663/? D/NuPlayerDriver: notifyResetComplete(0xb5873ca0)
01-25 21:33:08.327 556-680/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = userunigram.en_US ; version = 1453757588 ; date = ?
01-25 21:33:08.379 556-679/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = PersonalizationDictionary.en_US ; version = 1453757588 ; date = ?
01-25 21:33:08.413 556-678/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = UserHistoryDictionary.en_US ; version = 1436273642 ; date = 1453744559
01-25 21:33:08.535 609-623/com.android.launcher I/art: Background sticky concurrent mark sweep GC freed 2477(219KB) AllocSpace objects, 2(32KB) LOS objects, 28% free, 793KB/1116KB, paused 1.292ms total 203.178ms
01-25 21:33:08.564 556-681/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = contacts.en_US ; version = 1453757588 ; date = ?
01-25 21:33:08.580 67-67/? I/art: Background concurrent mark sweep GC freed 786(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 525us total 399.395ms
01-25 21:33:08.643 556-683/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = ContextualDictionary.en_US ; version = 1453757588 ; date = ?
01-25 21:33:08.655 339-339/system_process I/ActivityManager: Start proc 682:com.android.deskclock/u0a21 for broadcast com.android.deskclock/com.android.alarmclock.AnalogAppWidgetProvider
01-25 21:33:08.792 416-429/? I/art: Background sticky concurrent mark sweep GC freed 9364(393KB) AllocSpace objects, 0(0B) LOS objects, 5% free, 6MB/6MB, paused 917us total 165.651ms
01-25 21:33:09.018 609-623/com.android.launcher W/art: Suspending all threads took: 9.491ms
01-25 21:33:09.024 609-623/com.android.launcher I/art: Background partial concurrent mark sweep GC freed 427(84KB) AllocSpace objects, 1(36KB) LOS objects, 52% free, 917KB/1941KB, paused 11.097ms total 121.916ms
01-25 21:33:09.191 682-682/com.android.deskclock W/Zygote: Slow operation: 1026ms so far, now at Zygote.nativeForkAndSpecialize
01-25 21:33:09.267 682-682/com.android.deskclock W/Zygote: Slow operation: 1103ms so far, now at Zygote.postForkCommon
01-25 21:33:09.277 682-682/com.android.deskclock W/Zygote: Slow operation: 1105ms so far, now at zygoteConnection.runOnce: postForkAndSpecialize
01-25 21:33:09.804 668-668/? D/AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
01-25 21:33:09.816 668-668/? D/AndroidRuntime: CheckJNI is ON
01-25 21:33:09.817 339-351/system_process W/art: Suspending all threads took: 613.213ms
01-25 21:33:10.008 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 26474(2MB) AllocSpace objects, 6(99KB) LOS objects, 33% free, 5MB/8MB, paused 635.201ms total 473.588ms
01-25 21:33:10.020 339-350/system_process I/art: WaitForGcToComplete blocked for 3.726s for cause HeapTrim
01-25 21:33:10.612 67-67/? I/art: Background concurrent mark sweep GC freed 786(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 520us total 173.489ms
01-25 21:33:10.682 416-429/? I/art: Background partial concurrent mark sweep GC freed 2587(232KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 6MB/10MB, paused 2.461ms total 194.573ms
01-25 21:33:10.907 67-67/? I/art: Explicit concurrent mark sweep GC freed 707(30KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 571us total 152.588ms
01-25 21:33:10.984 67-67/? I/art: Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 656us total 73.859ms
01-25 21:33:11.008 668-668/? E/memtrack: Couldn't load memtrack module (No such file or directory)
01-25 21:33:11.008 668-668/? E/android.os.Debug: failed to load memtrack module: -2
01-25 21:33:11.064 67-67/? I/art: Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 551us total 76.396ms
01-25 21:33:11.078 339-356/system_process I/ActivityManager: Start proc 709:com.android.printspooler/u0a39 for service com.android.printspooler/.model.PrintSpoolerService
01-25 21:33:11.298 556-679/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = PersonalizationDictionary.en_US ; version = 1453757591 ; date = ?
01-25 21:33:11.311 556-679/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = PersonalizationDictionary.en_US ; version = 1453757591 ; date = ?
01-25 21:33:11.568 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:33:11.674 588-600/com.android.phone I/art: Background sticky concurrent mark sweep GC freed 3454(243KB) AllocSpace objects, 2(32KB) LOS objects, 32% free, 755KB/1117KB, paused 1.004ms total 165.707ms
01-25 21:33:11.837 416-416/? E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:11.837 416-416/? W/BluetoothController: Default BT adapter not found
01-25 21:33:11.890 709-709/com.android.printspooler I/PrintSpoolerService: No existing print spooler state.
01-25 21:33:11.894 339-352/system_process D/ConnectivityService: listenForNetwork for NetworkRequest [ id=2, legacyType=-1, [] ]
01-25 21:33:11.976 588-588/com.android.phone D/TelephonyProvider: dbh.onOpen: ok, queried table=siminfo
01-25 21:33:12.008 588-588/com.android.phone D/TelephonyProvider: dbh.onOpen: ok, queried table=carriers
01-25 21:33:12.026 416-416/? I/CameraManagerGlobal: getCameraService: Reconnecting to camera service
01-25 21:33:12.076 64-64/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:12.077 64-64/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:12.077 64-64/? I/CameraService: getCameraCharacteristics: Switching to HAL1 shim implementation...
01-25 21:33:12.077 64-64/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:12.087 64-64/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:12.088 64-64/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:12.088 64-64/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:12.447 339-339/system_process I/FusedLocation: engine started (com.android.location.fused)
01-25 21:33:12.630 668-668/? D/AndroidRuntime: Calling main entry com.android.commands.pm.Pm
01-25 21:33:12.678 588-744/com.android.phone E/DcSwitchStateMachine-0: DctController is not ready
01-25 21:33:12.758 339-383/system_process E/ConnectivityService: Failed to find Messenger in unregisterNetworkFactory
01-25 21:33:12.767 339-383/system_process D/ConnectivityService: Got NetworkFactory Messenger for Telephony
01-25 21:33:12.794 339-357/system_process V/KeyguardServiceDelegate: *** Keyguard started
01-25 21:33:12.796 339-357/system_process W/KeyguardServiceDelegate: onScreenTurnedOn(): no keyguard service!
01-25 21:33:12.973 588-600/com.android.phone I/art: Background partial concurrent mark sweep GC freed 1598(172KB) AllocSpace objects, 0(0B) LOS objects, 52% free, 931KB/1955KB, paused 33.548ms total 463.427ms
01-25 21:33:13.173 64-64/? I/CameraClient: Opening camera 0
01-25 21:33:13.173 64-64/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:13.173 64-64/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:13.174 64-64/? V/EmulatedCamera_Camera: connectCamera
01-25 21:33:13.174 64-64/? V/EmulatedCamera_FakeDevice: connectDevice
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier: setCallbacks: 0xb6dff7c5, 0xb6e00a89, 0xb6e00a01, 0xb6e00c3d (0xb591b580)
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier: enableMessage: msg_type = 0xc0d
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ERROR
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_FOCUS
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ZOOM
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_PREVIEW_METADATA
01-25 21:33:13.174 64-64/? V/EmulatedCamera_CallbackNotifier: **** Currently enabled messages:
01-25 21:33:13.175 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ERROR
01-25 21:33:13.175 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_FOCUS
01-25 21:33:13.175 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ZOOM
01-25 21:33:13.175 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_PREVIEW_METADATA
01-25 21:33:13.190 64-64/? V/EmulatedCamera_CallbackNotifier: disableMessage: msg_type = 0xffff
01-25 21:33:13.190 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ERROR
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_SHUTTER
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_FOCUS
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_ZOOM
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_PREVIEW_FRAME
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_VIDEO_FRAME
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_POSTVIEW_FRAME
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_RAW_IMAGE
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_COMPRESSED_IMAGE
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_RAW_IMAGE_NOTIFY
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier:     CAMERA_MSG_PREVIEW_METADATA
01-25 21:33:13.191 64-64/? V/EmulatedCamera_CallbackNotifier: **** Currently enabled messages:
01-25 21:33:13.191 64-64/? V/EmulatedCamera_Camera: doStopPreview
01-25 21:33:13.191 64-64/? V/EmulatedCamera_Camera: cancelPicture
01-25 21:33:13.191 64-64/? V/EmulatedCamera_Camera: releaseCamera
01-25 21:33:13.191 64-64/? V/EmulatedCamera_Camera: doStopPreview
01-25 21:33:13.192 64-64/? V/EmulatedCamera_FakeDevice: disconnectDevice
01-25 21:33:13.192 64-64/? I/CameraClient: Destroying camera 0
01-25 21:33:13.192 64-64/? V/EmulatedCamera_Camera: closeCamera
01-25 21:33:13.192 64-64/? V/EmulatedCamera_Camera: doStopPreview
01-25 21:33:13.205 64-64/? D/NuPlayerDriver: reset(0xb5873ca0)
01-25 21:33:13.207 64-732/? D/NuPlayerDriver: notifyResetComplete(0xb5873ca0)
01-25 21:33:13.222 64-64/? D/NuPlayerDriver: reset(0xb591b040)
01-25 21:33:13.224 64-735/? D/NuPlayerDriver: notifyResetComplete(0xb591b040)
01-25 21:33:13.235 64-388/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:13.235 64-388/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:13.267 64-389/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:13.268 64-389/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:13.337 609-623/com.android.launcher I/art: Background sticky concurrent mark sweep GC freed 2633(198KB) AllocSpace objects, 0(0B) LOS objects, 12% free, 1700KB/1941KB, paused 993us total 210.412ms
01-25 21:33:13.363 609-746/com.android.launcher D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
01-25 21:33:13.375 609-609/com.android.launcher D/Atlas: Validating map...
01-25 21:33:13.430 339-662/system_process V/WindowManager: Based on layer: Adding window Window{a89bab4 u0 com.android.launcher/com.android.launcher2.Launcher} at 0 of 1
01-25 21:33:13.475 588-588/com.android.phone E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:13.598 588-588/com.android.phone I/Telephony: TtyManager: updateUiTtyMode -1 -> 0
01-25 21:33:13.717 339-701/system_process D/AlarmManagerService: Kernel timezone updated to 0 minutes west of GMT
01-25 21:33:13.721 339-356/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:13.740 339-356/system_process D/GpsLocationProvider: SIM MCC/MNC is still not available
01-25 21:33:13.797 339-360/system_process W/WindowManager: Keyguard drawn timeout. Setting mKeyguardDrawComplete
01-25 21:33:13.800 609-746/com.android.launcher I/OpenGLRenderer: Initialized EGL, version 1.4
01-25 21:33:13.830 609-746/com.android.launcher D/OpenGLRenderer: Enabling debug mode 0
01-25 21:33:13.847 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:13.847 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a9c0, error=EGL_SUCCESS
01-25 21:33:13.894 339-367/system_process I/ActivityManager: Start proc 751:com.android.defcontainer/u0a3 for service com.android.defcontainer/.DefaultContainerService
01-25 21:33:13.960 556-567/com.android.inputmethod.latin W/art: Suspending all threads took: 232.995ms
01-25 21:33:13.968 339-357/system_process W/BroadcastQueue: Timeout of broadcast BroadcastRecord{3feed113 u-1 android.intent.action.TIME_TICK} - receiver=android.os.BinderProxy@3963b7b1, started 10001ms ago
01-25 21:33:13.969 339-357/system_process W/BroadcastQueue: Receiver during timeout: BroadcastFilter{3a44e817 u0 ReceiverList{15535496 416 com.android.systemui/10012/u0 remote:3963b7b1}}
01-25 21:33:14.000 339-580/system_process D/AlarmManagerService: Setting time of day to sec=1453757593
01-25 21:33:14.575 339-362/system_process I/ActivityManager: Displayed com.android.launcher/com.android.launcher2.Launcher: +13s38ms
01-25 21:33:14.626 339-362/system_process I/Choreographer: Skipped 31 frames!  The application may be doing too much work on its main thread.
01-25 21:33:14.656 339-357/system_process I/Process: Sending signal. PID: 416 SIG: 3
01-25 21:33:14.657 416-418/? I/art: Thread[2,tid=418,WaitingInMainSignalCatcherLoop,Thread*=0xb4827800,peer=0x14c131c0,"Signal Catcher"]: reacting to signal 3
01-25 21:33:14.687 416-418/? W/art: Suspending all threads took: 29.788ms
01-25 21:33:14.859 339-357/system_process I/Process: Sending signal. PID: 339 SIG: 3
01-25 21:33:14.861 339-345/system_process I/art: Thread[2,tid=345,WaitingInMainSignalCatcherLoop,Thread*=0xb4827800,peer=0x12c020a0,"Signal Catcher"]: reacting to signal 3
01-25 21:33:15.599 556-727/com.android.inputmethod.latin I/LatinIME:LogUtils: Dictionary info: dictionary = main:en ; version = 47 ; date = 1402373178
01-25 21:33:15.602 609-623/com.android.launcher I/art: Background partial concurrent mark sweep GC freed 542(52KB) AllocSpace objects, 1(36KB) LOS objects, 39% free, 2MB/4MB, paused 936us total 1.005s
01-25 21:33:15.670 609-609/com.android.launcher I/Choreographer: Skipped 86 frames!  The application may be doing too much work on its main thread.
01-25 21:33:15.990 416-418/? I/art: Wrote stack traces to '/data/anr/traces.txt'
01-25 21:33:16.269 634-660/android.process.acore I/ContactLocale: AddressBook Labels [en-US]: [, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, Α, Β, Γ, Δ, Ε, Ζ, Η, Θ, Ι, Κ, Λ, Μ, Ν, Ξ, Ο, Π, Ρ, Σ, Τ, Υ, Φ, Χ, Ψ, Ω, , А, Б, В, Г, Д, Ђ, Е, Є, Ж, З, И, І, Ї, Й, Ј, К, Л, Љ, М, Н, Њ, О, П, Р, С, Т, Ћ, У, Ф, Х, Ц, Ч, Џ, Ш, Щ, Ю, Я, , א, ב, ג, ד, ה, ו, ז, ח, ט, י, כ, ל, מ, נ, ס, ע, פ, צ, ק, ר, ש, ת, , ا, ب, ت, ث, ج, ح, خ, د, ذ, ر, ز, س, ش, ص, ض, ط, ظ, ع, غ, ف, ق, ك, ل, م, ن, ه, و, ي, , ก, ข, ฃ, ค, ฅ, ฆ, ง, จ, ฉ, ช, ซ, ฌ, ญ, ฎ, ฏ, ฐ, ฑ, ฒ, ณ, ด, ต, ถ, ท, ธ, น, บ, ป, ผ, ฝ, พ, ฟ, ภ, ม, ย, ร, ฤ, ล, ฦ, ว, ศ, ษ, ส, ห, ฬ, อ, ฮ, , ㄱ, ㄴ, ㄷ, ㄹ, ㅁ, ㅂ, ㅅ, ㅇ, ㅈ, ㅊ, ㅋ, ㅌ, ㅍ, ㅎ, , あ, か, さ, た, な, は, ま, や, ら, わ, #, ]
01-25 21:33:18.341 339-357/system_process I/Process: Sending signal. PID: 588 SIG: 3
01-25 21:33:18.342 588-589/com.android.phone I/art: Thread[2,tid=589,WaitingInMainSignalCatcherLoop,Thread*=0xb4827800,peer=0x12c000a0,"Signal Catcher"]: reacting to signal 3
01-25 21:33:18.391 339-345/system_process I/art: Wrote stack traces to '/data/anr/traces.txt'
01-25 21:33:18.891 609-609/com.android.launcher I/Choreographer: Skipped 184 frames!  The application may be doing too much work on its main thread.
01-25 21:33:19.063 416-772/? D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
01-25 21:33:19.116 416-416/? D/Atlas: Validating map...
01-25 21:33:19.130 416-416/? D/PhoneStatusBar: disable: < expand icons alerts system_info back home recent clock search >
01-25 21:33:19.309 416-416/? E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:19.408 416-416/? D/PhoneStatusBar: heads up is enabled
01-25 21:33:19.438 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
01-25 21:33:19.438 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
01-25 21:33:19.499 416-416/? I/Choreographer: Skipped 1205 frames!  The application may be doing too much work on its main thread.
01-25 21:33:19.553 416-416/? D/ViewRootImpl: changeCanvasOpacity: opaque=true
01-25 21:33:20.014 416-772/? I/OpenGLRenderer: Initialized EGL, version 1.4
01-25 21:33:20.041 416-772/? D/OpenGLRenderer: Enabling debug mode 0
01-25 21:33:20.075 416-772/? W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:20.075 416-772/? W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b37640, error=EGL_SUCCESS
01-25 21:33:20.152 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:20.152 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a9c0, error=EGL_SUCCESS
01-25 21:33:20.242 416-772/? W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:20.243 416-772/? W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b376c0, error=EGL_SUCCESS
01-25 21:33:20.585 416-416/? D/PhoneStatusBar: disable: < EXPAND* icons alerts system_info BACK* HOME* RECENT* clock SEARCH* >
01-25 21:33:20.714 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:33:20.716 416-416/? V/KeyguardUpdateMonitor: action android.intent.action.SIM_STATE_CHANGED state: NOT_READY slotId: 0 subid: -2
01-25 21:33:21.045 339-357/system_process I/art: Explicit concurrent mark sweep GC freed 18748(1226KB) AllocSpace objects, 10(322KB) LOS objects, 33% free, 6MB/9MB, paused 1.951ms total 144.780ms
01-25 21:33:21.228 339-339/system_process V/KeyguardServiceDelegate: *** Keyguard connected (yay!)
01-25 21:33:21.253 52-84/? D/VoldCmdListener: cryptfs getpw
01-25 21:33:21.267 52-84/? D/VoldCmdListener: cryptfs clearpw
01-25 21:33:21.277 588-589/com.android.phone I/art: Wrote stack traces to '/data/anr/traces.txt'
01-25 21:33:21.468 588-588/com.android.phone D/TelephonyDebugService: TelephonyDebugService()
01-25 21:33:21.602 588-588/com.android.phone D/MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
01-25 21:33:21.606 588-588/com.android.phone D/MccTable: updateMccMncConfiguration defaultMccMnc=
01-25 21:33:21.606 588-588/com.android.phone D/MccTable: updateMccMncConfiguration: mcc=310, mnc=260
01-25 21:33:21.609 588-588/com.android.phone D/MccTable: defaultLanguageForMcc(310): country us uses en
01-25 21:33:21.609 588-588/com.android.phone D/MccTable: getLocaleFromMcc to en_us mcc=310
01-25 21:33:21.609 588-588/com.android.phone D/MccTable: getLocaleForLanguageCountry: skipping already persisted
01-25 21:33:21.609 588-588/com.android.phone D/MccTable: WIFI_COUNTRY_CODE set to us
01-25 21:33:21.628 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:33:21.630 339-701/system_process I/WifiService: WifiService trying to set country code to us with persist set to true
01-25 21:33:21.825 339-357/system_process I/Process: Sending signal. PID: 609 SIG: 3
01-25 21:33:21.826 609-615/com.android.launcher I/art: Thread[2,tid=615,WaitingInMainSignalCatcherLoop,Thread*=0xb4827800,peer=0x12c000a0,"Signal Catcher"]: reacting to signal 3
01-25 21:33:21.937 339-362/system_process W/WindowManager: Window freeze timeout expired.
01-25 21:33:21.937 339-362/system_process W/WindowManager: Force clearing orientation change: Window{24f3abae u0 NavigationBar}
01-25 21:33:21.937 339-362/system_process W/WindowManager: Force clearing orientation change: Window{105b6a57 u0 StatusBar}
01-25 21:33:22.035 339-357/system_process I/Process: Sending signal. PID: 634 SIG: 3
01-25 21:33:22.036 634-640/android.process.acore I/art: Thread[2,tid=640,WaitingInMainSignalCatcherLoop,Thread*=0xb4827800,peer=0x12c000a0,"Signal Catcher"]: reacting to signal 3
01-25 21:33:22.320 339-357/system_process E/ActivityManager: ANR in com.android.systemui
                                                             PID: 416
                                                             Reason: Broadcast of Intent { act=android.intent.action.TIME_TICK flg=0x50000014 (has extras) }
                                                             Load: 3.7 / 1.03 / 0.35
                                                             CPU usage from 2954ms to -8378ms ago:
                                                               41% 339/system_server: 26% user + 15% kernel / faults: 8635 minor 2 major
                                                               14% 588/com.android.phone: 9.8% user + 4.3% kernel / faults: 8633 minor 16 major
                                                               11% 416/com.android.systemui: 8.6% user + 2.3% kernel / faults: 3915 minor 2 major
                                                               10% 609/com.android.launcher: 9.1% user + 1.7% kernel / faults: 5845 minor 6 major
                                                               1% 61/debuggerd: 0.2% user + 0.8% kernel / faults: 1967 minor
                                                               1.9% 26/mtdblock1: 0% user + 1.9% kernel
                                                               1.9% 53/surfaceflinger: 0.6% user + 1.3% kernel / faults: 27 minor
                                                               1.8% 668/app_process: 1.7% user + 0.1% kernel / faults: 1290 minor
                                                               1.7% 556/com.android.inputmethod.latin: 1.3% user + 0.3% kernel / faults: 1206 minor 1 major
                                                               1.7% 634/android.process.acore: 1.1% user + 0.5% kernel / faults: 851 minor 49 major
                                                               1.6% 64/mediaserver: 0.5% user + 1% kernel / faults: 34 minor
                                                               1.2% 51/servicemanager: 0.6% user + 0.6% kernel
                                                               1% 99/bootanimation: 0.3% user + 0.7% kernel
                                                               0.9% 67/zygote: 0.8% user + 0.1% kernel / faults: 1449 minor
                                                               0.8% 48/logd: 0.2% user + 0.6% kernel / faults: 46 minor
                                                               0.5% 709/com.android.printspooler: 0.2% user + 0.2% kernel / faults: 1456 minor 8 major
                                                               0.2% 25/mtdblock0: 0% user + 0.2% kernel
                                                               0.1% 1//init: 0.1% user + 0% kernel
                                                               0.1% 59/adbd: 0% user + 0.1% kernel / faults: 14 minor
                                                               0% 11/kworker/0:1: 0% user + 0% kernel
                                                               0% 52/vold: 0% user + 0% kernel / faults: 1 minor
                                                               0% 62/rild: 0% user + 0% kernel / faults: 4 minor
                                                              +0% 751/com.android.defcontainer: 0% user + 0% kernel
                                                             100% TOTAL: 64% user + 35% kernel
                                                             CPU usage from 7179ms to 7755ms later:
                                                               29% 588/com.android.phone: 22% user + 6.5% kernel / faults: 1054 minor 4 major
                                                                 21% 588/m.android.phone: 16% user + 5.4% kernel
                                                                 2.1% 669/RILSender0: 2.1% user + 0% kernel
                                                                 2.1% 670/RILReceiver0: 1% user + 1% kernel
                                                                 1% 589/Signal Catcher: 1% user + 0% kernel
                                                                 1% 597/FinalizerDaemon: 1% user + 0% kernel
                                                                 1% 600/GCDaemon: 1% user + 0% kernel
                                                                +0% 775/Binder_3: 0% user + 0% kernel
                                                                +0% 777/WifiManager: 0% user + 0% kernel
                                                               27% 339/system_server: 22% user + 5% kernel / faults: 43 minor
                                                                 10% 357/ActivityManager: 5% user + 5% kernel
                                                                 5% 662/Binder_7: 3.3% user + 1.6% kernel
                                                                 3.3% 689/Binder_8: 3.3% user + 0% kernel
                                                                 1.6% 339/system_server: 1.6% user + 0% kernel
                                                                 1.6% 352/Binder_1: 1.6% user + 0% kernel
                                                                 1.6% 369/Binder_3: 1.6% user + 0% kernel
                                                                 1.6% 580/Binder_4: 1.6% user + 0% kernel
                                                                 1.6% 701/Binder_9: 1.6% user + 0% kernel
                                                                 1.6% 767/Binder_B: 1.6% user + 0% kernel
                                                               4.2% 48/logd: 1% user + 3.1% kernel / faults: 17 minor
                                                                 4.2% 71/logd.writer: 1% user + 3.1% kernel
                                                               4.2% 51/servicemanager: 2.1% user + 2.1% kernel
                                                               3.1% 53/surfaceflinger: 0% user + 3.1% kernel
                                                                 1% 53/surfaceflinger: 0% user + 1% kernel
                                                                 1% 96/surfaceflinger: 1% user + 0% kernel
                                                                 1% 773/Binder_4: 0% user + 1% kernel
                                                               3.3% 26/mtdblock1: 0% user + 3.3% kernel
                                                               3% 416/com.android.systemui: 3% user + 0% kernel / faults: 14 minor
                                                                 1.5% 416/ndroid.systemui: 1.5% user + 0% kernel
                                                                 1.5% 430/Binder_1: 1.5% user + 0% kernel
                                                               1% 52/vold: 1% user + 0% kernel / faults: 1 minor
                                                                 1% 84/vold: 1% user + 0% kernel
                                                               1% 609/com.android.launcher: 1% user + 0% kernel / faults: 2 minor
                                                                 1% 649/launcher-loader: 1% user + 0% kernel
                                                               1% 634/android.process.acore: 1% user + 0% kernel / faults: 269 minor
                                                                 1% 660/ContactsProvide: 1% user + 0% kernel
                                                                +0% 776/Binder_5: 0% user + 0% kernel
                                                               1.1% 751/com.android.defcontainer: 0% user + 1.1% kernel / faults: 95 minor
                                                                 1.1% 765/Binder_2: 0% user + 1.1% kernel
                                                             100% TOTAL: 69% user + 30% kernel
01-25 21:33:22.324 339-357/system_process I/ActivityManager: Killing 416:com.android.systemui/u0a12 (adj -12): bg anr
01-25 21:33:22.565 339-357/system_process E/libprocessgroup: failed to kill 1 processes for processgroup 416
01-25 21:33:22.662 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:22.703 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:22.789 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:22.790 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:22.791 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:22.792 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:22.793 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:22.855 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.052 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.053 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.054 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.066 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.069 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.070 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.206 588-600/com.android.phone W/art: Suspending all threads took: 9.511ms
01-25 21:33:23.233 588-600/com.android.phone I/art: Background partial concurrent mark sweep GC freed 9196(685KB) AllocSpace objects, 0(0B) LOS objects, 43% free, 1322KB/2MB, paused 11.939ms total 295.567ms
01-25 21:33:23.261 588-588/com.android.phone D/MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=false
01-25 21:33:23.265 588-588/com.android.phone D/MccTable: updateMccMncConfiguration defaultMccMnc=
01-25 21:33:23.265 588-588/com.android.phone D/MccTable: updateMccMncConfiguration: mcc=310, mnc=260
01-25 21:33:23.266 588-588/com.android.phone D/MccTable: defaultLanguageForMcc(310): country us uses en
01-25 21:33:23.266 588-588/com.android.phone D/MccTable: getLocaleFromMcc to en_us mcc=310
01-25 21:33:23.266 588-588/com.android.phone D/MccTable: getLocaleForLanguageCountry: skipping already persisted
01-25 21:33:23.266 588-588/com.android.phone D/MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc260mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
01-25 21:33:23.269 339-701/system_process I/ActivityManager: Config changes=3 {1.0 310mcc260mnc en_US ?layoutDir sw600dp w600dp h888dp 213dpi lrg port finger qwerty/v/v -nav/h s.5}
01-25 21:33:23.272 339-701/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.288 53-88/? D/PermissionCache: checking android.permission.READ_FRAME_BUFFER for uid=1000 => granted (559 us)
01-25 21:33:23.314 53-53/? E/EGL_emulation: tid 53: eglCreateSyncKHR(1237): error 0x3004 (EGL_BAD_ATTRIBUTE)
01-25 21:33:23.328 339-701/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.329 339-701/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.336 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.337 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.CONFIGURATION_CHANGED flg=0x70000010 }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.338 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.339 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.CONFIGURATION_CHANGED flg=0x70000010 }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.339 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.340 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.CONFIGURATION_CHANGED flg=0x70000010 }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.340 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.341 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.CONFIGURATION_CHANGED flg=0x70000010 }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:23.370 339-339/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.372 339-339/system_process W/VolumeController: Error calling setLayoutDirection
                                                              android.os.TransactionTooLargeException
                                                                  at android.os.BinderProxy.transactNative(Native Method)
                                                                  at android.os.BinderProxy.transact(Binder.java:496)
                                                                  at android.media.IVolumeController$Stub$Proxy.setLayoutDirection(IVolumeController.java:171)
                                                                  at android.media.AudioService$VolumeController.setLayoutDirection(AudioService.java:5770)
                                                                  at android.media.AudioService.handleConfigurationChanged(AudioService.java:5242)
                                                                  at android.media.AudioService.access$9200(AudioService.java:113)
                                                                  at android.media.AudioService$AudioServiceBroadcastReceiver.onReceive(AudioService.java:5071)
                                                                  at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:866)
                                                                  at android.os.Handler.handleCallback(Handler.java:739)
                                                                  at android.os.Handler.dispatchMessage(Handler.java:95)
                                                                  at android.os.Looper.loop(Looper.java:135)
                                                                  at com.android.server.SystemServer.run(SystemServer.java:269)
                                                                  at com.android.server.SystemServer.main(SystemServer.java:170)
                                                                  at java.lang.reflect.Method.invoke(Native Method)
                                                                  at java.lang.reflect.Method.invoke(Method.java:372)
                                                                  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
                                                                  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
01-25 21:33:23.691 609-615/com.android.launcher I/art: Wrote stack traces to '/data/anr/traces.txt'
01-25 21:33:23.976 339-369/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.978 339-369/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:23.980 339-339/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:23.991 339-339/system_process D/GpsLocationProvider: SIM MCC/MNC is still not available
01-25 21:33:24.182 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:24.344 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:24.365 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.provider.Telephony.SPN_STRINGS_UPDATED flg=0x20000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:24.419 588-588/com.android.phone D/TelephonyProvider: subIdString = -2 subId = -2
01-25 21:33:24.864 588-600/com.android.phone I/art: Background sticky concurrent mark sweep GC freed 7457(762KB) AllocSpace objects, 0(0B) LOS objects, 36% free, 1482KB/2MB, paused 42.015ms total 96.958ms
01-25 21:33:24.918 339-659/system_process V/WindowManager: Based on layer: Adding window Window{a99dbca u0 com.android.launcher/com.android.launcher2.Launcher} at 0 of 5
01-25 21:33:24.936 609-609/com.android.launcher D/Launcher.Model: Reload apps on config change. curr_mcc:310 prevmcc:0
01-25 21:33:24.938 609-609/com.android.launcher I/Choreographer: Skipped 64 frames!  The application may be doing too much work on its main thread.
01-25 21:33:24.961 588-588/com.android.phone D/MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=false
01-25 21:33:24.966 588-588/com.android.phone D/MccTable: updateMccMncConfiguration defaultMccMnc=310260
01-25 21:33:24.966 588-588/com.android.phone D/MccTable: updateMccMncConfiguration: mcc=310, mnc=260
01-25 21:33:24.967 588-588/com.android.phone D/MccTable: defaultLanguageForMcc(310): country us uses en
01-25 21:33:24.967 588-588/com.android.phone D/MccTable: getLocaleFromMcc to en_us mcc=310
01-25 21:33:24.967 588-588/com.android.phone D/MccTable: getLocaleForLanguageCountry: skipping already persisted
01-25 21:33:24.967 588-588/com.android.phone D/MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc260mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
01-25 21:33:25.118 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:25.118 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a2e0, error=EGL_SUCCESS
01-25 21:33:25.223 339-362/system_process I/WindowManager: Screen frozen for +1s949ms due to AppWindowToken{dc16ae5 token=Token{1c6409dc ActivityRecord{2cf87e4f u0 com.android.launcher/com.android.launcher2.Launcher t59}}}
01-25 21:33:25.278 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:25.280 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED flg=0x20000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:25.327 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:25.328 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.ACTION_DEFAULT_VOICE_SUBSCRIPTION_CHANGED flg=0x20000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:25.636 339-339/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:25.641 339-339/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:25.641 339-339/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:25.641 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:25.641 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:25.642 339-339/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:25.642 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:25.642 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:25.648 588-588/com.android.phone D/MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=false
01-25 21:33:25.651 588-588/com.android.phone D/MccTable: updateMccMncConfiguration defaultMccMnc=310260
01-25 21:33:25.651 588-588/com.android.phone D/MccTable: updateMccMncConfiguration: mcc=310, mnc=260
01-25 21:33:25.651 588-588/com.android.phone D/MccTable: defaultLanguageForMcc(310): country us uses en
01-25 21:33:25.652 588-588/com.android.phone D/MccTable: getLocaleFromMcc to en_us mcc=310
01-25 21:33:25.652 588-588/com.android.phone D/MccTable: getLocaleForLanguageCountry: skipping already persisted
01-25 21:33:25.652 588-588/com.android.phone D/MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc260mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?}
01-25 21:33:25.656 339-339/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:25.656 339-339/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:25.656 339-339/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:25.658 339-339/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:25.658 339-339/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:25 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:25.725 339-339/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:25.730 339-339/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:25.730 339-339/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:25.730 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:25.731 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:25.731 339-339/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:25.731 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:25.731 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:25.734 339-339/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:25.734 339-339/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:25.734 339-339/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:25.752 339-339/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:25.752 339-339/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:25 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:25.872 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:25.874 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:25.898 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:25.899 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:25.902 339-357/system_process E/JavaBinder: !!! FAILED BINDER TRANSACTION !!!
01-25 21:33:25.903 339-357/system_process W/BroadcastQueue: Failure sending broadcast Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }
                                                            android.os.TransactionTooLargeException
                                                                at android.os.BinderProxy.transactNative(Native Method)
                                                                at android.os.BinderProxy.transact(Binder.java:496)
                                                                at android.app.ApplicationThreadProxy.scheduleRegisteredReceiver(ApplicationThreadNative.java:1093)
                                                                at com.android.server.am.BroadcastQueue.performReceiveLocked(BroadcastQueue.java:431)
                                                                at com.android.server.am.BroadcastQueue.deliverToRegisteredReceiverLocked(BroadcastQueue.java:521)
                                                                at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:569)
                                                                at com.android.server.am.BroadcastQueue$BroadcastHandler.handleMessage(BroadcastQueue.java:149)
                                                                at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                at android.os.Looper.loop(Looper.java:135)
                                                                at android.os.HandlerThread.run(HandlerThread.java:61)
                                                                at com.android.server.ServiceThread.run(ServiceThread.java:46)
01-25 21:33:26.168 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 12237(1419KB) AllocSpace objects, 16(1550KB) LOS objects, 23% free, 6MB/8MB, paused 2.372ms total 253.946ms
01-25 21:33:26.169 339-350/system_process I/art: WaitForGcToComplete blocked for 128.619ms for cause HeapTrim
01-25 21:33:26.357 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:26.427 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:26.609 609-623/com.android.launcher I/art: Background partial concurrent mark sweep GC freed 801(41KB) AllocSpace objects, 16(605KB) LOS objects, 39% free, 3MB/6MB, paused 1.010ms total 108.591ms
01-25 21:33:27.043 339-339/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:27.049 339-339/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:27.052 339-339/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:27.052 339-339/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:27.052 339-339/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:27.075 339-339/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:27.075 339-339/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:27 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:27.232 634-640/android.process.acore I/art: Wrote stack traces to '/data/anr/traces.txt'
01-25 21:33:27.237 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:27.257 609-649/com.android.launcher W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:27.257 609-649/com.android.launcher W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:27.258 609-649/com.android.launcher W/PackageManager: Failure retrieving resources for com.android.speechrecorder: Resource ID #0x0
01-25 21:33:27.258 609-649/com.android.launcher W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:27.258 609-649/com.android.launcher W/PackageManager: Failure retrieving resources for com.android.speechrecorder: Resource ID #0x0
01-25 21:33:27.340 609-609/com.android.launcher I/Launcher.Model: not binding apps: no Launcher activity
01-25 21:33:27.343 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:27.574 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:27.695 339-362/system_process I/art: Explicit concurrent mark sweep GC freed 11464(1125KB) AllocSpace objects, 10(768KB) LOS objects, 33% free, 6MB/9MB, paused 1.658ms total 416.447ms
01-25 21:33:27.726 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:28.093 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:28.156 588-588/com.android.phone I/Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {1132f1dc}
01-25 21:33:28.195 588-588/com.android.phone I/NotificationMgr: updateMwi(): subId 1 update to false
01-25 21:33:28.375 339-702/system_process W/AudioService: Current remote volume controller died, unregistering
01-25 21:33:28.376 339-702/system_process W/VolumeController: Error calling dismiss
                                                              android.os.DeadObjectException
                                                                  at android.os.BinderProxy.transactNative(Native Method)
                                                                  at android.os.BinderProxy.transact(Binder.java:496)
                                                                  at android.media.IVolumeController$Stub$Proxy.dismiss(IVolumeController.java:182)
                                                                  at android.media.AudioService$VolumeController.postDismiss(AudioService.java:5780)
                                                                  at android.media.AudioService.setVolumeController(AudioService.java:5630)
                                                                  at android.media.AudioService$3.binderDied(AudioService.java:5639)
                                                                  at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
01-25 21:33:28.383 339-702/system_process D/ConnectivityService: ConnectivityService NetworkRequestInfo binderDied(NetworkRequest [ id=2, legacyType=-1, [] ], android.os.BinderProxy@16de27a0)
01-25 21:33:28.386 339-580/system_process I/WindowState: WIN DEATH: Window{105b6a57 u0 StatusBar}
01-25 21:33:28.388 339-689/system_process I/StatusBarManagerService: binder died for pkg=com.android.systemui
01-25 21:33:28.396 339-382/system_process D/WifiService: Client connection lost with reason: 4
01-25 21:33:28.397 339-382/system_process D/WifiService: Client connection lost with reason: 4
01-25 21:33:28.398 339-383/system_process D/ConnectivityService: releasing NetworkRequest NetworkRequest [ id=2, legacyType=-1, [] ]
01-25 21:33:28.401 339-383/system_process E/ConnectivityService: RemoteException caught trying to send a callback msg for NetworkRequest [ id=2, legacyType=-1, [] ]
01-25 21:33:28.402 339-339/system_process W/WallpaperManagerService: Wallpaper service gone: ComponentInfo{com.android.systemui/com.android.systemui.ImageWallpaper}
01-25 21:33:28.402 339-339/system_process V/KeyguardServiceDelegate: *** Keyguard disconnected (boo!)
01-25 21:33:28.461 339-689/system_process I/WindowState: WIN DEATH: Window{271265b0 u0 SearchPanel}
01-25 21:33:28.490 339-603/system_process I/WindowState: WIN DEATH: Window{24f3abae u0 NavigationBar}
01-25 21:33:28.510 339-662/system_process I/WindowState: WIN DEATH: Window{3a498286 u0 Heads Up}
01-25 21:33:28.573 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:28.574 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a2e0, error=EGL_SUCCESS
01-25 21:33:28.623 339-352/system_process E/libprocessgroup: failed to kill 1 processes for processgroup 416
01-25 21:33:28.635 339-352/system_process I/ActivityManager: Process com.android.systemui (pid 416) has died
01-25 21:33:28.641 339-352/system_process W/ActivityManager: Scheduling restart of crashed service com.android.systemui/.ImageWallpaper in 0ms
01-25 21:33:28.642 339-352/system_process W/ActivityManager: Scheduling restart of crashed service com.android.systemui/.SystemUIService in 0ms
01-25 21:33:28.682 339-352/system_process W/ActivityManager: Scheduling restart of crashed service com.android.systemui/.keyguard.KeyguardService in 0ms
01-25 21:33:28.820 339-352/system_process I/ActivityManager: Start proc 792:com.android.systemui/u0a12 for restart com.android.systemui
01-25 21:33:28.992 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
01-25 21:33:28.993 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
01-25 21:33:29.232 339-352/system_process D/ConnectivityService: registerNetworkAgent NetworkAgentInfo{ ni{[type: MOBILE[UMTS], state: CONNECTED/CONNECTED, reason: connected, extra: epc.tmobile.com, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false]}  network{null}  lp{{InterfaceName: eth0 LinkAddresses: [10.0.2.15/32,]  Routes: [0.0.0.0/0 -> 10.0.2.2 eth0,] DnsAddresses: [10.0.2.3,10.0.2.4,10.0.2.5,] Domains: null MTU: 1500 TcpBufferSizes: 58254,349525,1048576,58254,349525,1048576}}  nc{[ Transports: CELLULAR Capabilities: MMS&SUPL&FOTA&IMS&CBS&IA&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=384Kbps LinkDnBandwidth>=384Kbps Specifier: <1>]}  Score{10}  everValidated{false}  lastValidated{false}  created{false}  explicitlySelected{false} }
01-25 21:33:29.259 339-383/system_process D/ConnectivityService: NetworkAgentInfo [MOBILE (UMTS) - 100] EVENT_NETWORK_INFO_CHANGED, going from null to CONNECTED
01-25 21:33:29.288 588-588/com.android.phone D/TelephonyProvider: subIdString = 1 subId = 1
01-25 21:33:29.295 339-383/system_process D/ConnectivityService: Adding iface eth0 to network 100
01-25 21:33:29.465 339-383/system_process D/ConnectivityService: Setting MTU size: eth0, 1500
01-25 21:33:29.470 339-383/system_process D/ConnectivityService: Adding Route [0.0.0.0/0 -> 10.0.2.2 eth0] to network 100
01-25 21:33:29.480 339-383/system_process D/ConnectivityService: Setting Dns servers for network 100 to [/10.0.2.3, /10.0.2.4, /10.0.2.5]
01-25 21:33:29.552 339-383/system_process D/ConnectivityService: notifyType IP_CHANGED for NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.565 339-383/system_process D/ConnectivityService: notifyType PRECHECK for NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.566 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: DefaultState{ when=-1ms what=532481 target=com.android.internal.util.StateMachine$SmHandler }
01-25 21:33:29.566 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: Connected
01-25 21:33:29.567 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: EvaluatingState{ when=0 what=532486 arg1=1 target=com.android.internal.util.StateMachine$SmHandler }
01-25 21:33:29.570 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: Checking http://connectivitycheck.android.com/generate_204 on epc.tmobile.com
01-25 21:33:29.577 339-383/system_process D/ConnectivityService: rematching NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.578 339-383/system_process D/ConnectivityService:    accepting network in place of null
01-25 21:33:29.580 339-383/system_process D/ConnectivityService: Switching to new default network: NetworkAgentInfo{ ni{[type: MOBILE[UMTS], state: CONNECTED/CONNECTED, reason: connected, extra: epc.tmobile.com, roaming: false, failover: false, isAvailable: true, isConnectedToProvisioningNetwork: false]}  network{100}  lp{{InterfaceName: eth0 LinkAddresses: [10.0.2.15/32,]  Routes: [0.0.0.0/0 -> 10.0.2.2 eth0,] DnsAddresses: [10.0.2.3,10.0.2.4,10.0.2.5,] Domains: null MTU: 1500 TcpBufferSizes: 58254,349525,1048576,58254,349525,1048576}}  nc{[ Transports: CELLULAR Capabilities: MMS&SUPL&FOTA&IMS&CBS&IA&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=384Kbps LinkDnBandwidth>=384Kbps Specifier: <1>]}  Score{10}  everValidated{false}  lastValidated{false}  created{true}  explicitlySelected{false} }
01-25 21:33:29.756 60-338/? V/IdletimerController: runCmd(/system/bin/ip6tables -t raw -A idletimer_raw_PREROUTING -i eth0 -j IDLETIMER --timeout 5 --label 0 --send_nl_msg 1) res_ipv4=0, res_ipv6=0
01-25 21:33:29.824 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: isCaptivePortal: ret=204 headers={null=[HTTP/1.1 204 No Content], Content-Length=[0], Date=[Mon, 25 Jan 2016 21:33:34 GMT], Server=[GFE/2.0], X-Android-Received-Millis=[1453757609820], X-Android-Response-Source=[NETWORK 204], X-Android-Sent-Millis=[1453757609772]}
01-25 21:33:29.835 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: Don't send network conditions - lacking user consent.
01-25 21:33:29.836 339-807/system_process D/NetworkMonitor/NetworkAgentInfo [MOBILE (UMTS) - 100]: Validated
01-25 21:33:29.856 60-338/? V/IdletimerController: runCmd(/system/bin/ip6tables -t mangle -A idletimer_mangle_POSTROUTING -o eth0 -j IDLETIMER --timeout 5 --label 0 --send_nl_msg 1) res_ipv4=0, res_ipv6=0
01-25 21:33:29.865 339-383/system_process D/ConnectivityService: Setting tx/rx TCP buffers to 58254,349525,1048576,58254,349525,1048576
01-25 21:33:29.880 339-383/system_process D/ConnectivityService: notifyType AVAILABLE for NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.881 339-383/system_process D/CSLegacyTypeTracker: Sending connected broadcast for type 0 NetworkAgentInfo [MOBILE (UMTS) - 100] isDefaultNetwork=true
01-25 21:33:29.882 339-383/system_process D/ConnectivityService: sendStickyBroadcast: action=android.net.conn.CONNECTIVITY_CHANGE_IMMEDIATE
01-25 21:33:29.883 339-383/system_process D/ConnectivityService: sendStickyBroadcast: action=android.net.conn.CONNECTIVITY_CHANGE
01-25 21:33:29.889 339-361/system_process D/Tethering: MasterInitialState.processMessage what=3
01-25 21:33:29.892 339-383/system_process D/ConnectivityService: setProvNotificationVisibleIntent: E visible=false networkType=0 extraInfo=null
01-25 21:33:29.893 588-588/com.android.phone D/TelephonyProvider: subIdString = 1 subId = 1
01-25 21:33:29.939 339-383/system_process D/ConnectivityService: Validated NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.939 339-383/system_process D/ConnectivityService: rematching NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.940 339-383/system_process D/ConnectivityService: Network NetworkAgentInfo [MOBILE (UMTS) - 100] was already satisfying request 1. No change.
01-25 21:33:29.940 339-383/system_process D/ConnectivityService: notifyType AVAILABLE for NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:29.943 339-383/system_process D/ConnectivityService: sendStickyBroadcast: action=android.net.conn.INET_CONDITION_ACTION
01-25 21:33:29.965 339-352/system_process D/ConnectivityService: setProvNotificationVisible: E visible=false networkType=0 action=com.android.internal.telephony.PROVISION0
01-25 21:33:29.966 339-352/system_process D/ConnectivityService: setProvNotificationVisibleIntent: E visible=false networkType=0 extraInfo=null
01-25 21:33:30.176 792-792/com.android.systemui V/SystemUIService: Starting SystemUI services.
01-25 21:33:30.342 339-339/system_process D/TrustManagerService: Removing dead TrustListener.
01-25 21:33:30.350 339-369/system_process V/FingerprintService: startListening(android.service.fingerprint.IFingerprintServiceReceiver$Stub$Proxy@3f3d30fb)
01-25 21:33:30.583 64-389/? D/NuPlayerDriver: start(0xb591b280)
01-25 21:33:30.584 64-824/? I/GenericSource: start
01-25 21:33:30.809 64-389/? D/NuPlayerDriver: reset(0xb591b280)
01-25 21:33:30.824 64-824/? D/NuPlayerDriver: notifyResetComplete(0xb591b280)
01-25 21:33:31.031 64-64/? D/NuPlayerDriver: start(0xb591b160)
01-25 21:33:31.032 64-835/? I/GenericSource: start
01-25 21:33:31.242 64-64/? D/NuPlayerDriver: reset(0xb591b160)
01-25 21:33:31.256 64-835/? D/NuPlayerDriver: notifyResetComplete(0xb591b160)
01-25 21:33:31.412 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:31.413 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.CircleWar.game.android: Resource ID #0x0
01-25 21:33:31.601 792-804/com.android.systemui I/art: Background sticky concurrent mark sweep GC freed 5092(378KB) AllocSpace objects, 0(0B) LOS objects, 0% free, 1615KB/1615KB, paused 856us total 129ms
01-25 21:33:31.669 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:31.669 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.dorianb.lolhunter.main.android: Resource ID #0x0
01-25 21:33:31.723 64-176/? D/NuPlayerDriver: start(0xb5873f40)
01-25 21:33:31.723 64-844/? I/GenericSource: start
01-25 21:33:31.759 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:31.760 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.dorianb.enigma: Resource ID #0x0
01-25 21:33:31.805 792-804/com.android.systemui I/art: Background partial concurrent mark sweep GC freed 1112(123KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 1639KB/2MB, paused 820us total 142.881ms
01-25 21:33:31.868 64-176/? D/NuPlayerDriver: reset(0xb5873f40)
01-25 21:33:31.892 64-844/? D/NuPlayerDriver: notifyResetComplete(0xb5873f40)
01-25 21:33:31.988 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:31.989 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.dorianb.nombremysterieux: Resource ID #0x0
01-25 21:33:32.038 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:32.038 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.dorianb.mysteriousnumber: Resource ID #0x0
01-25 21:33:32.089 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:32.089 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.android.camera: Resource ID #0x0
01-25 21:33:32.096 792-804/com.android.systemui I/art: Background sticky concurrent mark sweep GC freed 0(0B) AllocSpace objects, 0(0B) LOS objects, 4% free, 2MB/2MB, paused 11.753ms total 29.828ms
01-25 21:33:32.250 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:32.250 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.google.android.gms.example.bannerexample: Resource ID #0x0
01-25 21:33:32.278 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:33:32.279 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.dorianb.hunterofpicks.main.android: Resource ID #0x0
01-25 21:33:32.876 339-379/system_process E/NetdConnector: NDC Command {22 bandwidth setiquota eth0 9223372036854775807} took too long (2738ms)
01-25 21:33:33.210 792-792/com.android.systemui D/VolumeUI: Registering volume controller
01-25 21:33:33.293 339-339/system_process V/KeyguardServiceDelegate: *** Keyguard connected (yay!)
01-25 21:33:33.514 634-648/android.process.acore I/art: Background sticky concurrent mark sweep GC freed 6877(329KB) AllocSpace objects, 2(32KB) LOS objects, 43% free, 628KB/1117KB, paused 1.095ms total 128.957ms
01-25 21:33:33.550 792-804/com.android.systemui I/art: Background sticky concurrent mark sweep GC freed 7926(476KB) AllocSpace objects, 0(0B) LOS objects, 0% free, 12MB/12MB, paused 980us total 188.960ms
01-25 21:33:34.463 792-792/com.android.systemui V/KeyguardUpdateMonitor: action android.intent.action.SIM_STATE_CHANGED state: LOADED slotId: 0 subid: 1
01-25 21:33:34.477 53-88/? I/SurfaceFlinger: Boot is finished (87283 ms)
01-25 21:33:34.501 792-792/com.android.systemui I/Choreographer: Skipped 78 frames!  The application may be doing too much work on its main thread.
01-25 21:33:34.598 339-580/system_process I/StatusBarManagerService: registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@3fdb063
01-25 21:33:34.719 339-362/system_process I/SystemServiceManager: Starting phase 1000
01-25 21:33:35.644 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:33:35.757 792-792/com.android.systemui E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:35.757 792-792/com.android.systemui W/BluetoothController: Default BT adapter not found
01-25 21:33:35.780 339-659/system_process D/ConnectivityService: listenForNetwork for NetworkRequest [ id=3, legacyType=-1, [] ]
01-25 21:33:35.782 339-383/system_process D/ConnectivityService: handleRegisterNetworkRequest checking NetworkAgentInfo [MOBILE (UMTS) - 100]
01-25 21:33:35.782 339-383/system_process D/ConnectivityService: apparently satisfied.  currentScore=50
01-25 21:33:35.795 792-864/com.android.systemui D/ConnectivityManager.CallbackHandler: CM callback handler got msg 524290
01-25 21:33:35.850 792-792/com.android.systemui I/CameraManagerGlobal: getCameraService: Reconnecting to camera service
01-25 21:33:35.870 64-176/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:35.870 64-176/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:35.870 64-176/? I/CameraService: getCameraCharacteristics: Switching to HAL1 shim implementation...
01-25 21:33:35.870 64-176/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:35.870 64-176/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:35.873 64-388/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:35.873 64-388/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:35.876 64-64/? V/EmulatedCamera_Camera: getCameraInfo
01-25 21:33:35.877 64-64/? V/EmulatedCamera_BaseCamera: getCameraInfo
01-25 21:33:36.093 792-867/com.android.systemui D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
01-25 21:33:36.098 792-792/com.android.systemui D/Atlas: Validating map...
01-25 21:33:36.114 792-792/com.android.systemui D/PhoneStatusBar: disable: < EXPAND* icons alerts system_info BACK* HOME* RECENT* clock SEARCH* >
01-25 21:33:36.284 792-792/com.android.systemui E/BluetoothAdapter: Bluetooth binder is null
01-25 21:33:36.353 792-792/com.android.systemui D/PhoneStatusBar: heads up is enabled
01-25 21:33:36.416 792-792/com.android.systemui D/PhoneStatusBar: disable: < EXPAND ICONS* alerts SYSTEM_INFO* BACK HOME RECENT clock SEARCH >
01-25 21:33:36.497 792-792/com.android.systemui D/PhoneStatusBar: disable: < EXPAND ICONS alerts SYSTEM_INFO BACK HOME RECENT clock SEARCH >
01-25 21:33:36.634 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:36.634 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a2e0, error=EGL_SUCCESS
01-25 21:33:37.091 792-792/com.android.systemui D/KeyguardUpdateMonitor: handleSimStateChange(subId=1, slotId=0, state=READY)
01-25 21:33:37.092 792-792/com.android.systemui D/KeyguardViewMediator: onSimStateChanged(subId=1, slotId=0,state=READY)
01-25 21:33:37.100 792-792/com.android.systemui V/KeyguardUpdateMonitor: onSubscriptionInfoChanged()
01-25 21:33:37.143 792-792/com.android.systemui V/KeyguardUpdateMonitor: SubInfo:{id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@3bc7e885 mcc 310 mnc 260}
01-25 21:33:37.193 792-792/com.android.systemui I/Choreographer: Skipped 160 frames!  The application may be doing too much work on its main thread.
01-25 21:33:37.212 792-792/com.android.systemui D/ViewRootImpl: changeCanvasOpacity: opaque=true
01-25 21:33:37.526 792-867/com.android.systemui I/OpenGLRenderer: Initialized EGL, version 1.4
01-25 21:33:37.558 792-867/com.android.systemui D/OpenGLRenderer: Enabling debug mode 0
01-25 21:33:37.573 792-867/com.android.systemui W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:37.573 792-867/com.android.systemui W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4bfea40, error=EGL_SUCCESS
01-25 21:33:37.778 339-382/system_process D/WifiService: New client listening to asynchronous messages
01-25 21:33:37.825 792-804/com.android.systemui I/art: WaitForGcToComplete blocked for 1.137s for cause Background
01-25 21:33:37.959 339-662/system_process I/ActivityManager: Start proc 870:com.android.music/u0a33 for broadcast com.android.music/.MediaButtonIntentReceiver
01-25 21:33:38.245 339-353/system_process I/art: Explicit concurrent mark sweep GC freed 17386(1631KB) AllocSpace objects, 7(106KB) LOS objects, 33% free, 6MB/9MB, paused 1.966ms total 157.170ms
01-25 21:33:38.384 792-804/com.android.systemui I/art: Background sticky concurrent mark sweep GC freed 32906(1999KB) AllocSpace objects, 0(0B) LOS objects, 0% free, 22MB/22MB, paused 4.638ms total 550.363ms
01-25 21:33:38.892 792-792/com.android.systemui D/PhoneStatusBar: disable: < EXPAND ICONS alerts SYSTEM_INFO BACK HOME RECENT clock SEARCH >
01-25 21:33:38.903 792-792/com.android.systemui I/Choreographer: Skipped 101 frames!  The application may be doing too much work on its main thread.
01-25 21:33:38.943 792-792/com.android.systemui D/OpenGLRenderer: setting property extraRasterBucket to 0.95
01-25 21:33:38.943 792-792/com.android.systemui D/OpenGLRenderer:     failed
01-25 21:33:38.943 792-792/com.android.systemui D/OpenGLRenderer: setting property extraRasterBucket to 0.0
01-25 21:33:38.943 792-792/com.android.systemui D/OpenGLRenderer:     failed
01-25 21:33:39.048 751-764/com.android.defcontainer D/DefContainer: Copying /data/local/tmp/com.google.android.gms.example.bannerexample to base.apk
01-25 21:33:39.180 792-792/com.android.systemui D/PhoneStatusBar: disable: < expand* ICONS alerts SYSTEM_INFO back* HOME RECENT clock SEARCH >
01-25 21:33:39.181 339-603/system_process V/KeyguardServiceDelegate: **** SHOWN CALLED ****
01-25 21:33:39.958 339-659/system_process I/ActivityManager: Start proc 886:com.android.calendar/u0a17 for broadcast com.android.calendar/.widget.CalendarAppWidgetService$CalendarFactory
01-25 21:33:40.580 339-603/system_process I/ActivityManager: Start proc 902:android.process.media/u0a5 for content provider com.android.providers.media/.MediaProvider
01-25 21:33:40.772 886-886/com.android.calendar D/ExtensionsFactory: No custom extensions.
01-25 21:33:40.928 682-682/com.android.deskclock V/AlarmClock: AlarmInitReceiver android.intent.action.TIME_SET
01-25 21:33:41.024 339-702/system_process I/ActivityManager: Start proc 922:com.android.providers.calendar/u0a1 for content provider com.android.providers.calendar/.CalendarProvider2
01-25 21:33:41.182 922-922/com.android.providers.calendar W/ResourcesManager: Asset path '/system/framework/android.test.runner.jar' does not exist or contains no resources.
01-25 21:33:41.875 922-922/com.android.providers.calendar I/CalendarProvider2: Created com.android.providers.calendar.CalendarAlarmManager@3d80c91c(com.android.providers.calendar.CalendarProvider2@14c45925)
01-25 21:33:42.045 682-941/com.android.deskclock V/AlarmClock: AlarmInitReceiver finished
01-25 21:33:42.234 339-689/system_process I/ActivityManager: Start proc 945:com.android.mms/u0a9 for broadcast com.android.mms/.transaction.MmsSystemEventReceiver
01-25 21:33:42.709 339-659/system_process D/CountryDetector: The first listener is added
01-25 21:33:42.813 945-945/com.android.mms V/Mms: mnc/mcc: 310260
01-25 21:33:42.816 945-945/com.android.mms V/Mms: tag: bool value: enabledMMS - true
01-25 21:33:42.817 945-945/com.android.mms V/Mms: tag: int value: maxMessageSize - 307200
01-25 21:33:42.817 945-945/com.android.mms V/Mms: tag: int value: maxImageHeight - 480
01-25 21:33:42.817 945-945/com.android.mms V/Mms: tag: int value: maxImageWidth - 640
01-25 21:33:42.818 945-945/com.android.mms V/Mms: tag: int value: defaultSMSMessagesPerThread - 10000
01-25 21:33:42.818 945-945/com.android.mms V/Mms: tag: int value: defaultMMSMessagesPerThread - 1000
01-25 21:33:42.818 945-945/com.android.mms V/Mms: tag: int value: minMessageCountPerThread - 10
01-25 21:33:42.818 945-945/com.android.mms V/Mms: tag: int value: maxMessageCountPerThread - 5000
01-25 21:33:42.819 945-945/com.android.mms V/Mms: tag: string value: uaProfUrl - http://www.google.com/oha/rdf/ua-profile-kila.xml
01-25 21:33:42.819 945-945/com.android.mms V/Mms: tag: int value: recipientLimit - -1
01-25 21:33:42.820 945-945/com.android.mms V/Mms: tag: bool value: enableMultipartSMS - true
01-25 21:33:42.821 945-945/com.android.mms V/Mms: tag: int value: smsToMmsTextThreshold - -1
01-25 21:33:42.821 945-945/com.android.mms V/Mms: tag: bool value: enableSlideDuration - true
01-25 21:33:42.821 945-945/com.android.mms V/Mms: tag: int value: maxMessageTextSize - -1
01-25 21:33:43.125 922-922/com.android.providers.calendar I/CalendarProvider2: Sending notification intent: Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar }
01-25 21:33:43.126 922-922/com.android.providers.calendar W/ContentResolver: Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar)
01-25 21:33:43.211 945-945/com.android.mms D/ConnectivityManager: getMobileDataEnabled()+ subId=1
01-25 21:33:43.213 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:43.215 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:43.215 945-945/com.android.mms D/ConnectivityManager: getMobileDataEnabled()- subId=1 retVal=true
01-25 21:33:43.262 339-973/system_process I/RecoverySystem: No recovery log file
01-25 21:33:43.309 339-973/system_process I/BootReceiver: Copying audit failures to DropBox
01-25 21:33:43.310 339-973/system_process I/BootReceiver: Checking for fsck errors
01-25 21:33:43.369 339-580/system_process I/ActivityManager: Start proc 975:com.android.dialer/u0a4 for broadcast com.android.dialer/.calllog.CallLogReceiver
01-25 21:33:43.600 339-356/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:43.610 339-356/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:43.610 339-356/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:43.611 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:43.611 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:43.611 339-356/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:43.612 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:43.612 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:43.613 339-356/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:43.613 339-356/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:43.613 339-356/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:43.733 339-356/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:43.733 339-356/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:43 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:43.734 339-356/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:43.930 339-971/system_process I/ActivityManager: Start proc 991:com.android.keychain/1000 for service com.android.keychain/.KeyChainService
01-25 21:33:44.036 339-356/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:44.036 339-356/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:44.037 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:44.037 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:44.037 339-356/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:44.037 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:44.037 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:44.038 339-356/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:44.038 339-356/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:44.038 339-356/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:44.041 339-356/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:44.041 339-356/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:44 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:44.043 339-356/system_process D/GpsLocationProvider: received SIM realted action: 
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: SIM MCC/MNC is available: 310260
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: Reset GPS properties, previous size = 5
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000
01-25 21:33:44.048 339-356/system_process D/GpsLocationProvider: GpsParamsResource: SUPL_MODE=1
01-25 21:33:44.049 339-356/system_process W/GpsLocationProvider: Could not open GPS configuration file /etc/gps.conf
01-25 21:33:44.049 339-356/system_process D/GpsLocationProvider: GPS properties reloaded, size = 5
01-25 21:33:44.049 339-356/system_process E/GpsLocationProvider: no AGPS interface in set_agps_server
01-25 21:33:44.053 339-356/system_process E/GpsLocationProvider: no GPS configuration interface in configuraiton_update
01-25 21:33:44.053 339-356/system_process D/GpsLocationProvider: final config = #Mon Jan 25 21:33:44 GMT+00:00 2016
                                                                 SUPL_VER=0x20000
                                                                 SUPL_HOST=supl.google.com
                                                                 NTP_SERVER=north-america.pool.ntp.org
                                                                 SUPL_PORT=7275
                                                                 SUPL_MODE=1
01-25 21:33:44.208 975-975/com.android.dialer D/ExtensionsFactory: No custom extensions.
01-25 21:33:44.219 945-990/com.android.mms D/ConnectivityManager: getMobileDataEnabled()+ subId=1
01-25 21:33:44.220 588-602/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:44.221 588-602/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:44.222 945-990/com.android.mms D/ConnectivityManager: getMobileDataEnabled()- subId=1 retVal=true
01-25 21:33:44.240 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:44.240 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:44.241 339-356/system_process D/TelephonyManager: getDataEnabled: retVal=true
01-25 21:33:44.300 588-602/com.android.phone D/MmsSmsDatabaseHelper: [MmsSmsDb] tableName: threads hasAutoIncrement: CREATE TABLE threads (_id INTEGER PRIMARY KEY AUTOINCREMENT,date INTEGER DEFAULT 0,message_count INTEGER DEFAULT 0,recipient_ids TEXT,snippet TEXT,snippet_cs INTEGER DEFAULT 0,read INTEGER DEFAULT 1,archived INTEGER DEFAULT 0,type INTEGER DEFAULT 0,error INTEGER DEFAULT 0,has_attachment INTEGER DEFAULT 0) result: true
01-25 21:33:44.303 588-602/com.android.phone D/MmsSmsDatabaseHelper: [MmsSmsDb] tableName: canonical_addresses hasAutoIncrement: CREATE TABLE canonical_addresses (_id INTEGER PRIMARY KEY AUTOINCREMENT,address TEXT) result: true
01-25 21:33:44.317 339-381/system_process D/WIFI: Registering NetworkFactory
01-25 21:33:44.318 339-381/system_process D/WIFI_UT: Registering NetworkFactory
01-25 21:33:44.321 339-383/system_process D/ConnectivityService: Got NetworkFactory Messenger for WIFI
01-25 21:33:44.321 339-383/system_process D/ConnectivityService: Got NetworkFactory Messenger for WIFI_UT
01-25 21:33:44.328 588-588/com.android.phone V/OtaStartupReceiver: onOtaspChanged: mOtaspMode=3
01-25 21:33:44.330 588-602/com.android.phone D/MmsSmsDatabaseHelper: [MmsSmsDb] tableName: part hasAutoIncrement: CREATE TABLE part (_id INTEGER PRIMARY KEY AUTOINCREMENT,mid INTEGER,seq INTEGER DEFAULT 0,ct TEXT,name TEXT,chset INTEGER,cd TEXT,fn TEXT,cid TEXT,cl TEXT,ctt_s INTEGER,ctt_t TEXT,_data TEXT,text TEXT) result: true
01-25 21:33:44.333 339-381/system_process D/WIFI: got request NetworkRequest [ id=1, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] with score 50
01-25 21:33:44.334 588-602/com.android.phone D/MmsSmsDatabaseHelper: [MmsSmsDb] tableName: pdu hasAutoIncrement: CREATE TABLE pdu (_id INTEGER PRIMARY KEY AUTOINCREMENT,thread_id INTEGER,date INTEGER,date_sent INTEGER DEFAULT 0,msg_box INTEGER,read INTEGER DEFAULT 0,m_id TEXT,sub TEXT,sub_cs INTEGER,ct_t TEXT,ct_l TEXT,exp INTEGER,m_cls TEXT,m_type INTEGER,v INTEGER,m_size INTEGER,pri INTEGER,rr INTEGER,rpt_a INTEGER,resp_st INTEGER,st INTEGER,tr_id TEXT,retr_st INTEGER,retr_txt TEXT,retr_txt_cs INTEGER,read_status INTEGER,ct_cls INTEGER,resp_txt TEXT,d_tm INTEGER,d_rpt INTEGER,locked INTEGER DEFAULT 0,sub_id INTEGER DEFAULT -1, seen INTEGER DEFAULT 0,creator TEXT,text_only INTEGER DEFAULT 0) result: true
01-25 21:33:44.335 588-602/com.android.phone D/MmsSmsDatabaseHelper: [getWritableDatabase] hasAutoIncrementThreads: true hasAutoIncrementAddresses: true hasAutoIncrementPart: true hasAutoIncrementPdu: true
01-25 21:33:44.339 339-381/system_process D/WIFI_UT: got request NetworkRequest [ id=1, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] with score 50
01-25 21:33:44.565 339-662/system_process I/ActivityManager: Start proc 1013:com.android.managedprovisioning/u0a8 for broadcast com.android.managedprovisioning/.BootReminder
01-25 21:33:44.704 945-990/com.android.mms D/ConnectivityManager: getMobileDataEnabled()+ subId=1
01-25 21:33:44.705 588-602/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:44.706 588-602/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:44.707 945-990/com.android.mms D/ConnectivityManager: getMobileDataEnabled()- subId=1 retVal=true
01-25 21:33:45.025 339-1031/system_process D/GpsLocationProvider: NTP server returned: 1453757614765 (Mon Jan 25 21:33:34 GMT+00:00 2016) reference: 86097 certainty: 24 system time offset: -10260
01-25 21:33:45.218 945-1033/com.android.mms D/ConnectivityManager: getMobileDataEnabled()+ subId=1
01-25 21:33:45.220 588-775/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:45.221 588-775/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:45.221 945-1033/com.android.mms D/ConnectivityManager: getMobileDataEnabled()- subId=1 retVal=true
01-25 21:33:45.267 945-945/com.android.mms D/ConnectivityManager: getMobileDataEnabled()+ subId=1
01-25 21:33:45.269 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=0
01-25 21:33:45.269 588-969/com.android.phone D/PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
01-25 21:33:45.270 945-945/com.android.mms D/ConnectivityManager: getMobileDataEnabled()- subId=1 retVal=true
01-25 21:33:45.329 339-662/system_process I/ActivityManager: Start proc 1035:com.android.settings/1000 for broadcast com.android.settings/.sim.SimBootReceiver
01-25 21:33:45.451 67-67/? I/art: Explicit concurrent mark sweep GC freed 705(30KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 569us total 117.689ms
01-25 21:33:45.527 67-67/? I/art: Explicit concurrent mark sweep GC freed 7(240B) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 604us total 73.846ms
01-25 21:33:45.561 67-67/? I/art: Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 91% free, 92KB/1116KB, paused 600us total 31.815ms
01-25 21:33:45.614 945-1032/com.android.mms D/Mms: cancelNotification
01-25 21:33:46.005 902-1030/android.process.media E/SQLiteLog: (283) recovered 82 frames from WAL file /data/user/0/com.android.providers.media/databases/internal.db-wal
01-25 21:33:46.081 945-1034/com.android.mms D/Mms: cancelNotification
01-25 21:33:47.586 339-351/system_process I/art: Background sticky concurrent mark sweep GC freed 35122(1818KB) AllocSpace objects, 26(897KB) LOS objects, 23% free, 6MB/8MB, paused 1.965ms total 125.338ms
01-25 21:33:47.840 339-367/system_process D/PackageManager: Renaming /data/app/vmdl222337771.tmp to /data/app/com.google.android.gms.example.bannerexample-1
01-25 21:33:47.874 339-357/system_process I/ActivityManager: Force stopping com.google.android.gms.example.bannerexample appid=10059 user=-1: uninstall pkg
01-25 21:33:48.006 339-367/system_process I/PackageManager: Package com.google.android.gms.example.bannerexample codePath changed from /data/app/com.google.android.gms.example.bannerexample-2 to /data/app/com.google.android.gms.example.bannerexample-1; Retaining data and using new
01-25 21:33:48.092 339-367/system_process I/PackageManager: Running dexopt on: /data/app/com.google.android.gms.example.bannerexample-1/base.apk pkg=com.google.android.gms.example.bannerexample isa=arm vmSafeMode=false
01-25 21:33:48.113 902-1030/android.process.media W/MediaScanner: Error opening directory '/oem/media/', skipping: No such file or directory.
01-25 21:33:48.369 1054-1054/? I/dex2oat: /system/bin/dex2oat --zip-fd=6 --zip-location=/data/app/com.google.android.gms.example.bannerexample-1/base.apk --oat-fd=7 --oat-location=/data/dalvik-cache/arm/data@app@com.google.android.gms....@base.apk@classes.dex --instruction-set=arm --instruction-set-features=default --runtime-arg -Xms64m --runtime-arg -Xmx512m --swap-fd=10
01-25 21:33:48.422 902-1030/android.process.media W/MediaProvider: no database for scanned volume external
01-25 21:33:48.491 902-1030/android.process.media E/SQLiteLog: (283) recovered 95 frames from WAL file /data/user/0/com.android.providers.media/databases/external.db-wal
01-25 21:33:48.748 902-1030/android.process.media W/MediaScanner: Error opening directory '/storage/sdcard/', skipping: Permission denied.
01-25 21:33:48.767 902-1030/android.process.media V/MediaScanner: pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@376a86aa
01-25 21:33:48.770 902-1030/android.process.media V/MediaScanner: /pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@376a86aa
01-25 21:33:49.374 792-792/com.android.systemui D/PhoneStatusBar: disable: < expand ICONS alerts SYSTEM_INFO back HOME RECENT clock SEARCH >
01-25 21:33:49.616 792-792/com.android.systemui D/PhoneStatusBar: disable: < expand icons* alerts system_info* back HOME RECENT clock SEARCH >
01-25 21:33:49.926 792-867/com.android.systemui W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:49.926 792-867/com.android.systemui W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xa400d780, error=EGL_SUCCESS
01-25 21:33:49.938 792-792/com.android.systemui D/PhoneStatusBar: disable: < expand icons alerts system_info back home* recent* clock search* >
01-25 21:33:50.043 339-339/system_process W/IInputConnectionWrapper: showStatusIcon on inactive InputConnection
01-25 21:33:50.455 792-867/com.android.systemui W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:33:50.455 792-867/com.android.systemui W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4bfea40, error=EGL_SUCCESS
01-25 21:33:50.971 1054-1054/? I/dex2oat: Decided to run without swap.
01-25 21:33:51.311 1054-1054/? W/dex2oat: Before Android 4.1, method int android.support.v7.internal.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
01-25 21:33:51.887 945-954/com.android.mms E/StrictMode: A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource leaks.
                                                         java.lang.Throwable: Explicit termination method 'release' not called
                                                             at dalvik.system.CloseGuard.open(CloseGuard.java:184)
                                                             at android.drm.DrmManagerClient.<init>(DrmManagerClient.java:258)
                                                             at com.google.android.mms.pdu.PduPersister.<init>(PduPersister.java:288)
                                                             at com.google.android.mms.pdu.PduPersister.getPduPersister(PduPersister.java:299)
                                                             at com.android.mms.transaction.TransactionService.onNewIntent(TransactionService.java:231)
                                                             at com.android.mms.transaction.TransactionService$ServiceHandler.handleMessage(TransactionService.java:633)
                                                             at android.os.Handler.dispatchMessage(Handler.java:102)
                                                             at android.os.Looper.loop(Looper.java:135)
                                                             at android.os.HandlerThread.run(HandlerThread.java:61)
01-25 21:33:54.796 886-886/com.android.calendar D/AlertReceiver: onReceive: a=android.intent.action.BOOT_COMPLETED Intent { act=android.intent.action.BOOT_COMPLETED flg=0x8000010 cmp=com.android.calendar/.alerts.AlertReceiver (has extras) }
01-25 21:33:54.814 682-682/com.android.deskclock V/AlarmClock: AlarmInitReceiver android.intent.action.BOOT_COMPLETED
01-25 21:33:54.818 339-357/system_process I/ActivityManager: Waited long enough for: ServiceRecord{2b719329 u0 com.android.music/.MediaPlaybackService}
01-25 21:33:54.898 1054-1054/? W/dex2oat: Verification of void com.google.android.gms.internal.zzaz.<init>(com.google.android.gms.ads.internal.client.AdSizeParcel, com.google.android.gms.internal.zzhs, com.google.android.gms.ads.internal.util.client.VersionInfoParcel, android.view.View, com.google.android.gms.internal.zzdz) took 105.575ms
01-25 21:33:54.906 886-886/com.android.calendar D/AlertUtils: Flushing old alerts from shared prefs table
01-25 21:33:54.916 682-941/com.android.deskclock V/AlarmClock: AlarmInitReceiver - Reset timers and clear stopwatch data
01-25 21:33:54.928 886-1064/com.android.calendar D/AlertService: 0 Action = android.intent.action.BOOT_COMPLETED
01-25 21:33:54.938 886-1064/com.android.calendar D/AlertService: Scheduling next alarm with AlarmScheduler. sEventReminderReceived: null
01-25 21:33:55.004 682-941/com.android.deskclock V/AlarmClock: AlarmInitReceiver finished
01-25 21:33:55.006 1054-1054/? W/dex2oat: Verification of void com.google.android.gms.internal.zzaz.zzbZ() took 103.171ms
01-25 21:33:55.063 339-369/system_process I/ActivityManager: Start proc 1068:com.android.email/u0a25 for broadcast com.android.email/.service.EmailBroadcastReceiver
01-25 21:33:55.290 1054-1054/? W/dex2oat: Verification of org.json.JSONObject com.google.android.gms.internal.zzaz.zzd(android.view.View) took 280.143ms
01-25 21:33:55.335 886-1064/com.android.calendar D/AlarmScheduler: No events found starting within 1 week.
01-25 21:33:55.798 339-767/system_process I/ActivityManager: Start proc 1084:com.android.exchange/u0a27 for service com.android.exchange/.service.EasService
01-25 21:33:55.914 1054-1054/? W/dex2oat: Verification of void com.google.android.gms.internal.zzfp.handleMessage(android.os.Message) took 180.854ms
01-25 21:33:56.176 1068-1080/com.android.email I/art: Background sticky concurrent mark sweep GC freed 2762(223KB) AllocSpace objects, 6(96KB) LOS objects, 35% free, 716KB/1117KB, paused 1.061ms total 115.889ms
01-25 21:33:56.303 339-689/system_process W/ActivityManager: Unable to start service Intent { cmp=com.android.email/.service.AttachmentService } U=0: not found
01-25 21:33:56.381 1068-1104/com.android.email I/Email: Observing account changes for notifications
01-25 21:34:09.937 339-357/system_process I/ActivityManager: Waited long enough for: ServiceRecord{2dab616e u0 com.android.calendar/.alerts.InitAlarmsService}
01-25 21:34:11.765 556-556/com.android.inputmethod.latin I/SystemBroadcastReceiver: Boot has been completed
01-25 21:34:11.769 556-556/com.android.inputmethod.latin I/LauncherIconVisibilityManager: Activity has already been disabled: ComponentInfo{com.android.inputmethod.latin/com.android.inputmethod.latin.setup.SetupActivity}
01-25 21:34:11.853 886-886/com.android.calendar D/AlertReceiver: onReceive: a=android.intent.action.PROVIDER_CHANGED Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar flg=0x10 cmp=com.android.calendar/.alerts.AlertReceiver }
01-25 21:34:11.972 945-945/com.android.mms V/Mms: onStart: #1 mResultCode: -1 = Activity.RESULT_OK
01-25 21:34:11.995 886-1106/com.android.calendar D/AlertService: 0 Action = android.intent.action.PROVIDER_CHANGED
01-25 21:34:12.030 1068-1068/com.android.email E/ActivityThread: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@3ff6d595 that was originally bound here
                                                                 android.app.ServiceConnectionLeaked: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@3ff6d595 that was originally bound here
                                                                     at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1077)
                                                                     at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:971)
                                                                     at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1774)
                                                                     at android.app.ContextImpl.bindService(ContextImpl.java:1757)
                                                                     at android.content.ContextWrapper.bindService(ContextWrapper.java:539)
                                                                     at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:181)
                                                                     at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:224)
                                                                     at com.android.email.service.EmailServiceUtils.isServiceAvailable(EmailServiceUtils.java:160)
                                                                     at com.android.email.provider.AccountReconciler.reconcileAccountsInternal(AccountReconciler.java:171)
                                                                     at com.android.email.provider.AccountReconciler.reconcileAccounts(AccountReconciler.java:115)
                                                                     at com.android.email.service.EmailBroadcastProcessorService.reconcileAndStartServices(EmailBroadcastProcessorService.java:305)
                                                                     at com.android.email.service.EmailBroadcastProcessorService.onBootCompleted(EmailBroadcastProcessorService.java:295)
                                                                     at com.android.email.service.EmailBroadcastProcessorService.onHandleIntent(EmailBroadcastProcessorService.java:130)
                                                                     at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
                                                                     at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                     at android.os.Looper.loop(Looper.java:135)
                                                                     at android.os.HandlerThread.run(HandlerThread.java:61)
01-25 21:34:12.034 922-1109/com.android.providers.calendar E/SQLiteLog: (284) automatic index on view_events(_id)
01-25 21:34:12.115 1054-1054/? W/dex2oat: Compilation of boolean com.google.android.gms.internal.zzcq$zza.onTransact(int, android.os.Parcel, android.os.Parcel, int) took 292.199ms
01-25 21:34:13.354 1084-1084/com.android.exchange I/Exchange: EasService.onCreate
01-25 21:34:13.388 1084-1112/com.android.exchange I/Exchange: RestartPingTask
01-25 21:34:13.483 1084-1084/com.android.exchange I/Exchange: RestartPingsTask did not start any pings.
01-25 21:34:13.504 1084-1084/com.android.exchange I/Exchange: PSS stopIfIdle
01-25 21:34:13.504 1084-1084/com.android.exchange I/Exchange: PSS has no active accounts; stopping service.
01-25 21:34:13.508 1084-1084/com.android.exchange I/Exchange: onDestroy
01-25 21:34:16.609 1054-1054/? I/dex2oat: dex2oat took 28.222s (threads: 1) arena alloc=419KB java alloc=5MB native alloc=8MB free=3MB
01-25 21:34:16.626 339-357/system_process I/ActivityManager: Force stopping com.google.android.gms.example.bannerexample appid=10059 user=-1: update pkg
01-25 21:34:16.631 339-367/system_process W/PackageManager: Code path for pkg : com.google.android.gms.example.bannerexample changing from /data/app/com.google.android.gms.example.bannerexample-2 to /data/app/com.google.android.gms.example.bannerexample-1
01-25 21:34:16.632 339-367/system_process W/PackageManager: Resource path for pkg : com.google.android.gms.example.bannerexample changing from /data/app/com.google.android.gms.example.bannerexample-2 to /data/app/com.google.android.gms.example.bannerexample-1
01-25 21:34:16.915 339-367/system_process I/ActivityManager: Force stopping com.google.android.gms.example.bannerexample appid=10059 user=0: pkg removed
01-25 21:34:16.952 339-339/system_process D/JobSchedulerService: Receieved: android.intent.action.PACKAGE_REMOVED
01-25 21:34:16.952 339-339/system_process D/BackupManagerService: Received broadcast Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.google.android.gms.example.bannerexample flg=0x4000010 (has extras) }
01-25 21:34:16.979 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000010
01-25 21:34:17.144 609-609/com.android.launcher I/art: Explicit concurrent mark sweep GC freed 9014(497KB) AllocSpace objects, 5(1261KB) LOS objects, 39% free, 4MB/7MB, paused 780us total 192.938ms
01-25 21:34:17.179 792-792/com.android.systemui I/art: Explicit concurrent mark sweep GC freed 32196(1318KB) AllocSpace objects, 1(7MB) LOS objects, 35% free, 7MB/11MB, paused 959us total 240.257ms
01-25 21:34:17.268 991-991/com.android.keychain W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1692 android.content.ContextWrapper.startService:516 android.content.ContextWrapper.startService:516 com.android.keychain.KeyChainBroadcastReceiver.onReceive:12 android.app.ActivityThread.handleReceiver:2612 
01-25 21:34:17.314 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000010
01-25 21:34:17.362 886-1106/com.android.calendar I/GlobalDismissManager: no sender configured
01-25 21:34:17.363 886-1106/com.android.calendar D/AlertService: Beginning updateAlertNotification
01-25 21:34:17.396 339-339/system_process D/BackupManagerService: Received broadcast Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.google.android.gms.example.bannerexample flg=0x4000010 (has extras) }
01-25 21:34:17.407 339-339/system_process W/BackupManagerService: Removing schedule queue dupe of com.google.android.gms.example.bannerexample
01-25 21:34:17.452 339-662/system_process I/ActivityManager: Start proc 1118:com.svox.pico/u0a38 for broadcast com.svox.pico/.VoiceDataInstallerReceiver
01-25 21:34:17.845 339-351/system_process I/art: Background partial concurrent mark sweep GC freed 26871(1777KB) AllocSpace objects, 18(433KB) LOS objects, 33% free, 6MB/9MB, paused 1.851ms total 285.562ms
01-25 21:34:17.967 339-373/system_process I/InputReader: Reconfiguring input devices.  changes=0x00000010
01-25 21:34:18.008 339-367/system_process W/Settings: Setting install_non_market_apps has moved from android.provider.Settings.Global to android.provider.Settings.Secure, returning read-only value.
01-25 21:34:18.018 886-1106/com.android.calendar D/AlertService: No fired or scheduled alerts
01-25 21:34:18.055 886-1106/com.android.calendar D/AlertService: Scheduling next alarm with AlarmScheduler. sEventReminderReceived: null
01-25 21:34:18.199 886-1106/com.android.calendar D/AlarmScheduler: No events found starting within 1 week.
01-25 21:34:18.450 339-367/system_process I/art: Explicit concurrent mark sweep GC freed 2031(127KB) AllocSpace objects, 0(0B) LOS objects, 33% free, 6MB/9MB, paused 1.903ms total 438.310ms
01-25 21:34:18.512 668-668/? I/art: System.exit called, status: 0
01-25 21:34:18.512 668-668/? I/AndroidRuntime: VM exiting with result code 0.
01-25 21:34:19.525 1138-1138/? D/AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
01-25 21:34:19.543 1138-1138/? D/AndroidRuntime: CheckJNI is ON
01-25 21:34:19.898 1138-1138/? E/memtrack: Couldn't load memtrack module (No such file or directory)
01-25 21:34:19.898 1138-1138/? E/android.os.Debug: failed to load memtrack module: -2
01-25 21:34:20.109 1138-1138/? D/AndroidRuntime: Calling main entry com.android.commands.am.Am
01-25 21:34:20.141 339-352/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.google.android.gms.example.bannerexample/.MyActivity} from uid 0 on display 0
01-25 21:34:20.177 339-352/system_process V/WindowManager: addAppToken: AppWindowToken{1a4624df token=Token{3523e77e ActivityRecord{1730a539 u0 com.google.android.gms.example.bannerexample/.MyActivity t60}}} to stack=1 task=60 at 0
01-25 21:34:20.240 339-362/system_process V/WindowManager: Adding window Window{272b6856 u0 Starting com.google.android.gms.example.bannerexample} at 2 of 7 (after Window{a99dbca u0 com.android.launcher/com.android.launcher2.Launcher})
01-25 21:34:20.247 339-356/system_process W/VoiceInteractionManagerService: no available voice recognition services found for user 0
01-25 21:34:20.250 1138-1138/? D/AndroidRuntime: Shutting down VM
01-25 21:34:20.265 1138-1140/? I/art: Debugger is no longer active
01-25 21:34:20.502 67-67/? I/art: Background concurrent mark sweep GC freed 784(33KB) AllocSpace objects, 0(0B) LOS objects, 91% free, 93KB/1117KB, paused 12.954ms total 113.467ms
01-25 21:34:20.542 1148-1148/com.google.android.gms.example.bannerexample I/art: Not late-enabling -Xcheck:jni (already on)
01-25 21:34:20.554 339-767/system_process I/ActivityManager: Start proc 1148:com.google.android.gms.example.bannerexample/u0a59 for activity com.google.android.gms.example.bannerexample/.MyActivity
01-25 21:34:21.684 1148-1155/com.google.android.gms.example.bannerexample W/art: Suspending all threads took: 28.950ms
01-25 21:34:22.234 1148-1155/com.google.android.gms.example.bannerexample W/art: Suspending all threads took: 106.911ms
01-25 21:34:23.650 1148-1160/com.google.android.gms.example.bannerexample I/art: Background sticky concurrent mark sweep GC freed 2885(246KB) AllocSpace objects, 0(0B) LOS objects, 24% free, 846KB/1117KB, paused 1.050ms total 181.059ms
01-25 21:34:23.744 339-399/system_process D/TaskPersister: removeObsoleteFile: deleting file=56_task.xml
01-25 21:34:23.880 1148-1160/com.google.android.gms.example.bannerexample I/art: Background partial concurrent mark sweep GC freed 2366(123KB) AllocSpace objects, 0(0B) LOS objects, 52% free, 916KB/1940KB, paused 876us total 108.531ms
01-25 21:34:23.898 1148-1148/com.google.android.gms.example.bannerexample W/GooglePlayServicesUtil: Google Play services is missing.
01-25 21:34:24.287 1148-1148/com.google.android.gms.example.bannerexample I/WebViewFactory: Loading com.android.webview version 39 (1737576-arm) (code 300001)
01-25 21:34:24.357 609-609/com.android.launcher I/Launcher: Deferring update until onResume
01-25 21:34:24.542 1148-1148/com.google.android.gms.example.bannerexample I/LibraryLoader: Time to load native libraries: 83 ms (timestamps 464-547)
01-25 21:34:24.544 1148-1148/com.google.android.gms.example.bannerexample I/LibraryLoader: Expected native library version number "",actual native library version number ""
01-25 21:34:24.591 1148-1148/com.google.android.gms.example.bannerexample V/WebViewChromiumFactoryProvider: Binding Chromium to main looper Looper (main, tid 1) {2f239638}
01-25 21:34:24.592 1148-1148/com.google.android.gms.example.bannerexample I/LibraryLoader: Expected native library version number "",actual native library version number ""
01-25 21:34:24.606 1148-1148/com.google.android.gms.example.bannerexample I/chromium: [INFO:library_loader_hooks.cc(104)] Chromium logging enabled: level = 0, default verbosity = 0
01-25 21:34:24.635 1148-1148/com.google.android.gms.example.bannerexample I/BrowserStartupController: Initializing chromium process, singleProcess=true
01-25 21:34:24.645 1148-1148/com.google.android.gms.example.bannerexample W/art: Attempt to remove local handle scope entry from IRT, ignoring
01-25 21:34:24.753 1148-1185/com.google.android.gms.example.bannerexample W/AudioManagerAndroid: Requires BLUETOOTH permission
01-25 21:34:24.775 1148-1148/com.google.android.gms.example.bannerexample W/chromium: [WARNING:resource_bundle.cc(304)] locale_file_path.empty()
01-25 21:34:24.780 1148-1148/com.google.android.gms.example.bannerexample I/chromium: [INFO:aw_browser_main_parts.cc(65)] Load from apk succesful, fd=31 off=46184 len=3037
01-25 21:34:24.787 1148-1148/com.google.android.gms.example.bannerexample I/chromium: [INFO:aw_browser_main_parts.cc(78)] Loading webviewchromium.pak from, fd:32 off:229484 len:1089587
01-25 21:34:25.073 1148-1148/com.google.android.gms.example.bannerexample W/chromium: [WARNING:mailbox_synchronizer.cc(41)] MailboxSync not supported due to missing EGL image/fence support
01-25 21:34:25.216 339-689/system_process W/ActivityManager: Unable to start service Intent { act=com.android.vending.billing.InAppBillingService.BIND pkg=com.android.vending } U=0: not found
01-25 21:34:25.225 886-1066/com.android.calendar D/InitAlarmsService: Clearing and rescheduling alarms.
01-25 21:34:25.307 1148-1148/com.google.android.gms.example.bannerexample I/Ads: Starting ad request.
01-25 21:34:25.387 1148-1200/com.google.android.gms.example.bannerexample D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
01-25 21:34:25.400 1148-1148/com.google.android.gms.example.bannerexample D/Atlas: Validating map...
01-25 21:34:25.412 339-662/system_process V/WindowManager: Adding window Window{19c94f63 u0 com.google.android.gms.example.bannerexample/com.google.android.gms.example.bannerexample.MyActivity} at 2 of 8 (before Window{272b6856 u0 Starting com.google.android.gms.example.bannerexample})
01-25 21:34:25.530 1148-1200/com.google.android.gms.example.bannerexample I/OpenGLRenderer: Initialized EGL, version 1.4
01-25 21:34:25.560 1148-1200/com.google.android.gms.example.bannerexample D/OpenGLRenderer: Enabling debug mode 0
01-25 21:34:25.575 1148-1200/com.google.android.gms.example.bannerexample W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:34:25.575 1148-1200/com.google.android.gms.example.bannerexample W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b967e0, error=EGL_SUCCESS
01-25 21:34:25.763 1148-1160/com.google.android.gms.example.bannerexample I/art: Background sticky concurrent mark sweep GC freed 2231(275KB) AllocSpace objects, 2(32KB) LOS objects, 19% free, 1571KB/1940KB, paused 1.751ms total 133.216ms
01-25 21:34:25.858 339-362/system_process I/ActivityManager: Displayed com.google.android.gms.example.bannerexample/.MyActivity: +5s522ms
01-25 21:34:25.943 1198-1198/? I/dex2oat: /system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=default --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --dex-file=/data/data/com.google.android.gms.example.bannerexample/cache/ads846170136.jar --oat-fd=71 --oat-location=/data/data/com.google.android.gms.example.bannerexample/cache/ads846170136.dex --runtime-arg -Xms64m --runtime-arg -Xmx512m
01-25 21:34:26.356 1198-1198/? I/dex2oat: dex2oat took 411.609ms (threads: 1) arena alloc=39KB java alloc=12KB native alloc=459KB free=3MB
01-25 21:34:26.754 1148-1204/com.google.android.gms.example.bannerexample I/Ads: Not on service, return
01-25 21:34:26.956 1148-1148/com.google.android.gms.example.bannerexample W/chromium: [WARNING:data_reduction_proxy_settings.cc(331)] SPDY proxy OFF at startup
01-25 21:34:27.008 1148-1160/com.google.android.gms.example.bannerexample I/art: Background sticky concurrent mark sweep GC freed 606(62KB) AllocSpace objects, 0(0B) LOS objects, 4% free, 1856KB/1940KB, paused 1.866ms total 195.104ms
01-25 21:34:27.046 1148-1148/com.google.android.gms.example.bannerexample W/art: Attempt to remove local handle scope entry from IRT, ignoring
01-25 21:34:27.086 1148-1148/com.google.android.gms.example.bannerexample W/AwContents: onDetachedFromWindow called when already detached. Ignoring
01-25 21:34:27.138 1148-1148/com.google.android.gms.example.bannerexample W/art: Attempt to remove local handle scope entry from IRT, ignoring
01-25 21:34:27.138 1148-1148/com.google.android.gms.example.bannerexample W/art: Attempt to remove local handle scope entry from IRT, ignoring
01-25 21:34:27.285 1148-1160/com.google.android.gms.example.bannerexample I/art: Background partial concurrent mark sweep GC freed 710(42KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 1951KB/3MB, paused 1.789ms total 248.853ms
01-25 21:34:28.319 1148-1191/com.google.android.gms.example.bannerexample E/chromium: [ERROR:ssl_client_socket_openssl.cc(962)] handshake failed; returned -1, SSL error code 1, net_error -107
01-25 21:34:28.461 1148-1191/com.google.android.gms.example.bannerexample E/chromium: [ERROR:ssl_client_socket_openssl.cc(962)] handshake failed; returned -1, SSL error code 1, net_error -107
01-25 21:34:28.900 1148-1191/com.google.android.gms.example.bannerexample E/chromium: [ERROR:ssl_client_socket_openssl.cc(962)] handshake failed; returned -1, SSL error code 1, net_error -107
01-25 21:34:29.239 1148-1191/com.google.android.gms.example.bannerexample E/chromium: [ERROR:ssl_client_socket_openssl.cc(962)] handshake failed; returned -1, SSL error code 1, net_error -107
01-25 21:34:29.662 1148-1148/com.google.android.gms.example.bannerexample E/Ads: JS: Uncaught ReferenceError: AFMA_buildAdURL is not defined (:1)
01-25 21:34:29.663 1148-1148/com.google.android.gms.example.bannerexample I/chromium: [INFO:CONSOLE(1)] "Uncaught ReferenceError: AFMA_buildAdURL is not defined", source:  (1)
01-25 21:34:29.790 1148-1148/com.google.android.gms.example.bannerexample E/Ads: JS: Not allowed to load local resource: file:///android_asset/webkit/android-weberror.png (data:text/html,chromewebdata:12)
01-25 21:34:29.790 1148-1148/com.google.android.gms.example.bannerexample I/chromium: [INFO:CONSOLE(12)] "Not allowed to load local resource: file:///android_asset/webkit/android-weberror.png", source: data:text/html,chromewebdata (12)
01-25 21:34:36.862 1148-1204/com.google.android.gms.example.bannerexample W/Ads: There was a problem getting an ad response. ErrorCode: 0
01-25 21:34:36.966 1148-1148/com.google.android.gms.example.bannerexample W/ScreenOrientationListener: Removing an inexistent observer!
01-25 21:34:37.138 1148-1148/com.google.android.gms.example.bannerexample W/Ads: Failed to load ad: 0
01-25 21:34:41.672 339-701/system_process I/MediaFocusControl:  AudioFocus  abandonAudioFocus() from android.media...@296ee8abcom.android.music.MediaPlaybackService$3@e5f5b08
01-25 21:34:52.688 339-387/system_process W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client
01-25 21:34:52.705 1148-1148/com.google.android.gms.example.bannerexample W/art: Before Android 4.1, method int android.support.v7.internal.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
01-25 21:34:52.796 339-659/system_process V/WindowManager: Adding window Window{24d808ea u0 PopupWindow:29cc5ac} at 3 of 8 (after Window{19c94f63 u0 com.google.android.gms.example.bannerexample/com.google.android.gms.example.bannerexample.MyActivity})
01-25 21:34:52.884 1148-1200/com.google.android.gms.example.bannerexample W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:34:52.885 1148-1200/com.google.android.gms.example.bannerexample W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b42f80, error=EGL_SUCCESS
01-25 21:34:54.697 339-387/system_process W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client
01-25 21:34:54.931 1148-1148/com.google.android.gms.example.bannerexample W/InputEventReceiver: Attempted to finish an input event but the input event receiver has already been disposed.
01-25 21:34:54.969 339-369/system_process W/InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@36a5c9b6 attribute=null, token = android.os.BinderProxy@1d4ed992
01-25 21:34:57.172 792-792/com.android.systemui V/DeadZone: consuming errant click: (396.0,13.0)
01-25 21:35:02.051 339-372/system_process I/ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.android.launcher/com.android.launcher2.Launcher} from uid 1000 on display 0
01-25 21:35:02.172 339-387/system_process W/AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client
01-25 21:35:02.185 53-53/? E/EGL_emulation: tid 53: eglCreateSyncKHR(1237): error 0x3004 (EGL_BAD_ATTRIBUTE)
01-25 21:35:02.922 609-746/com.android.launcher W/EGL_emulation: eglSurfaceAttrib not implemented
01-25 21:35:02.923 609-746/com.android.launcher W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb4b7a2e0, error=EGL_SUCCESS
01-25 21:35:03.313 792-792/com.android.systemui W/ResourceType: No package identifier when getting value for resource number 0x00000000
01-25 21:35:03.314 792-792/com.android.systemui W/PackageManager: Failure retrieving resources for com.google.android.gms.example.bannerexample: Resource ID #0x0
01-25 21:35:03.832 53-53/? W/SurfaceFlinger: couldn't log to binary event log: overflow.
01-25 21:35:03.838 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
01-25 21:35:03.838 609-746/com.android.launcher W/OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...


My proguard-rules :
#
# Copyright (C) 2013 Google, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Add project specific ProGuard rules here.
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# The following rules are used to strip any non essential Google Play Services classes and method.

# For Google Play Services
-keep public class com.google.android.gms.ads.**{
public *;
}

# For old ads classes
-keep public class com.google.ads.**{
public *;
}

# For mediation
-keepattributes *Annotation*

# Other required classes for Google Play Services
# Read more at http://developer.android.com/google/play-services/setup.html
-keep class * extends java.util.ListResourceBundle {
protected Object[][] getContents();
}

-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
public static final *** NULL;
}

-keepnames @com.google.android.gms.common.annotation.KeepName class *
-keepclassmembernames class * {
@com.google.android.gms.common.annotation.KeepName *;
}

-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}

I don't know if i need to remove all rules for test ?

And my nexus 7 emulator haven't ROM, i can try the sample app in my real phone.

Thanks, Dorian.

Veer Arjun Busani

unread,
Jan 25, 2016, 5:28:44 PM1/25/16
to Google Mobile Ads SDK Developers
Hi Dorian,

Here is something further I can suggest - 
  • First try to use a different network. Sometimes an ISP could block Ad Networks for various reasons. See if you are able to build using perhaps a different Wifi or 4G.
  • Next you could check to see if you indeed have Google Play Services by making a new app and simply adding a Google Play Services dependency. 
  • Finally, you can look at the responses you are receiving using Charles proxy. This would confirm whether the response received from server could be due to your ISP. You could also send us these logs for us to debug further.
  • You could also look at this post at Stackoverflow to see if that helps you.
Thanks,

dorian....@gmail.com

unread,
Jan 26, 2016, 10:29:45 AM1/26/16
to Google Mobile Ads SDK Developers
Hi, I don't think the problem is with my network because i get ads in others app on my phone :/...
I'll test to make a new app, but when you say : "  by making a new app and simply adding a Google Play Services dependency. " I just need to add compile '...google-play-service...' in gradle dependency ?
And i check this post but any of the solutions resolve my problem...

I can try to unistall and reinstall all my sdk, but i don't think that can help me...

I hope i will make work admob :c...

Thanks, Dorian.
 

dorian....@gmail.com

unread,
Jan 26, 2016, 11:17:46 AM1/26/16
to Google Mobile Ads SDK Developers
I don't understand logs errors... I know this error are here because of network :
E/Ads﹕ JS: Uncaught ReferenceError: AFMA_buildAdURL is not defined (:1)
01-26 16:13:16.321    2119-2119/com.dorianb.hunterofpicks.main.android I/chromium﹕ [INFO:CONSOLE(1)] "Uncaught ReferenceError: AFMA_buildAdURL is not defined", source:  (1)
01-26 16:13:16.342    2119-2119/com.dorianb.hunterofpicks.main.android W/BindingManager﹕ Cannot call determinedVisibility() - never saw a connection for the pid: 2119
01-26 16:13:16.357    2119-2119/com.dorianb.hunterofpicks.main.android E/Ads﹕ JS: Not allowed to load local resource: file:///android_asset/webkit/android-weberror.png (data:text/html,chromewebdata:0)
01-26 16:13:16.357    2119-2119/com.dorianb.hunterofpicks.main.android I/chromium﹕ [INFO:CONSOLE(0)] "Not allowed to load local resource: file:///android_asset/webkit/android-weberror.png", source: data:text/html,chromewebdata (0)
but this error, is the first (and not in red), is incomprehensible : 
W/GooglePlayServicesUtil﹕ Google Play services is missing.

And perhaps this errors can be the cause ?
01-26 16:13:14.557    2119-2133/com.dorianb.hunterofpicks.main.android E/EGL_emulation﹕ [getAttribValue] Bad attribute idx
01-26 16:13:14.557    2119-2133/com.dorianb.hunterofpicks.main.android E/EGL_emulation﹕ tid 2133: eglGetConfigAttrib(613): error 0x3004 (EGL_BAD_ATTRIBUTE)
01-26 16:13:14.557    2119-2133/com.dorianb.hunterofpicks.main.android E/EGL_emulation﹕ [getAttribValue] Bad attribute idx
01-26 16:13:14.557    2119-2133/com.dorianb.hunterofpicks.main.android E/EGL_emulation﹕ tid 2133: eglGetConfigAttrib(613): error 0x3004 (EGL_BAD_ATTRIBUTE)
or
01-26 16:13:15.901    2119-2162/com.dorianb.hunterofpicks.main.android E/chromium﹕ [ERROR:ssl_client_socket_openssl.cc(939)] handshake failed; returned -1, SSL error code 1, net_error -107
01-26 16:13:15.910    2119-2162/com.dorianb.hunterofpicks.main.android W/chromium﹕ [WARNING:openssl_ssl_util.cc(150)] Unmapped error reason: 268
01-26 16:13:15.910    2119-2162/com.dorianb.hunterofpicks.main.android E/chromium﹕ [ERROR:ssl_client_socket_openssl.cc(939)] handshake failed; returned -1, SSL error code 1, net_error -107
01-26 16:13:15.930    2119-2162/com.dorianb.hunterofpicks.main.android W/chromium﹕ [WARNING:openssl_ssl_util.cc(150)] Unmapped error reason: 268
01-26 16:13:15.930    2119-2162/com.dorianb.hunterofpicks.main.android E/chromium﹕ [ERROR:ssl_client_socket_openssl.cc(939)] handshake failed; returned -1, SSL error code 1, net_error -107


I'm desepretate...

Thanks, Dorian.

dorian....@gmail.com

unread,
Jan 26, 2016, 11:34:05 AM1/26/16
to Google Mobile Ads SDK Developers
I forgot "can here because of network or other problem(s)"

Veer Arjun Busani

unread,
Jan 26, 2016, 11:55:06 AM1/26/16
to Google Mobile Ads SDK Developers
Hi Dorian,

For us to take this any further, I would need logs from Charles Proxy. Do make sure that you have enabled SSL Proxying for Charles. Just ensure that you are using Android Studio without integrating "libgdz". First run by simply adding Google Play Services as dependency and then use our demo app to testing Ads. Use the Banner Example in the demo app.

Thanks

dorian....@gmail.com

unread,
Jan 26, 2016, 1:46:54 PM1/26/16
to Google Mobile Ads SDK Developers
I run the demo app like you say, same errors, and when i had install Charles and test it i got problem to setup a proxy with the emulator... I can try again, but did you have other idea :/ ?

Thanks, Dorian.

arjun...@gmail.com

unread,
Jan 26, 2016, 2:05:46 PM1/26/16
to Google Mobile Ads SDK Developers
Hey Dorian,

You would have to install certificates as needed so Charles can be trusted to intercept traffic. Just go to the menu options and it divides up which category to install certificate for, like with emulator, browser, physical device

dorian....@gmail.com

unread,
Jan 26, 2016, 3:22:42 PM1/26/16
to Google Mobile Ads SDK Developers
I got 4 requests like this (i use my real phone) :
HTTP/1.1 400 Bad Request
Server: nginx
Date: Tue, 26 Jan 2016 20:17:55 GMT
Content-Type: text/html
Content-Length: 166
Connection: close

<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx</center>
</body>
</html>



Veer Arjun Busani

unread,
Jan 26, 2016, 4:35:29 PM1/26/16
to Google Mobile Ads SDK Developers
Hi Dorian,
  1. Are you sure that both Charles and your device are on the same IP Address? Send me the complete Session. You can do this by File -> Save. Then attach that session here please.
  2. Next as I have said earlier, open Android Studio and in the Welcome Screen, goto Configure -> SDK Manager -> SDK Tools, make sure that you have Google Play Services there. Send me a screen shot of the same. 
  3. Using Android Studio, Start a New Project -> Select Phone and Tablet -> Google Mobile Ads Activity. Then Run the application -> select Launch Emulator and if there is no device, add a virtual device -> and then press OK.
  4. Also confirm me using isGooglePlayServicesAvailable(). You can print like this -> Log.i("API GPS Version:"String.valueOf(GoogleApiAvailability.GOOGLE_PLAY_SERVICES_VERSION_CODE)); . If you are unable to get GoogleApiAvaialability class to import, change the version of the Google Play Services version in the build.gradle file and change it to compile 'com.google.android.gms:play-services-ads:8.1.0'. Basically change it to 8.1.0.
  5. If for some reason none of this works for you, share me a video of all the steps that you are taking from creating a project to running it in an EMULATOR. 
Thanks,

dorian....@gmail.com

unread,
Jan 27, 2016, 9:10:44 AM1/27/16
to Google Mobile Ads SDK Developers
Hi,

any of your solution work, i place the charles session with the message and the vidéo here.

Thanks,

Dorian.
Ads Problem Session.chls

Veer Arjun Busani

unread,
Jan 27, 2016, 2:21:32 PM1/27/16
to Google Mobile Ads SDK Developers
Hi Dorian,

Thank you for the video. While it confirms that you are taking the appropriate steps, there are a few of things that I need you to do further - 
  • Build an APK from the sample app and attach the file for us to debug.
  • Use ProviderInstaller to install the necessary security against SSL exploits. The SSL handshake error might be attributed to Google Play Services not being found. On this I want you include this snippet in your Main Activity - 
try {
    ProviderInstaller.installIfNeeded(this);
} catch (GooglePlayServicesRepairableException e) {
     // Fix it
} catch (GooglePlayServicesNotAvailableException e) {}
  • You can read more about Updating Security Provider against SSL exploits to understand what might have caused this issue.  Are you aware of the type of network infrastructure that is in place for your workstation? I would even suggest you to see if you are able to build outside of your work environment using a different workstation just to confirm.
  • Finally, SSL Proxying is still not enabled on Charles from the Video. Do send the Charles log for us pin point the issue.
Do let us know how it went.

dorian....@gmail.com

unread,
Jan 27, 2016, 3:29:17 PM1/27/16
to Google Mobile Ads SDK Developers
Hi, 

I attach the APK file of the sample app.
I use in ProviderInstaller, I get error for GooglePlayServicesRepairableException . I test with this code :
try {
   
ProviderInstaller.installIfNeeded(this);
} catch (GooglePlayServicesRepairableException e) {

   
Log.i("GooglePlayServices:", " RepairableException");
} catch (GooglePlayServicesNotAvailableException e) {}

Then you have true, but who can i fix it ? I can't compile my app with an other workstation :/...

And who activate the SSL Proxying whit Charles ? (I didn't understand this part of you answer).

Thanks, 

Dorian.

app-debug.apk

Veer Arjun Busani

unread,
Jan 27, 2016, 4:10:31 PM1/27/16
to Google Mobile Ads SDK Developers
Hi Dorian,

GooglePlayServicesRepairableException means it's definitely fixable from your end. I'm going to suggest you now to downgrade the Google Play Services and test something more for me. 
  • In your build.gradle file, have this in your dependency - 
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.google.android.gms:play-services-ads:8.1.0'
}
  • Next in your Main Activity, include this function - 
/**
     * Check the device to make sure it has the Google Play Services APK. If
     * it doesn't, display a dialog that allows users to download the APK from
     * the Google Play Store or enable it in the device's system settings.
     */
    private boolean checkPlayServices() {
        int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
        if (resultCode != ConnectionResult.SUCCESS) {
            if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
                GooglePlayServicesUtil.getErrorDialog(resultCode, this,
                        9000).show();
            } else {
                Log.i("Tag", "This device is not supported.");
                finish();
            }
            return false;
        }
        return true;
    }
You can read more about this here.
  • If none of this works, I would even suggest you to completely remove the Android SDK from it's default path and re-download the Android Studio. Also ensure that you infant are using the latest Android Studio.
  • Finally ensure that you can read more about and ensure that Google Play Services is available here. Also let me know what error it is throwing when you use isGooglePlayServicesAvailable().
  • Also you can view this video to understand how to enable SSL for Charles Proxy.
We were successfully able to load the APK and found no issues at all. This confirms that it has got to be some issue with either your network infrastructure setup or your workstation.

Thanks,

dorian....@gmail.com

unread,
Jan 27, 2016, 4:26:39 PM1/27/16
to Google Mobile Ads SDK Developers
Hi,

Thanks, i try your first solution, but don't work... Then i think i'll remove the Android SDK and download again.

Dorian.

dorian....@gmail.com

unread,
Jan 27, 2016, 6:09:26 PM1/27/16
to Google Mobile Ads SDK Developers
With a new SDK, same problem and when i conect my computer in 3G (with an other network) i get the same errors... Then it's my computer but why when i run my app in my real phone with 3G conexion, no ads showing ? I'm very desesperate... I think i'll never can make work ads on my app :c...

Thanks, Dorian.

dorian....@gmail.com

unread,
Jan 28, 2016, 8:03:08 AM1/28/16
to Google Mobile Ads SDK Developers
Hi, after some research i don't find any solution or fix, then i think ads and admob simply do not want work for me, I'll try to find another way to monetize my applications. Thank you all and especially to Veer Arjun Busani for taking the patience to help me.

If you have the same problem as me, if I did not repost message below for a proposed fix, is that it remains for you to also try to find a solution.

Thanks,

Dorian.

dorian....@gmail.com

unread,
Jan 28, 2016, 8:42:18 AM1/28/16
to Google Mobile Ads SDK Developers
Hi, it's me again...

I try again to run your sample app (banner) in my phone, and this time with 3G conexion i get the ads show ! Then the problem come of my network. But I don't understand why when i run other app with ads in wifi i can show them ? Then i can realse my app whit ads, but can't see them with my network ! If you have some solution/help for fix that, but at least it works a nearly.

Thanks,

Dorian.

Veer Arjun Busani

unread,
Jan 28, 2016, 10:55:39 AM1/28/16
to Google Mobile Ads SDK Developers
Hi Dorian,

Finally I'm glad that you were able to load ads on a different network. It could be a case where your network provider is blocking certain Ad Networks. I would suggest you to take this issue up with your Network Admin. 

dorian....@gmail.com

unread,
Jan 28, 2016, 11:15:44 AM1/28/16
to Google Mobile Ads SDK Developers
Hi,

I finally got completely solved the problem, I simply call my internet access provider, and the problem came from a adblocker directly integrated to my box.

A huge thank you to you, and wish you a good weekend :) !

Dorian. 
Reply all
Reply to author
Forward
This conversation is locked
You cannot reply and perform actions on locked conversations.
0 new messages