playgameservices / play-games-plugin-for-unity

Google Play Games plugin for Unity
Other
3.45k stars 962 forks source link

App crashes on login attempt immediately (Android 5.0.2) #669

Closed aaliashkevich closed 9 years ago

aaliashkevich commented 9 years ago

Hi,

Application crashes on the following line of code:

Social.localUser.Authenticate((bool success) => {});

with the following error:

java.lang.Error: FATAL EXCEPTION [main]
Unity version : 5.1.2f1
Device model : LGE LG-D724
Device fingerprint: lge/jag3gds_global_com/jag3gds:5.0.2/LRX22G/1507517446189:user/release-keys

Caused by: java.lang.IllegalStateException: A fatal developer error has occurred. Check the logs for further information.
at com.google.android.gms.common.internal.zzi$zza.zzc(Unknown Source)
at com.google.android.gms.common.internal.zzi$zza.zzr(Unknown Source)
at com.google.android.gms.common.internal.zzi$zzc.zznQ(Unknown Source)
at com.google.android.gms.common.internal.zzi$zzb.handleMessage(Unknown Source)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5356)
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:908)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)

Android version 5.0.2. Bug appeared on rev25 and rev26 of Google Play Services. I'm using latest play-games-plugin-for-unity.

Please, help me to identify where the root cause of this issue is. It's the first time I'm using this library and I'm stuck.

As further steps I will check it on Android 4+ and will try older versions of play-games-plugin-for-unity. Thanks in advance!

AgentKnopf commented 9 years ago

I am facing the same issue (Unity 5) - as soon as a little popup window appears (saying: welcome USERNAME) after what seems to be a successful login the game crashes (Android 5, Motorola Moto X 2014 and Sony Xperia Z2). It does work fine on another device running Android 4.1.2 (Samsung Galaxy Note).

I have found though, that if I surround the Authenticate call with a try catch and put System.Exception in the catch block it wont crash my app. Whats more: I can open the leaderboard - that means authentication seems to work, but something else fails. However that something else does not seem to be a show stopper if you try/catch.

P.s. I have the most recent version of playgameservices for Unity 5 - downloaded today 22.08.2015

claywilkinson commented 9 years ago

@AgentKnopf - What is the exception you are catching? Can you print it out?

@Khullag - can you provide more of the log? usually there is additional information in the log when this type of exception occurs.

AgentKnopf commented 9 years ago

@claywilkinson Well I'll be damned - removed the try/catch and it no longer crashes. However I am positive it kept crashing before adding the try/catch on afore mentioned devices. Could it be possible that there is a point during authentification that once it's crossed the process changes/get's shortened so that particular point is longer hit? I also tried the following to reproduce the previous problem:

1, Restart device

  1. Reinstall app
  2. Logout of google play services
  3. Revoke all permissions I gave to my app via google play services

Before it would crash a split second after showing me the welcome indicator at the top:

device-2015-08-23-195844

I do remember checking the log at the time and reading something about not properly implementing some Popup Screen. But I am not a 100% sure this was related to the crash. I also generated a few crash reports that I sent to google. The Android default crashreport dialog was triggered right after the crash and said that google play services crashed. It was one of those crashreports I used to check the logs. But somehow I don't think they fixed that issue in the last 24 hours (although that would be pretty awesome).

mikest34 commented 9 years ago

I am having a similar issue to what is described here. I am including a snippet of my logs from my android device. I have integrated this into my game and believe I have everything configured correctly. This is in the Start function of my GameManager singleton

        PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
            // enables saving game progress.
            .EnableSavedGames()
            .Build();

        PlayGamesPlatform.InitializeInstance(config);
        // recommended for debugging:
        PlayGamesPlatform.DebugLogEnabled = true;
        // Activate the Google Play Games platform
        PlayGamesPlatform.Activate();

Here's the flow I am seeing:

Scene Loads called Social.localUser.Authenticate Play game login screen comes up Click login Login box clears Authenticate returns false In Logs: Starting Auth Transition. Op: SIGN_IN status: VALID Crash (or app closes) In Logs: E/OpenGLRenderer(3983): GL error: Out of memory!

I also saw this in the logs during the above flow:

08-31 18:28:02.414: I/Unity(30163):  [Play Games Plugin DLL] 08/31/15 18:28:02 -04:00 DEBUG: Entering state: BeforeRoomCreateStartedState
08-31 18:28:02.414: I/Unity(30163):  
08-31 18:28:02.414: I/Unity(30163): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
08-31 18:28:02.414: I/Unity(30163):  [Play Games Plugin DLL] 08/31/15 18:28:02 -04:00 DEBUG: BeforeRoomCreateStartedState.OnStateEntered: Defaulting to no-op.
08-31 18:28:02.414: I/Unity(30163):  
08-31 18:28:02.414: I/Unity(30163): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
08-31 18:28:02.415: I/Unity(30163):  [Play Games Plugin DLL] 08/31/15 18:28:02 -04:00 DEBUG: Entering state: ShutdownState
08-31 18:28:02.415: I/Unity(30163):  
08-31 18:28:02.415: I/Unity(30163): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
08-31 18:28:02.415: I/Unity(30163):  [Play Games Plugin DLL] 08/31/15 18:28:02 -04:00 DEBUG: ShutdownState.OnStateEntered: Defaulting to no-op.

Basically the same flow for subsequent tries but without the Play login screen

Tested on Xperia Z Ultra with Lollipop

mikest34 commented 9 years ago

It is definitely crashing on or right before the callback gets fired. The code in my callback delegate is never getting executed. Is this a known issue with Unity 5 and Lollipop?

Here are the various ways I have called Authenticate. "playAuthenticate" is a delegate with just an assignment and Debug.Log in it.

        Social.Active.Authenticate(Social.localUser, playAuthenticate);

        Social.localUser.Authenticate(playAuthenticate);

        Social.localUser.Authenticate((bool success) => {
            Debug.Log ("Authentication result "+success);
        });
claywilkinson commented 9 years ago

Can you post the log? I am not aware of any issues with Unity 5 nor Lollipop. Can you run one of the samples OK? OutOfMemory exception. Is it possible you are allocating something in a loop (such as in Update()) ?

mikest34 commented 9 years ago

OK, this is everything

09-01 12:21:30.995: I/ActivityManager(871): Process com.google.android.apps.plus (pid 14865) has died
09-01 12:21:31.025: I/ActivityManager(871): Process com.sonymobile.cameracommon (pid 14783) has died
09-01 12:21:32.053: I/Unity(15580): Social Logged in False
09-01 12:21:32.053: I/Unity(15580):  
09-01 12:21:32.053: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.054: I/Unity(15580): No player found
09-01 12:21:32.054: I/Unity(15580):  
09-01 12:21:32.054: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.217: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Activating PlayGamesPlatform.
09-01 12:21:32.217: I/Unity(15580):  
09-01 12:21:32.217: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.219: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: PlayGamesPlatform activated: GooglePlayGames.PlayGamesPlatform
09-01 12:21:32.219: I/Unity(15580):  
09-01 12:21:32.219: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.226: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Creating platform-specific Play Games client.
09-01 12:21:32.226: I/Unity(15580):  
09-01 12:21:32.226: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.227: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Creating real IPlayGamesClient
09-01 12:21:32.227: I/Unity(15580):  
09-01 12:21:32.227: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.259: D/GamesUnitySDK(15580): Performing Android initialization of the GPG SDK
09-01 12:21:32.356: E/GamesNativeSDK(15580): Exception in dalvik/system/DexClassLoader.loadClass: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.games.NativeSdkEntryPoints" on path: DexPathList[[zip file "/data/data/com.hofstudios.cubicle/app_.gpg.classloader/de80b70ed0da0dfe988a41fa560612ee.jar"],nativeLibraryDirectories=[/vendor/lib, /system/lib]].
09-01 12:21:32.395: W/PopupManager(15580): You have not specified a View to use as content view for popups. Falling back to the Activity content view. Note that this may not work as expected in multi-screen environments
09-01 12:21:32.396: I/GamesNativeSDK(15580): Auth operation started: SIGN IN
09-01 12:21:32.396: I/GamesNativeSDK(15580): Connecting to Google Play...
09-01 12:21:32.401: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Entering state: BeforeRoomCreateStartedState
09-01 12:21:32.401: I/Unity(15580):  
09-01 12:21:32.401: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.401: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: BeforeRoomCreateStartedState.OnStateEntered: Defaulting to no-op.
09-01 12:21:32.401: I/Unity(15580):  
09-01 12:21:32.401: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.401: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Entering state: ShutdownState
09-01 12:21:32.401: I/Unity(15580):  
09-01 12:21:32.401: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.401: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: ShutdownState.OnStateEntered: Defaulting to no-op.
09-01 12:21:32.401: I/Unity(15580):  
09-01 12:21:32.401: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.431: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:32.431: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:32.443: D/AppStateService(25288): client connected with version: 7895000
09-01 12:21:32.463: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:32.463: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:32.526: I/ActivityManager(871): Process com.android.email (pid 31553) has died
09-01 12:21:32.526: W/ActivityManager(871): Scheduling restart of crashed service com.android.email/com.sonymobile.email.service.imappush.ImapIdleService in 1000ms
09-01 12:21:32.539: V/GamesNativeSDK(15580): Play Games callback indicates connection failure.
09-01 12:21:32.539: I/GamesNativeSDK(15580): UI interaction required to connect to Google Play.
09-01 12:21:32.556: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:32 -04:00 DEBUG: Starting Auth Transition. Op: SIGN_IN status: ERROR_NOT_AUTHORIZED
09-01 12:21:32.556: I/Unity(15580):  
09-01 12:21:32.556: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:32.560: I/GamesNativeSDK(15580): Auth operation started: SIGN IN
09-01 12:21:32.560: I/GamesNativeSDK(15580): Connecting to Google Play...
09-01 12:21:32.562: D/AppStateService(25288): client connected with version: 7895000
09-01 12:21:32.574: V/GamesNativeSDK(15580): Play Games callback indicates connection failure.
09-01 12:21:32.574: I/GamesNativeSDK(15580): UI interaction required to connect to Google Play.
09-01 12:21:32.574: I/GamesNativeSDK(15580): Resolving connection.
09-01 12:21:32.576: I/ActivityManager(871): START u0 {act=com.google.android.gms.games.SIGN_IN flg=0x4000000 pkg=com.google.android.play.games cmp=com.google.android.play.games/com.google.android.gms.games.ui.signin.SignInActivity (has extras)} from uid 10033 on display 0
09-01 12:21:32.651: I/ActivityManager(871): Start proc com.google.android.play.games.ui for activity com.google.android.play.games/com.google.android.gms.games.ui.signin.SignInActivity: pid=15676 uid=10145 gids={50145, 9997} abi=armeabi-v7a
09-01 12:21:32.672: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:32.672: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:32.672: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:32.672: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:32.672: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:32.673: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:32.673: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:32.673: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:32.673: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:32.674: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:32.674: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:32.674: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:32.674: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:32.700: W/ResourceType(15676): Found multiple library tables, ignoring...
09-01 12:21:32.831: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:32.831: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:32.836: D/OpenGLRenderer(15676): Render dirty regions requested: true
09-01 12:21:32.841: D/Atlas(15676): Validating map...
09-01 12:21:32.874: I/Adreno-EGL(15676): <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build:  ()
09-01 12:21:32.874: I/Adreno-EGL(15676): OpenGL ES Shader Compiler Version: E031.25.03.00
09-01 12:21:32.874: I/Adreno-EGL(15676): Build Date: 03/11/15 Wed
09-01 12:21:32.874: I/Adreno-EGL(15676): Local Branch: au016
09-01 12:21:32.874: I/Adreno-EGL(15676): Remote Branch: 
09-01 12:21:32.874: I/Adreno-EGL(15676): Local Patches: 
09-01 12:21:32.874: I/Adreno-EGL(15676): Reconstruct Branch: 
09-01 12:21:32.875: I/OpenGLRenderer(15676): Initialized EGL, version 1.4
09-01 12:21:32.886: D/OpenGLRenderer(15676): Enabling debug mode 0
09-01 12:21:32.981: W/ResourceType(15676): Found multiple library tables, ignoring...
09-01 12:21:33.032: W/InputMethodManager(15676): Ignoring onBind: cur seq=6139, given seq=6138
09-01 12:21:33.068: I/ActivityManager(871): Displayed com.google.android.play.games/com.google.android.gms.games.ui.signin.SignInActivity: +454ms
09-01 12:21:33.068: I/Timeline(871): Timeline: Activity_windows_visible id: ActivityRecord{12a4fede u0 com.google.android.play.games/com.google.android.gms.games.ui.signin.SignInActivity t596} time:1044399513
09-01 12:21:33.076: I/Timeline(15676): Timeline: Activity_idle id: android.os.BinderProxy@18450530 time:1044399521
09-01 12:21:33.584: I/ActivityManager(871): Start proc com.android.email for service com.android.email/com.sonymobile.email.service.imappush.ImapIdleService: pid=15706 uid=10052 gids={50052, 9997, 3003, 1028, 1015, 3002, 3001, 2992} abi=armeabi-v7a
09-01 12:21:33.668: W/ResourcesManager(15706): Asset path '/system/framework/com.sonyericsson.uxpres.jar' does not exist or contains no resources.
09-01 12:21:33.668: W/ResourcesManager(15706): Asset path '/system/framework/com.sonymobile.smime.jar' does not exist or contains no resources.
09-01 12:21:33.669: W/ResourcesManager(15706): Asset path '/system/framework/com.google.protobuf-2.3.0.jar' does not exist or contains no resources.
09-01 12:21:33.669: W/ResourcesManager(15706): Asset path '/system/framework/com.sonyericsson.idd.jar' does not exist or contains no resources.
09-01 12:21:33.674: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:33.674: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:33.674: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:33.676: W/ResourceType(15706): Found multiple library tables, ignoring...
09-01 12:21:33.676: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:33.676: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:33.676: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:33.677: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:33.677: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:33.677: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:33.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:33.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:33.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:33.680: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:33.886: D/EmailContent(15706): init for com.android.email.provider
09-01 12:21:33.890: I/ActivityManager(871): Process com.nemesis.deskclock (pid 15094) has died
09-01 12:21:33.923: I/ActivityManager(871): Process org.simalliance.openmobileapi.service (pid 31710) has died
09-01 12:21:33.923: W/ActivityManager(871): Scheduling restart of crashed service org.simalliance.openmobileapi.service/.SmartcardService in 1000ms
09-01 12:21:34.065: I/ActivityManager(871): Process com.amazon.windowshop (pid 15308) has died
09-01 12:21:34.244: I/ActivityManager(871): Start proc com.android.exchange for service com.android.exchange/.service.EasService: pid=15743 uid=10030 gids={50030, 9997, 3003, 1028, 1015, 2992} abi=armeabi-v7a
09-01 12:21:34.293: W/ResourcesManager(15743): Asset path '/system/framework/com.sonymobile.provider.tasks.jar' does not exist or contains no resources.
09-01 12:21:34.293: W/ResourcesManager(15743): Asset path '/system/framework/com.sonymobile.smime.jar' does not exist or contains no resources.
09-01 12:21:34.294: W/ResourcesManager(15743): Asset path '/system/framework/com.google.protobuf-2.3.0.jar' does not exist or contains no resources.
09-01 12:21:34.294: W/ResourcesManager(15743): Asset path '/system/framework/com.sonyericsson.idd.jar' does not exist or contains no resources.
09-01 12:21:34.296: W/ResourceType(15743): Found multiple library tables, ignoring...
09-01 12:21:34.385: I/ActivityManager(871): Process android.process.media (pid 651) has died
09-01 12:21:34.385: W/ActivityManager(871): Scheduling restart of crashed service com.android.providers.media/.MtpService in 10538ms
09-01 12:21:34.439: D/EmailContent(15743): init for com.android.email.provider
09-01 12:21:34.465: I/Exchange(15743): EasService.onCreate
09-01 12:21:34.469: I/Exchange(15743): RestartPingTask
09-01 12:21:34.482: D/Exchange(15743): Logging: 
09-01 12:21:34.677: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:34.677: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:34.677: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:34.677: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:34.677: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:34.678: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:34.678: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:34.678: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:34.678: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:34.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:34.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:34.679: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:34.679: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:34.708: I/ActivityManager(871): Process com.sonyericsson.android.camera (pid 14893) has died
09-01 12:21:34.762: D/AttachmentService(15706): Count: 0
09-01 12:21:34.766: D/Exchange(15743): RestartPingsTask did not start any pings.
09-01 12:21:34.766: D/Exchange(15743): PSS stopIfIdle
09-01 12:21:34.766: I/Exchange(15743): PSS has no active accounts; stopping service.
09-01 12:21:34.767: I/Exchange(15743): onDestroy
09-01 12:21:34.895: I/ActivityManager(871): Process com.facebook.orca (pid 406) has died
09-01 12:21:34.895: W/ActivityManager(871): Scheduling restart of crashed service com.facebook.orca/com.facebook.push.mqtt.service.MqttPushService in 20028ms
09-01 12:21:34.956: I/ActivityManager(871): Start proc org.simalliance.openmobileapi.service for service org.simalliance.openmobileapi.service/.SmartcardService: pid=15778 uid=2989 gids={42989, 9997} abi=armeabi-v7a
09-01 12:21:34.985: I/ActivityManager(871): Process com.scee.psxandroid (pid 1994) has died
09-01 12:21:34.985: W/ActivityManager(871): Scheduling restart of crashed service com.scee.psxandroid/com.playstation.companionutil.PushNotificationService in 29938ms
09-01 12:21:35.014: W/ResourcesManager(15778): Asset path '/system/framework/org.simalliance.openmobileapi.jar' does not exist or contains no resources.
09-01 12:21:35.015: W/ResourceType(15778): Found multiple library tables, ignoring...
09-01 12:21:35.160: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.160: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.195: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.195: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.223: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.223: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.386: I/art(871): Explicit concurrent mark sweep GC freed 18113(884KB) AllocSpace objects, 1(16KB) LOS objects, 30% free, 37MB/53MB, paused 5.063ms total 250.324ms
09-01 12:21:35.463: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.463: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.494: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.494: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.526: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:35.526: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:35.529: D/AttachmentService(15706): *** All done; shutting down service
09-01 12:21:35.622: D/audio_hw_primary(26525): out_standby: enter: stream (0xb5c5fb00) usecase(0: deep-buffer-playback)
09-01 12:21:35.778: D/Ulp_jni(871): Location CB invoked
09-01 12:21:35.805: D/hardware_info(26525): hw_info_append_hw_type : device_name = speaker
09-01 12:21:35.841: I/art(871): Explicit concurrent mark sweep GC freed 6511(303KB) AllocSpace objects, 1(16KB) LOS objects, 30% free, 36MB/52MB, paused 1.504ms total 165.428ms
09-01 12:21:35.947: I/art(15706): Explicit concurrent mark sweep GC freed 31263(2MB) AllocSpace objects, 3(71KB) LOS objects, 25% free, 8MB/10MB, paused 296us total 49.897ms
09-01 12:21:36.564: E/ViewRootImpl(15676): Attempting to destroy the window while drawing!
09-01 12:21:36.564: E/ViewRootImpl(15676):   window=android.view.ViewRootImpl@3176d578, title=
09-01 12:21:36.725: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:36.725: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:36.782: E/WifiStateMachine(871): WifiStateMachine CMD_START_SCAN source -2 txSuccessRate=15.75 rxSuccessRate=14.92 targetRoamBSSID=any RSSI=-54
09-01 12:21:36.785: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:36.785: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:36.785: E/WifiStateMachine(871): WifiStateMachine starting scan for "PAMS_US"WPA_PSK with 2442
09-01 12:21:36.786: I/wpa_supplicant(6249): wlan0: CTRL-EVENT-SCAN-STARTED 
09-01 12:21:36.786: I/WifiHAL(871): Poll result = 1
09-01 12:21:36.786: I/WifiHAL(871): Found some events!!!
09-01 12:21:36.786: D/WifiHAL(871): no_seq_check received
09-01 12:21:36.786: I/WifiHAL(871): event received NL80211_CMD_TRIGGER_SCAN
09-01 12:21:36.788: I/WifiHAL(871): event received NL80211_CMD_TRIGGER_SCAN, vendor_id = 0x0
09-01 12:21:36.788: I/WifiHAL(871): event ignored!!
09-01 12:21:36.820: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:36.820: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:36.833: I/WifiHAL(871): Poll result = 1
09-01 12:21:36.833: I/WifiHAL(871): Found some events!!!
09-01 12:21:36.833: D/WifiHAL(871): no_seq_check received
09-01 12:21:36.833: I/WifiHAL(871): event received NL80211_CMD_NEW_SCAN_RESULTS
09-01 12:21:36.833: I/WifiHAL(871): event received NL80211_CMD_NEW_SCAN_RESULTS, vendor_id = 0x0
09-01 12:21:36.833: I/WifiHAL(871): event ignored!!
09-01 12:21:36.837: D/wifi_gbk2utf(871): parseScanResults, line=id=0
09-01 12:21:36.837: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=00:26:ec:00:f1:31
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2442
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-54
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875012
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA2-PSK-CCMP][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=PAMS_US
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, ssid = PAMS_US, buf = PAMS_US,isUTF8= 0, isCh = 0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): After sscanf,ssid:PAMS_US, isCh:0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=id=10523
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=60:c3:97:c1:4e:79
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2452
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-68
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875023
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=Zone2
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, ssid = Zone2, buf = Zone2,isUTF8= 0, isCh = 0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): After sscanf,ssid:Zone2, isCh:0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=id=10524
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=00:26:ec:00:fa:4f
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2412
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-73
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875028
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=Zoomca52
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, ssid = Zoomca52, buf = Zoomca52,isUTF8= 0, isCh = 0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): After sscanf,ssid:Zoomca52, isCh:0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=id=10525
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=00:1c:7b:f3:77:29
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2462
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-76
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875039
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=Zoomca52
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, ssid = Zoomca52, buf = Zoomca52,isUTF8= 0, isCh = 0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): After sscanf,ssid:Zoomca52, isCh:0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=id=10526
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=20:4e:7f:62:fe:f8
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2412
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-77
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875044
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA2-PSK-CCMP][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=ATT0668
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, ssid = ATT0668, buf = ATT0668,isUTF8= 0, isCh = 0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): After sscanf,ssid:ATT0668, isCh:0
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=id=10527
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=bssid=78:96:84:a9:7f:10
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=freq=2437
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=level=-78
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875034
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.838: D/wifi_gbk2utf(871): parseScanResults, line=ssid=ATTRd4YZfi
09-01 12:21:36.838: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, ssid = ATTRd4YZfi, buf = ATTRd4YZfi,isUTF8= 0, isCh = 0
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): After sscanf,ssid:ATTRd4YZfi, isCh:0
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=id=10528
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=bssid=14:35:8b:0b:fe:90
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=freq=2442
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=level=-82
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875068
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP][ESS]
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=ssid=PAMS_DS
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, ssid = PAMS_DS, buf = PAMS_DS,isUTF8= 0, isCh = 0
09-01 12:21:36.839: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.839: D/wifi_gbk2utf(871):  
09-01 12:21:36.839: D/wifi_gbk2utf(871): After sscanf,ssid:PAMS_DS, isCh:0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=id=10529
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=bssid=60:fe:20:d2:b1:72
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=freq=2437
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=level=-81
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875054
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=ssid=ATT278
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, ssid = ATT278, buf = ATT278,isUTF8= 0, isCh = 0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): After sscanf,ssid:ATT278, isCh:0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=id=10530
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=bssid=64:0f:28:a1:74:96
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=freq=2417
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=level=-83
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875059
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=ssid=FENNER_27
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, ssid = FENNER_27, buf = FENNER_27,isUTF8= 0, isCh = 0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): After sscanf,ssid:FENNER_27, isCh:0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=id=10531
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=bssid=44:32:c8:f2:40:40
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=freq=2462
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=level=-83
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875049
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=ssid=Beebs05
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, ssid = Beebs05, buf = Beebs05,isUTF8= 0, isCh = 0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): After sscanf,ssid:Beebs05, isCh:0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=id=10532
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=bssid=d8:97:ba:a4:b6:a8
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=freq=2412
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=level=-90
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875072
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=flags=[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=ssid=HOME-32BF-2.4
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, ssid = HOME-32BF-2.4, buf = HOME-32BF-2.4,isUTF8= 0, isCh = 0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=====
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): After sscanf,ssid:HOME-32BF-2.4, isCh:0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=id=10533
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=bssid=00:26:ec:00:f5:27
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=freq=2412
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=level=-84
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=tsf=0004683947875063
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=flags=[ESS]
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=ssid=Legrand WiFi
09-01 12:21:36.840: D/wifi_gbk2utf(871):  
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, ssid = Legrand WiFi, buf = Legrand WiFi,isUTF8= 0, isCh = 0
09-01 12:21:36.840: D/wifi_gbk2utf(871): parseScanResults, line=#### 
09-01 12:21:36.844: V/AuthAccountOperation(25288): offline access is not requested
09-01 12:21:36.844: V/BaseAuthAsyncOperation(25288): All scopes had been granted in the past, skip access token fetching
09-01 12:21:36.857: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:36.857: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:36.900: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:36.900: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:36.902: V/BaseAuthAsyncOperation(25288): access token request successful
09-01 12:21:37.062: I/art(871): Explicit concurrent mark sweep GC freed 7422(310KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.484ms total 125.702ms
09-01 12:21:37.148: D/SomcEmail(15706): *** synchronizeMailboxGeneric ***
09-01 12:21:37.358: D/SomcEmail(15706): getMessages number 11 - 251
09-01 12:21:37.431: I/art(871): Explicit concurrent mark sweep GC freed 3537(133KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.478ms total 140.348ms
09-01 12:21:37.444: D/SomcEmail(15706): searchForUids '11:251 NOT DELETED' results: 241
09-01 12:21:37.543: V/GamesNativeSDK(15580): Received Activity Resume Event.
09-01 12:21:37.579: D/AppStateService(25288): client connected with version: 7895000
09-01 12:21:37.585: D/AudioTrack(15580): TrackOffload: AudioTrack Offload disabled by property, returning false
09-01 12:21:37.633: D/audio_hw_primary(26525): start_output_stream: enter: stream(0xb5c5fb00)usecase(0: deep-buffer-playback) devices(0x2)
09-01 12:21:37.633: D/audio_hw_primary(26525): select_devices: out_snd_device(37: speaker) in_snd_device(0: )
09-01 12:21:37.633: D/hardware_info(26525): hw_info_append_hw_type : device_name = speaker
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_audio_cal, acdb_id = 15, path =  0
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_adm_topology
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_asm_topology
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TOPOLOGY_ID
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_audtable
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> AUDIO_SET_AUDPROC_CAL
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_audvoltable
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> AUDIO_SET_AUDPROC_VOL_CAL
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> send_afe_cal
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE
09-01 12:21:37.633: D/ACDB-LOADER(26525): ACDB -> AUDIO_SET_AFE_CAL
09-01 12:21:37.642: D/audio_hw_primary(26525): select_devices: done
09-01 12:21:37.647: W/ProcessCpuTracker(871): Skipping unknown process pid 15830
09-01 12:21:37.650: W/ProcessCpuTracker(871): Skipping unknown process pid 15831
09-01 12:21:37.658: W/ProcessCpuTracker(871): Skipping unknown process pid 15837
09-01 12:21:37.660: W/ProcessCpuTracker(871): Skipping unknown process pid 15848
09-01 12:21:37.660: W/ProcessCpuTracker(871): Skipping unknown process pid 15850
09-01 12:21:37.660: I/Timeline(15580): Timeline: Activity_idle id: android.os.BinderProxy@15b49c39 time:1044404105
09-01 12:21:37.660: W/ProcessCpuTracker(871): Skipping unknown process pid 15851
09-01 12:21:37.662: V/AuthAccountOperation(25288): offline access is not requested
09-01 12:21:37.663: V/BaseAuthAsyncOperation(25288): All scopes had been granted in the past, skip access token fetching
09-01 12:21:37.708: V/BaseAuthAsyncOperation(25288): access token request successful
09-01 12:21:37.712: V/AuthAccountOperation(25288): offline access is not requested
09-01 12:21:37.712: V/BaseAuthAsyncOperation(25288): All scopes had been granted in the past, skip access token fetching
09-01 12:21:37.877: I/art(21989): Explicit concurrent mark sweep GC freed 47748(2MB) AllocSpace objects, 4(64KB) LOS objects, 39% free, 11MB/19MB, paused 580us total 151.569ms
09-01 12:21:37.893: V/BaseAuthAsyncOperation(25288): access token request successful
09-01 12:21:37.963: I/art(15706): Explicit concurrent mark sweep GC freed 25354(1107KB) AllocSpace objects, 4(64KB) LOS objects, 24% free, 8MB/11MB, paused 286us total 18.717ms
09-01 12:21:37.981: E/Volley(25288): [224131] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/apps/self?prettyPrint=false&fields=id
09-01 12:21:38.025: I/ActivityManager(871): Process com.sonyericsson.crashmonitor (pid 15138) has died
09-01 12:21:38.110: W/SyncScheduler(25288): No token available but proceeding anyway with explicit sync
09-01 12:21:38.124: I/Unity(15580): Social Logged in False
09-01 12:21:38.124: I/Unity(15580):  
09-01 12:21:38.124: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:38.185: I/ActivityManager(871): Process com.sonymobile.enterprise.service (pid 2366) has died
09-01 12:21:38.185: E/lowmemorykiller(296): Error opening /proc/2399/oom_score_adj; errno=2
09-01 12:21:38.193: W/ActivityManager(871): Exception when unbinding service com.sonyericsson.android.bootinfo/.MiscTaService
09-01 12:21:38.193: W/ActivityManager(871): android.os.DeadObjectException
09-01 12:21:38.193: W/ActivityManager(871):     at android.os.BinderProxy.transactNative(Native Method)
09-01 12:21:38.193: W/ActivityManager(871):     at android.os.BinderProxy.transact(Binder.java:496)
09-01 12:21:38.193: W/ActivityManager(871):     at android.app.ApplicationThreadProxy.scheduleUnbindService(ApplicationThreadNative.java:922)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActiveServices.removeConnectionLocked(ActiveServices.java:1780)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActiveServices.killServicesLocked(ActiveServices.java:2164)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActivityManagerService.cleanUpApplicationRecordLocked(ActivityManagerService.java:14712)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActivityManagerService.handleAppDiedLocked(ActivityManagerService.java:4775)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActivityManagerService.appDiedLocked(ActivityManagerService.java:4938)
09-01 12:21:38.193: W/ActivityManager(871):     at com.android.server.am.ActivityManagerService$AppDeathRecipient.binderDied(ActivityManagerService.java:1187)
09-01 12:21:38.193: W/ActivityManager(871):     at android.os.BinderProxy.sendDeathNotice(Binder.java:551)
09-01 12:21:38.194: E/lowmemorykiller(296): Error opening /proc/2399/oom_score_adj; errno=2
09-01 12:21:38.195: W/ActivityManager(871): Scheduling restart of crashed service com.sonymobile.enterprise.service/.EnterpriseService in 36728ms
09-01 12:21:38.195: W/ActivityManager(871): Scheduling restart of crashed service com.sonymobile.enterprise.service/.RoamingService in 46728ms
09-01 12:21:38.195: W/ActivityManager(871): Scheduling restart of crashed service com.sonymobile.enterprise.service/.EncryptionResultReaderService in 56728ms
09-01 12:21:38.215: I/ActivityManager(871): Process com.qualcomm.qcrilmsgtunnel (pid 2477) has died
09-01 12:21:38.215: W/ActivityManager(871): Scheduling restart of crashed service com.qualcomm.qcrilmsgtunnel/.QcrilMsgTunnelService in 66708ms
09-01 12:21:38.232: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:38.232: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:38.257: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:38.257: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:38.265: I/ActivityManager(871): Process com.sonyericsson.android.bootinfo:remote (pid 2399) has died
09-01 12:21:38.265: E/lowmemorykiller(296): Error opening /proc/15043/oom_score_adj; errno=2
09-01 12:21:38.283: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:38.283: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:38.284: D/WifiService(871): acquireWifiLockLocked: WifiLock{MetadataSyncService type=1 binder=android.os.BinderProxy@10e95a86}
09-01 12:21:38.295: I/ActivityManager(871): Process com.sony.smallapp.managerservice (pid 15043) has died
09-01 12:21:38.468: E/Volley(25288): [224134] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/files/appdata?prettyPrint=false&fields=id&acknowledgeAbuse=false&allProperties=true&updateViewedDate=false
09-01 12:21:38.508: D/ChimeraCfgMgr(25288): Loading module com.google.android.gms.games from APK com.google.android.play.games
09-01 12:21:38.508: D/ChimeraModuleLdr(25288): Module APK com.google.android.play.games already loaded
09-01 12:21:38.515: E/Volley(25288): [224134] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/files/appdata?prettyPrint=false&fields=id&acknowledgeAbuse=false&allProperties=true&updateViewedDate=false
09-01 12:21:38.594: W/ResourceType(25288): Invalid package identifier when getting bag for resource number 0x00000000
09-01 12:21:38.598: V/GamesNativeSDK(15580): Play Games callback indicates connection.
09-01 12:21:38.613: I/GamesNativeSDK(15580): Successfully connected to Google Play.
09-01 12:21:38.613: I/Unity(15580):  [Play Games Plugin DLL] 09/01/15 12:21:38 -04:00 DEBUG: Starting Auth Transition. Op: SIGN_IN status: VALID
09-01 12:21:38.613: I/Unity(15580):  
09-01 12:21:38.613: I/Unity(15580): (Filename: ./artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 65)
09-01 12:21:38.653: I/art(871): Explicit concurrent mark sweep GC freed 12547(519KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.483ms total 130.861ms
09-01 12:21:38.655: D/WifiService(871): releaseWifiLockLocked: WifiLock{MetadataSyncService type=1 binder=android.os.BinderProxy@10e95a86}
09-01 12:21:38.676: E/GamesNativeSDK(15580): Exception in com/google/android/gms/games/snapshot/Snapshots.load: java.lang.IllegalStateException: Cannot use snapshots without enabling the 'Saved Game' feature in the Play console.
09-01 12:21:38.676: W/GamesNativeSDK(15580): Could not automatically seed snapshot cache.
09-01 12:21:38.678: D/AccountUtils(25288): Clearing selected account for com.hofstudios.cubicle
09-01 12:21:38.680: E/GamesNativeSDK(15580): Exception in com/google/android/gms/games/achievement/Achievements.load: java.lang.SecurityException: Not signed in when calling API.
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65] JNI DETECTED ERROR IN APPLICATION: obj == null
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]     in call to CallVoidMethodV
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65] "main_dispatch" prio=5 tid=18 Runnable
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   | group="main" sCount=0 dsCount=0 obj=0x12e2b080 self=0xb3b1b400
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   | sysTid=15660 nice=0 cgrp=apps sched=0/0 handle=0xa1209000
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   | state=R schedstat=( 10215673 6605575 35 ) utm=0 stm=1 core=2 HZ=100
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   | stack=0x99367000-0x99369000 stackSize=1012KB
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   | held mutexes= "mutator lock"(shared held)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #00 pc 00004640  /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #01 pc 00002e8d  /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #02 pc 0023f09d  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #03 pc 002245eb  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #04 pc 000afafb  /system/lib/libart.so (art::JniAbort(char const*, char const*)+582)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #05 pc 000b0235  /system/lib/libart.so (art::JniAbortF(char const*, char const*, ...)+60)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #06 pc 0019a461  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, std::__va_list)+580)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #07 pc 000a41eb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #08 pc 0008bcb9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #09 pc 0006658f  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #10 pc 000670d3  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #11 pc 0006e2f9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #12 pc 000aecef  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #13 pc 0006e7cb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #14 pc 0006ed8b  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #15 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   native: #16 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65]   (no managed stack frames)
09-01 12:21:38.766: A/art(15580): art/runtime/check_jni.cc:65] 
09-01 12:21:38.817: E/Volley(25288): [224132] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/apps/self?prettyPrint=false&fields=id
09-01 12:21:38.891: D/SomcEmail(15706): *** synchronizeMailboxGeneric ***
09-01 12:21:38.912: I/art(25288): Explicit concurrent mark sweep GC freed 38850(2MB) AllocSpace objects, 14(662KB) LOS objects, 39% free, 16MB/28MB, paused 1.331ms total 58.468ms
09-01 12:21:38.972: E/Volley(25288): [224133] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/apps/self?prettyPrint=false&fields=id
09-01 12:21:39.041: I/art(871): Explicit concurrent mark sweep GC freed 5664(236KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.092ms total 96.759ms
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288] Runtime aborting...
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288] Aborting thread:
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288] "main_dispatch" prio=5 tid=18 Native
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12e2b080 self=0xb3b1b400
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15660 nice=0 cgrp=apps sched=0/0 handle=0xa1209000
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   | state=R schedstat=( 32251825 20410726 162 ) utm=1 stm=2 core=0 HZ=100
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   | stack=0x99367000-0x99369000 stackSize=1012KB
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes= "abort lock" "mutator lock"(shared held)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00004640  /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 00002e8d  /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0023f09d  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 002245eb  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 00214aeb  /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*)+22)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 00214d51  /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+364)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 00214f1d  /system/lib/libart.so (art::Runtime::Abort()+72)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 000a653b  /system/lib/libart.so (art::LogMessage::~LogMessage()+1322)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 000afcd9  /system/lib/libart.so (art::JniAbort(char const*, char const*)+1060)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000b0235  /system/lib/libart.so (art::JniAbortF(char const*, char const*, ...)+60)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 0019a461  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, std::__va_list)+580)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #11 pc 000a41eb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #12 pc 0008bcb9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #13 pc 0006658f  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #14 pc 000670d3  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #15 pc 0006e2f9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #16 pc 000aecef  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #17 pc 0006e7cb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #18 pc 0006ed8b  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #19 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   native: #20 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.122: A/art(15580): art/runtime/runtime.cc:288] Dumping all threads without appropriate locks held: thread list lock mutator lock
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] All threads:
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] DALVIK THREADS (21):
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "main" prio=5 tid=1 Native
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x73698000 self=0xb5007800
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15580 nice=0 cgrp=apps sched=0/0 handle=0xb6f37ec8
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 430177175 508003801 1776 ) utm=25 stm=18 core=2 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xbe61b000-0xbe61d000 stackSize=8MB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15580/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00037d68  /system/lib/libc.so (__epoll_pwait+20)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 00011b7f  /system/lib/libc.so (epoll_pwait+26)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 00011b8d  /system/lib/libc.so (epoll_wait+6)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 00010deb  /system/lib/libutils.so (android::Looper::pollInner(int)+98)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 00011015  /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 0007c3ad  /system/lib/libandroid_runtime.so (android::NativeMessageQueue::pollOnce(_JNIEnv*, int)+22)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 000b0e1f  /data/dalvik-cache/arm/system@framework@boot.oat (Java_android_os_MessageQueue_nativePollOnce__JI+102)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at android.os.MessageQueue.nativePollOnce(Native method)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at android.os.MessageQueue.next(MessageQueue.java:143)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at android.os.Looper.loop(Looper.java:195)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at android.app.ActivityThread.main(ActivityThread.java:5317)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.reflect.Method.invoke!(Native method)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.reflect.Method.invoke(Method.java:372)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1016)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:811)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "Heap thread pool worker thread 1" prio=5 tid=2 Native (still starting up)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x0 self=0xaff0e400
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15587 nice=0 cgrp=apps sched=0/0 handle=0xb474a000
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 719062 276822 6 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb474f000-0xb4751000 stackSize=1020KB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15587/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0022e14f  /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0022e0f5  /system/lib/libart.so (art::ThreadPoolWorker::Run()+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0022e931  /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "Heap thread pool worker thread 0" prio=5 tid=3 Native (still starting up)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x0 self=0xafc0e400
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15586 nice=0 cgrp=apps sched=0/0 handle=0xb484d000
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 703333 357813 6 ) utm=0 stm=0 core=3 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4850000-0xb4852000 stackSize=1020KB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15586/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0022e14f  /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0022e0f5  /system/lib/libart.so (art::ThreadPoolWorker::Run()+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0022e931  /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "Heap thread pool worker thread 2" prio=5 tid=4 Native (still starting up)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x0 self=0xaf90e400
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15588 nice=0 cgrp=apps sched=0/0 handle=0xb4647000
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 655001 144115 3 ) utm=0 stm=0 core=3 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb464a000-0xb464c000 stackSize=1020KB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15588/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0022e14f  /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0022e0f5  /system/lib/libart.so (art::ThreadPoolWorker::Run()+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0022e931  /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "Signal Catcher" prio=5 tid=5 WaitingInMainSignalCatcherLoop
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c00080 self=0xaf50e400
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15589 nice=0 cgrp=apps sched=0/0 handle=0xb4638000
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 745835 129895 5 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb453c000-0xb453e000 stackSize=1012KB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15589/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00037f68  /system/lib/libc.so (__rt_sigtimedwait+12)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000150a5  /system/lib/libc.so (sigwait+24)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 00218057  /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+70)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 00219cb1  /system/lib/libart.so (art::SignalCatcher::Run(void*)+196)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "ReferenceQueueDaemon" prio=5 tid=6 Waiting
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c12080 self=0xb5010800
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15590 nice=0 cgrp=apps sched=0/0 handle=0xb4533000
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 576041 57865 5 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4431000-0xb4433000 stackSize=1036KB
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15590/stack)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f4865  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000003d3  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__+82)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x12cb63ea> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:133)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x12cb63ea> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.123: A/art(15580): art/runtime/runtime.cc:288] "FinalizerDaemon" prio=5 tid=7 Waiting
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c120e0 self=0xb5010c00
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15591 nice=0 cgrp=apps sched=0/0 handle=0xb4428000
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 901666 180417 9 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4326000-0xb4328000 stackSize=1036KB
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15591/stack)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f483d  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+36)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000005f7  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__JI+102)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x2a0706db> (a java.lang.ref.ReferenceQueue)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait(Object.java:422)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x2a0706db> (a java.lang.ref.ReferenceQueue)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:173)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] "HeapTrimmerDaemon" prio=5 tid=8 Waiting
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c121a0 self=0xb5011400
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15593 nice=0 cgrp=apps sched=0/0 handle=0xb524a000
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 774375 66407 3 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4104000-0xb4106000 stackSize=1036KB
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15593/stack)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f4865  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000003d3  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__+82)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x3176d578> (a java.lang.Daemons$HeapTrimmerDaemon)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$HeapTrimmerDaemon.run(Daemons.java:310)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x3176d578> (a java.lang.Daemons$HeapTrimmerDaemon)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] "FinalizerWatchdogDaemon" prio=5 tid=9 Waiting
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c12140 self=0xb5011000
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15592 nice=0 cgrp=apps sched=0/0 handle=0xb431d000
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 865989 2524063 15 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4208000-0xb420a000 stackSize=1036KB
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15592/stack)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f4865  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000003d3  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__+82)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x1773a451> (a java.lang.Daemons$FinalizerWatchdogDaemon)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$FinalizerWatchdogDaemon.waitForObject(Daemons.java:239)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x1773a451> (a java.lang.Daemons$FinalizerWatchdogDaemon)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:211)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288] "GCDaemon" prio=5 tid=10 Waiting
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c12200 self=0xb5011800
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15594 nice=0 cgrp=apps sched=0/0 handle=0xb4315000
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 742135 54583 12 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb4000000-0xb4002000 stackSize=1036KB
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15594/stack)
09-01 12:21:39.124: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f4865  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+32)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000003d3  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__+82)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x1ff3d4b6> (a java.lang.Daemons$GCDaemon)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Daemons$GCDaemon.run(Daemons.java:341)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x1ff3d4b6> (a java.lang.Daemons$GCDaemon)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] "Binder_1" prio=5 tid=11 Native
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c7f080 self=0xafe06400
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15596 nice=0 cgrp=apps sched=0/0 handle=0xb3e01000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 20504519 114057450 210 ) utm=0 stm=2 core=3 HZ=100
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xb3d02000-0xb3d04000 stackSize=1012KB
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15596/stack)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00037958  /system/lib/libc.so (__ioctl+8)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 0004ef71  /system/lib/libc.so (ioctl+14)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0001cd73  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0001d297  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand(bool)+18)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0001d307  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+50)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 0002146f  /system/lib/libbinder.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 0000ef11  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 0005a745  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 0000ea81  /system/lib/libutils.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] "Binder_2" prio=5 tid=12 Native
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c82080 self=0xaf806400
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15597 nice=0 cgrp=apps sched=0/0 handle=0xb430d000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 28087809 125176929 215 ) utm=0 stm=2 core=3 HZ=100
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xafb04000-0xafb06000 stackSize=1012KB
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15597/stack)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00037958  /system/lib/libc.so (__ioctl+8)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 0004ef71  /system/lib/libc.so (ioctl+14)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0001cd73  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0001d297  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand(bool)+18)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0001d307  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+50)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 0002146f  /system/lib/libbinder.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 0000ef11  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 0005a745  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 0000ea81  /system/lib/libutils.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] "UnityMain" prio=5 tid=13 Native
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12c11200 self=0xb5012400
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15599 nice=0 cgrp=apps sched=0/0 handle=0xb3c94000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 3409377664 1071819208 6478 ) utm=298 stm=42 core=2 HZ=100
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xaf0fe000-0xaf100000 stackSize=1036KB
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15599/stack)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000137c1  /system/lib/libc.so (__pthread_cond_timedwait_relative(pthread_cond_t*, pthread_mutex_t*, timespec const*)+56)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0000631b  /system/vendor/lib/egl/eglsubAndroid.so (updater_queue_buffer+42)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 000033f1  /system/vendor/lib/egl/eglsubAndroid.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 00013bbc  /system/vendor/lib/egl/libEGL_adreno.so (qeglDrvAPI_eglSwapBuffers+1552)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000078b0  /system/vendor/lib/egl/libEGL_adreno.so (eglSwapBuffers+16)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 00011fc7  /system/lib/libEGL.so (eglSwapBuffers+290)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 00477d80  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 00477cd0  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 00452878  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 00295fe4  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #11 pc 002fc004  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #12 pc 0048db98  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #13 pc 004925fc  /data/app/com.hofstudios.cubicle-2/lib/arm/libunity.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #14 pc 005ac16b  /data/dalvik-cache/arm/data@app@com.hofstudios.cubicle-2@base.apk@classes.dex (Java_com_unity3d_player_UnityPlayer_nativeRender__+82)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at com.unity3d.player.UnityPlayer.nativeRender(Native method)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at com.unity3d.player.UnityPlayer.a(unavailable:-1)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   at com.unity3d.player.UnityPlayer$b.run(unavailable:-1)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] "Binder_3" prio=5 tid=15 Native
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12d86080 self=0xa0b06400
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15601 nice=0 cgrp=apps sched=0/0 handle=0xb3c8d000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 18135212 89683022 188 ) utm=1 stm=0 core=1 HZ=100
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | stack=0xa0e00000-0xa0e02000 stackSize=1012KB
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15601/stack)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00037958  /system/lib/libc.so (__ioctl+8)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 0004ef71  /system/lib/libc.so (ioctl+14)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0001cd73  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0001d297  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand(bool)+18)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0001d307  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+50)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 0002146f  /system/lib/libbinder.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 0000ef11  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 0005a745  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 0000ea81  /system/lib/libutils.so (???)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288] "pool-2-thread-1" prio=5 tid=16 Waiting
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12d9a380 self=0xaebea000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15621 nice=0 cgrp=apps sched=0/0 handle=0xaf6ef000
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 1286355 956092 4 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | stack=0x9f10c000-0x9f10e000 stackSize=1036KB
09-01 12:21:39.127: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15621/stack)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f483d  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+36)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000005f7  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__JI+102)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x206535b7> (a java.lang.Object)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.parkFor(Thread.java:1220)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x206535b7> (a java.lang.Object)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at sun.misc.Unsafe.park(Unsafe.java:299)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.run(Thread.java:818)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] "main_dispatch" prio=5 tid=18 Native
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12e2b080 self=0xb3b1b400
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15660 nice=0 cgrp=apps sched=0/0 handle=0xa1209000
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | state=R schedstat=( 223560049 63147813 340 ) utm=10 stm=12 core=3 HZ=100
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | stack=0x99367000-0x99369000 stackSize=1012KB
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes= "abort lock"
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00004640  /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 00002e8d  /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 0023f09d  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 002245eb  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 0022cf69  /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+104)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 00214cd1  /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+236)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #06 pc 00214f1d  /system/lib/libart.so (art::Runtime::Abort()+72)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #07 pc 000a653b  /system/lib/libart.so (art::LogMessage::~LogMessage()+1322)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #08 pc 000afcd9  /system/lib/libart.so (art::JniAbort(char const*, char const*)+1060)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000b0235  /system/lib/libart.so (art::JniAbortF(char const*, char const*, ...)+60)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #10 pc 0019a461  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, std::__va_list)+580)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #11 pc 000a41eb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #12 pc 0008bcb9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #13 pc 0006658f  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #14 pc 000670d3  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #15 pc 0006e2f9  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #16 pc 000aecef  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #17 pc 0006e7cb  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #18 pc 0006ed8b  /data/app/com.hofstudios.cubicle-2/lib/arm/libgpg.so (???)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #19 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #20 pc 000118e3  /system/lib/libc.so (__start_thread+6)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] "pool-3-thread-1" prio=5 tid=19 Waiting
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | group="" sCount=0 dsCount=0 obj=0x12e2b1a0 self=0xb3b1b800
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | sysTid=15661 nice=0 cgrp=apps sched=0/0 handle=0x9935e000
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 9968806 18827237 38 ) utm=0 stm=0 core=3 HZ=100
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | stack=0x9925c000-0x9925e000 stackSize=1036KB
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | held mutexes=
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   kernel: (couldn't read /proc/self/task/15661/stack)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #01 pc 000a9027  /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 001e634b  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+998)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 001e7925  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+120)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #04 pc 001f483d  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+36)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000005f7  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__JI+102)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Object.wait!(Native method)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   - waiting on <0x23ffd124> (a java.lang.Object)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.lang.Thread.parkFor(Thread.java:1220)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   - locked <0x23ffd124> (a java.lang.Object)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at sun.misc.Unsafe.park(Unsafe.java:299)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #00 pc 00010158  /system/lib/libc.so (syscall+28)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   native: #05 pc 000005f7  /data/dalvik-cache/arm/system@framework@boot.oat (Java_java_lang_Object_wait__JI+102)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] 
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288] "FMODAudioDevice" prio=5 tid=14 Native
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 8531245 27010783 75 ) utm=0 stm=0 core=0 HZ=100
09-01 12:21:39.128: A/art(15580): art/runtime/runtime.cc:288]   at org.fmod.FMODAudioDevice.run(unavailable:-1)
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   | state=S schedstat=( 1137813 6617917 4 ) utm=0 stm=0 core=2 HZ=100
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   native: #02 pc 00049377  /system/lib/libmedia.so (android::AudioTrack::AudioTrackThread::threadLoop()+118)
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   (no managed stack frames)
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   | stack=0x9edbe000-0x9edc0000 stackSize=1012KB
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   native: #03 pc 0001d297  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand(bool)+18)
09-01 12:21:39.129: A/art(15580): art/runtime/runtime.cc:288]   native: #09 pc 000138ef  /system/lib/libc.so (__pthread_start(void*)+30)
09-01 12:21:39.130: A/libc(15580): Fatal signal 6 (SIGABRT), code -6 in tid 15660 (main_dispatch)
09-01 12:21:39.130: I/libc(15580): Suppressing debuggerd output because prctl(PR_GET_DUMPABLE)==0
09-01 12:21:39.155: D/SomcEmail(15706): getMessages number 32 - 1427
09-01 12:21:39.161: W/InputDispatcher(871): channel '45fa72c com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x9
09-01 12:21:39.161: E/InputDispatcher(871): channel '45fa72c com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
09-01 12:21:39.161: I/WindowState(871): WIN DEATH: Window{45fa72c u0 com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity}
09-01 12:21:39.161: W/InputDispatcher(871): Attempted to unregister already unregistered input channel '45fa72c com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity (server)'
09-01 12:21:39.161: W/WindowManager(871): Force-removing child win Window{24c8116c u0 SurfaceView} from container Window{45fa72c u0 com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity}
09-01 12:21:39.195: I/Zygote(384): Process 15580 exited due to signal (6)
09-01 12:21:39.196: D/SomcEmail(15706): searchForUids '32:1427 NOT DELETED' results: 1396
09-01 12:21:39.215: I/ActivityManager(871): Process com.hofstudios.cubicle (pid 15580) has died
09-01 12:21:39.217: W/ActivityManager(871): Force removing ActivityRecord{2142b0ce u0 com.hofstudios.cubicle/com.unity3d.player.UnityPlayerActivity t596}: app died, no saved state
09-01 12:21:39.224: E/Volley(25288): [224134] BasicNetwork.performRequest: Unexpected response code 403 for https://www.googleapis.com/drive/v2beta/files?prettyPrint=false&fields=md5Checksum,owners(isAuthenticatedUser,picture(url),displayName,permissionId,emailAddress),thumbnail(mimeType,image),localId(value,space,version),ownerNames,sharingUser(isAuthenticatedUser,picture(url),displayName,permissionId,emailAddress),webContentLink,lastModifyingUser(isAuthenticatedUser,picture(url),displayName,permissionId,emailAddress),originalFilename,headRevisionId,copyable,fileExtension,modifiedDate,id,folderColorRgb,version,webViewLink,userPermission(id,role,withLink,name,domain,additionalRoles,value,type,photoLink,emailAddress),indexableText(text),editable,quotaBytesUsed,etag,createdDate,mimeType,alternateLink,writersCanShare,sharedWithMeDate,lastViewedByMeDate,shared,explicitlyTrashed,parents(isRoot,id),title,description,thumbnailLink,fileSize,downloadUrl,modifiedByMeDate,labels(restricted,trashed,starred,viewed),embedLink,appDataContents&convert=false&ocr=false&pinned=false&useContentAsIndexableText=false
09-01 12:21:39.227: D/PhoneApp(1668): getPhone phoneId:0
09-01 12:21:39.242: I/Adreno-EGL(29534): <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build:  ()
09-01 12:21:39.242: I/Adreno-EGL(29534): OpenGL ES Shader Compiler Version: E031.25.03.00
09-01 12:21:39.242: I/Adreno-EGL(29534): Build Date: 03/11/15 Wed
09-01 12:21:39.242: I/Adreno-EGL(29534): Local Branch: au016
09-01 12:21:39.242: I/Adreno-EGL(29534): Remote Branch: 
09-01 12:21:39.242: I/Adreno-EGL(29534): Local Patches: 
09-01 12:21:39.242: I/Adreno-EGL(29534): Reconstruct Branch: 
09-01 12:21:39.242: I/OpenGLRenderer(29534): Initialized EGL, version 1.4
09-01 12:21:39.267: W/InputMethodManagerService(871): Got RemoteException sending setActive(false) notification to pid 15580 uid 10235
09-01 12:21:39.293: I/Timeline(29534): Timeline: Activity_idle id: android.os.BinderProxy@183aba38 time:1044405738
09-01 12:21:39.473: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:39.473: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:39.504: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:39.504: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:39.537: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:39.537: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:39.559: I/Timeline(871): Timeline: Activity_windows_visible id: ActivityRecord{214cd741 u0 com.sonyericsson.home/com.sonymobile.home.HomeActivity t346} time:1044406004
09-01 12:21:40.633: I/art(871): Explicit concurrent mark sweep GC freed 6757(284KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.673ms total 177.940ms
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037c mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037c/com.android.systemui:drawable/stat_sys_wifi_in mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838396
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:40.696: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:40.697: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037c mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037c/com.android.systemui:drawable/stat_sys_wifi_in mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:40.698: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:40.699: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:40.699: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:40.699: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838396
09-01 12:21:40.775: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:40.775: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:40.800: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:40.800: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:40.824: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:40.824: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:41.702: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:41.703: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:41.703: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:41.704: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:41.704: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:41.710: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:41.710: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:41.711: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:41.711: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:41.721: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:41.722: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:41.723: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:41.723: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:42.118: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:42.119: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:42.168: D/audio_hw_primary(26525): out_standby: enter: stream (0xb5c5fb00) usecase(0: deep-buffer-playback)
09-01 12:21:42.174: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:42.174: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:42.227: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Empty response
09-01 12:21:42.227: E/PhoneInterfaceManager(1668): [PhoneIntfMgr] iccOpenLogicalChannel: Exception: com.android.internal.telephony.CommandException: NO_SUCH_ELEMENT
09-01 12:21:42.372: D/hardware_info(26525): hw_info_append_hw_type : device_name = speaker
09-01 12:21:44.352: I/art(15706): Explicit concurrent mark sweep GC freed 32393(1540KB) AllocSpace objects, 2(32KB) LOS objects, 25% free, 8MB/11MB, paused 249us total 115.593ms
09-01 12:21:44.566: I/art(871): Explicit concurrent mark sweep GC freed 8580(412KB) AllocSpace objects, 2(32KB) LOS objects, 30% free, 36MB/52MB, paused 1.615ms total 92.184ms
09-01 12:21:44.575: D/SomcEmail(15706): *** synchronizeMailboxGeneric ***
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:44.726: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:44.727: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037d mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037d/com.android.systemui:drawable/stat_sys_wifi_inout mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:44.728: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:44.728: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:44.729: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:44.729: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838397
09-01 12:21:44.950: I/ActivityManager(871): Start proc android.process.media for service com.android.providers.media/.MtpService: pid=15915 uid=10028 gids={50028, 9997, 2001, 3003, 1028, 1015, 3007, 1023, 1024} abi=armeabi-v7a
09-01 12:21:45.019: W/ResourceType(15915): Found multiple library tables, ignoring...
09-01 12:21:45.053: W/ResourceType(15915): Found multiple library tables, ignoring...
09-01 12:21:45.116: E/SQLiteLog(15915): (284) automatic index on audio_meta(album_id)
09-01 12:21:45.152: E/SQLiteLog(15915): (284) automatic index on audio_meta(album_id)
09-01 12:21:45.168: D/MtpService(15915): updating state; isCurrentUser=true, mMtpLocked=false
09-01 12:21:45.264: I/art(871): Explicit concurrent mark sweep GC freed 2829(103KB) AllocSpace objects, 0(0B) LOS objects, 30% free, 36MB/52MB, paused 1.238ms total 94.584ms
09-01 12:21:45.277: D/MtpService(15915): updating state; isCurrentUser=true, mMtpLocked=false
09-01 12:21:45.277: D/MtpService(15915): starting MTP server in MTP mode
09-01 12:21:45.322: I/ActivityManager(871): Start proc com.android.providers.calendar for content provider com.android.providers.calendar/.CalendarProvider2: pid=15937 uid=10022 gids={50022, 9997, 3003, 1028, 1015} abi=armeabi-v7a
09-01 12:21:45.332: I/art(384): Explicit concurrent mark sweep GC freed 703(30KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 6MB/10MB, paused 691us total 8.315ms
09-01 12:21:45.368: W/ResourcesManager(15937): Asset path '/system/framework/android.test.runner.jar' does not exist or contains no resources.
09-01 12:21:45.369: W/ResourceType(15937): Found multiple library tables, ignoring...
09-01 12:21:45.450: I/CalendarProvider2(15937): Created com.android.providers.calendar.CalendarAlarmManager@35433283(com.android.providers.calendar.CalendarProvider2@3b529c00)
09-01 12:21:45.489: D/MtpService(15915): starting MTP server in MTP mode
09-01 12:21:45.490: D/MtpServerJNI(15915): Transport mode : USB
09-01 12:21:45.544: D/SomcEmail(15706): getMessages number 129 - 13896
09-01 12:21:45.547: I/iu.UploadsManager(25288): End new media; added: 0, uploading: 0, time: 30 ms
09-01 12:21:45.778: D/Ulp_jni(871): Location CB invoked
09-01 12:21:46.000: D/SomcEmail(15706): searchForUids '129:13896 NOT DELETED' results: 13768
09-01 12:21:46.502: I/CalendarProvider2(15937): Sending notification intent: Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar }
09-01 12:21:46.504: W/ContentResolver(15937): Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar)
09-01 12:21:46.533: I/ActivityManager(871): Start proc com.android.calendar for broadcast com.android.calendar/.alerts.AlertReceiver: pid=15975 uid=10154 gids={50154, 9997, 3003, 1028, 1015} abi=armeabi-v7a
09-01 12:21:46.603: W/ResourcesManager(15975): Asset path '/system/framework/android.test.runner.jar' does not exist or contains no resources.
09-01 12:21:46.603: W/ResourcesManager(15975): Asset path '/system/framework/com.sonyericsson.uxpres.jar' does not exist or contains no resources.
09-01 12:21:46.603: W/ResourcesManager(15975): Asset path '/system/framework/com.sonymobile.provider.tasks.jar' does not exist or contains no resources.
09-01 12:21:46.605: W/ResourceType(15975): Found multiple library tables, ignoring...
09-01 12:21:46.734: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.734: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.751: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.751: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.753: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.753: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.756: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.756: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.758: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.759: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.761: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.761: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.788: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.788: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.791: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.791: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.830: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.830: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.832: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.832: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.834: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.834: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.837: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.837: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.842: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.842: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.844: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.844: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.858: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.858: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.860: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.860: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.865: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.865: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.867: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.867: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.879: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.879: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.882: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.882: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.885: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.885: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.887: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.888: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.890: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.890: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.893: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.893: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.896: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.896: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.899: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.899: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.902: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.902: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.905: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.905: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.909: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.909: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.911: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.911: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.913: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.913: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.915: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.915: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.918: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.918: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.920: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.920: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.923: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.923: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.925: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.925: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.927: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.927: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.929: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.929: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.931: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.931: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.933: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.933: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.935: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.936: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.938: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.938: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.940: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.941: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.943: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.943: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.945: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.945: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.947: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.947: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.949: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.949: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.951: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.951: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.953: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.953: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.955: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.956: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.957: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.957: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:46.959: W/(15706): Unable to open '/system/framework/qcom.fmradio.jar': No such file or directory
09-01 12:21:46.959: W/art(15706): Failed to open zip archive '/system/framework/qcom.fmradio.jar': I/O Error
09-01 12:21:47.181: D/SomcEmail(15706): ImapException in search: MODSEQ 6189579857390155152 NOT DELETED
09-01 12:21:47.181: D/SomcEmail(15706): com.android.email.mail.store.ImapStore$ImapException: 3: #12# ["BAD", ["CLIENTBUG"], "UID SEARCH Command arguments invalid"]
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapConnection.assertOk(ImapConnection.java:361)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapConnection.getCommandResponses(ImapConnection.java:340)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapConnection.executeSimpleCommand(ImapConnection.java:378)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapConnection.executeSimpleCommand(ImapConnection.java:323)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapFolder.searchForUids(ImapFolder.java:477)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapFolder.searchForUids(ImapFolder.java:457)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.mail.store.ImapFolder.getMessagesByModseq(ImapFolder.java:569)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.performModseqOperations(MessagingController.java:1317)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.synchronizeMailboxGeneric(MessagingController.java:1153)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.synchronizeMailboxSynchronous(MessagingController.java:429)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.synchronizeMailboxSynchronous(MessagingController.java:404)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.access$1400(MessagingController.java:122)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController$16.run(MessagingController.java:2801)
09-01 12:21:47.181: D/SomcEmail(15706):     at com.android.email.MessagingController.run(MessagingController.java:238)
09-01 12:21:47.181: D/SomcEmail(15706):     at java.lang.Thread.run(Thread.java:818)
09-01 12:21:50.744: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:50.744: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:50.744: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:50.748: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037c mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037c/com.android.systemui:drawable/stat_sys_wifi_in mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:50.748: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838396
09-01 12:21:50.757: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:50.757: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:50.757: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:50.758: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x7f02037c mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x7f02037c/com.android.systemui:drawable/stat_sys_wifi_in mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:50.766: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:50.767: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:50.767: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:50.768: D/StatusBar.NetworkController(1303): changing data overlay icon id to 2130838396
09-01 12:21:51.770: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:51.770: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:51.770: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:51.771: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:51.771: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:51.783: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:51.783: D/StatusBar.NetworkController(1303): hasService: mServiceState=3 3 home null null null  Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false retVal=false
09-01 12:21:51.783: D/StatusBar.NetworkController(1303): refreshViews: Data not connected!! Set no data type icon / Roaming
09-01 12:21:51.784: D/StatusBar.NetworkController(1303): refreshViews connected={ wifi } level=0 combinedSignalIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully combinedActivityIconId=0x0 mobileLabel= wifiLabel="PAMS_US"xxxxXXXXxxxxXXXX emergencyOnly=false combinedLabel="PAMS_US"xxxxXXXXxxxxXXXX mAirplaneMode=true mDataActivity=0 mPhoneSignalIconId=0x0/(null) mQSPhoneSignalIconId=0x0/(null) mDataDirectionIconId=0x0/(null) mDataSignalIconId=0x0/(null) mDataTypeIconId=0x0/(null) mQSDataTypeIconId=0x0/(null) mNoSimIconId=0x0/(null) mVolteIconVisible=false mWifiIconId=0x7f020388/com.android.systemui:drawable/stat_sys_wifi_signal_4_fully mQSWifiIconId=0x7f0200c4/com.android.systemui:drawable/ic_qs_wifi_full_4 mWifiActivityIconId=0x0/(null) mBluetoothTetherIconId=0x108076a/android:drawable/stat_sys_tether_bluetooth
09-01 12:21:51.798: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:51.799: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:51.800: D/StatusBar.NetworkController(1303): refreshSignalCluster - setMobileDataIndicators:  mHasMobileDataFeature = true mPhoneSignalIconId = (null) mDataSignalIconId = (null) mMobileActivityIconId = (null) mDataTypeIconId = (null) mNoSimIconId = (null)
09-01 12:21:51.800: D/StatusBar.NetworkController(1303): changing data overlay icon id to 0
09-01 12:21:52.162: I/ActivityManager(871): Start proc android.process.acore for content provider com.android.providers.contacts/.SemcContactsProvider2: pid=16033 uid=10051 gids={50051, 9997} abi=armeabi-v7a
09-01 12:21:52.211: W/ResourceType(16033): Found multiple library tables, ignoring...
09-01 12:21:52.237: W/ResourceType(16033): Found multiple library tables, ignoring...
09-01 12:21:52.381: I/ContactLocale(16033): 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, Α, Β, Γ, Δ, Ε, Ζ, Η, Θ, Ι, Κ, Λ, Μ, Ν, Ξ, Ο, Π, Ρ, Σ, Τ, Υ, Φ, Χ, Ψ, Ω, , А, Б, В, Г, Д, Ђ, Е, Є, Ж, З, И, І, Ї, Й, Ј, К, Л, Љ, М, Н, Њ, О, П, Р, С, Т, Ћ, У, Ф, Х, Ц, Ч, Џ, Ш, Щ, Ю, Я, , א, ב, ג, ד, ה, ו, ז, ח, ט, י, כ, ל, מ, נ, ס, ע, פ, צ, ק, ר, ש, ת, , ا, ب, ت, ث, ج, ح, خ, د, ذ, ر, ز, س, ش, ص, ض, ط, ظ, ع, غ, ف, ق, ك, ل, م, ن, ه, و, ي, , ก, ข, ฃ, ค, ฅ, ฆ, ง, จ, ฉ, ช, ซ, ฌ, ญ, ฎ, ฏ, ฐ, ฑ, ฒ, ณ, ด, ต, ถ, ท, ธ, น, บ, ป, ผ, ฝ, พ, ฟ, ภ, ม, ย, ร, ฤ, ล, ฦ, ว, ศ, ษ, ส, ห, ฬ, อ, ฮ, , ㄱ, ㄴ, ㄷ, ㄹ, ㅁ, ㅂ, ㅅ, ㅇ, ㅈ, ㅊ, ㅋ, ㅌ, ㅍ, ㅎ, , あ, か, さ, た, な, は, ま, や, ら, わ, #, ]
09-01 12:21:52.462: W/ResourcesManager(16033): Asset path '/system/framework/com.sonyericsson.uxpres.jar' does not exist or contains no resources.
09-01 12:21:52.462: W/ResourcesManager(16033): Asset path '/system/framework/com.sonymobile.smime.jar' does not exist or contains no resources.
09-01 12:21:52.462: W/ResourcesManager(16033): Asset path '/system/framework/com.google.protobuf-2.3.0.jar' does not exist or contains no resources.
mikest34 commented 9 years ago

I did not try one of the sample scene/apps but I can try that next.

This is the latest code I was working with but at one point it was all in Start. Nothing in Update.

    void Start () {
        StartCoroutine(SocialLogin());
    }

    IEnumerator SocialLogin () {

        yield return null;

        PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
            // enables saving game progress.
            .EnableSavedGames()
                .Build();

        PlayGamesPlatform.InitializeInstance(config);
        // recommended for debugging:
        PlayGamesPlatform.DebugLogEnabled = true;

        yield return null;

        // Activate the Google Play Games platform
        PlayGamesPlatform.Activate();

        yield return null;

        // authenticate user:
        Social.localUser.Authenticate(playAuthenticate);

    }

    private void playAuthenticate (bool success) {
        Debug.Log ("Authentication result "+success);
    }
mikest34 commented 9 years ago

It looks like taking EnableSavedGames() out of the configuration stopped the crashing.

New Config:

PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder().Build();
claywilkinson commented 9 years ago

Interesting. I've never seen doing this in a coroutine. I don't think it is necessary, there is nothing in all those calls that is blocking. Did you experience something that made you move to a coroutine? Can you try to run it directly? Do you get the same result?

Definitely this line indicates that saved games is not enabled on the play console:

09-01 12:21:38.676: E/GamesNativeSDK(15580): Exception in com/google/android/gms/games/snapshot/Snapshots.load: java.lang.IllegalStateException: Cannot use snapshots without enabling the 'Saved Game' feature in the Play console.

That's terrible if that causes it crash. I'll pass it along to the dev. team.

mikest34 commented 9 years ago

No real reason but just wanted to isolate each step in a frame. I definitely would expect it to fail a bit more gracefully. Hopefully you guys will resolve that in a future release. Looks to be working well now. Thanks.

claywilkinson commented 9 years ago

Glad to hear it is working - and thanks for the feedback!

aaliashkevich commented 9 years ago

In my case there was no EnableSavedGames() called at all. Unfortunately had no time to collect more data about my crash - will try tomorrow.

avinash2k commented 9 years ago

Crashes on devices like MotoG immediately after showing the welcome user popup. If the login dialog is cancelled the game loads fine and proceeds normally. So the crash is definitely because of the GPG plugin.

The following logcat is shown on devices that crash: 09-11 14:07:37.261 15572-15595/xxx.xxx D/GamesUnitySDK﹕ Performing Android initialization of the GPG SDK 09-11 14:07:38.111 916-1005/system_process W/ActivityManager﹕ Activity pause timeout for ActivityRecord{41c06668 u0 xxx.xxx/com.unity3d.player.UnityPlayerActivity t27} 09-11 14:07:41.610 15572-15572/xxx.xxx W/Unity﹕ Timeout while trying to pause the Unity Engine. 09-11 14:07:49.444 916-15887/system_process W/ActivityManager﹕ Force finishing activity xxx.xxx/com.unity3d.player.UnityPlayerActivity 09-11 14:07:49.744 916-1074/system_process W/InputDispatcher﹕ channel '41ca6cd0 xxx.xxx/com.unity3d.player.UnityPlayerActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9 09-11 14:07:49.745 916-1074/system_process E/InputDispatcher﹕ channel '41ca6cd0 xxx.xxx/com.unity3d.player.UnityPlayerActivity (server)' ~ Channel is unrecoverably broken and will be disposed! 09-11 14:07:49.755 916-1375/system_process I/WindowState﹕ WIN DEATH: Window{41ca6cd0 u0 xxx.xxx/com.unity3d.player.UnityPlayerActivity} 09-11 14:07:49.755 916-1375/system_process W/InputDispatcher﹕ Attempted to unregister already unregistered input channel '41ca6cd0 xxx.xxx/com.unity3d.player.UnityPlayerActivity (server)' 09-11 14:07:49.756 916-1375/system_process W/WindowManager﹕ Force-removing child win Window{42208eb8 u0 PopupWindow:42016010} from container Window{41ca6cd0 u0 xxx.xxx/com.unity3d.player.UnityPlayerActivity} 09-11 14:07:49.759 916-1375/system_process W/WindowManager﹕ Force-removing child win Window{41a6a5b8 u0 com.google.android.gms} from container Window{41ca6cd0 u0 xxx.xxx/com.unity3d.player.UnityPlayerActivity} 09-11 14:07:49.763 916-1375/system_process W/WindowManager﹕ Force-removing child win Window{41ccf448 u0 SurfaceView} from container Window{41ca6cd0 u0 xxx.xxx/com.unity3d.player.UnityPlayerActivity}

Note: Crash not seen on other devices like Nexus 4 , Samsung s6 etc..

avinash2k commented 9 years ago

Removing the EnableSavedGames from configuration stops the crashes that i mentioned above.

CRASHES: PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder() // enables saving game progress. .EnableSavedGames() .Build();

NO CRASH: PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder () .WithInvitationDelegate (OnGotInvitation) .WithMatchDelegate (OnGotMatch) .Build();

avinash2k commented 9 years ago

Fixed !!

My problem was not publishing the changes made in developer console ( had enabled save , but not published it ).

Just adding a note to help other users in future :) . Cheers Avi

gguuss commented 9 years ago

Thanks for letting us know! Closing.