pelya / commandergenius

Port of SDL library and several games to the Android OS.
http://libsdl-android.sourceforge.net/
GNU Lesser General Public License v2.1
533 stars 249 forks source link

Problems with Italian Keyboards (possibly with other non-US keyboards) #40

Open alpianon opened 9 years ago

alpianon commented 9 years ago

I have tested it on an Asus TF700T, both with the dock (italian) keyboard and with an external (wireless) Italian keyboard. I checked, from within a chrooted linux environment, that the keyboard input events are correct (I used evtest to check), but XServer XSDL does not handle all of them correctly (I used xev to check):

1) Keys AE11 (in the Italian keyboard: apostrophe, question, grave, questiondown) and AB10 (minus, underscore, dead_macron, division) are swapped. 2) DEL, ESC, INS and 102ND (in the Italian keyboard: less, greater) keys do not work at all, they are not even detected by X server 3) Alt/AltGr+WHATEVERKEY events are seen as if only WHATEVERKEY is pressed (without Alt/AltGr)

See my posts here: http://forum.xda-developers.com/showpost.php?p=57875401&postcount=7 http://forum.xda-developers.com/showpost.php?p=58129816&postcount=11

pelya commented 9 years ago

Could you please install this app: https://play.google.com/store/apps/details?id=com.input.events.logger.debug.app and tell me which Android keycode it shows for each key, and which xev keycode it should send.

Do you have Italian key layout selected in Android settings? Do these keys work okay in other Android apps?

Non-ASCII international keys are not supported very well - XSDL copies each symbol Unicode value into X clipboard, and then sends Ctrl-V keypress to paste the symbol into currently active X application, which do not work in terminal, because Ctrl-V has a special meaning there.

Here is a table of SDL key mapping, if you plan to compile it yourself: https://github.com/pelya/commandergenius/blob/sdl_android/project/jni/sdl-1.2/src/video/android/keymap.c

On Tue, Jan 13, 2015 at 6:52 PM, alpianon notifications@github.com wrote:

I have tested it on an Asus TF700T, both with the dock (italian) keyboard and with an external (wireless) Italian keyboard. I checked, from within a chrooted linux environment, that the keyboard input events are correct (I used evtest to check), but XServer XSDL does not handle all of them correctly (I used xev to check):

1) Keys (in the Italian keyboard: apostrophe, question, grave, questiondown) and (minus, underscore, dead_macron, division) are swapped. 2) DEL, ESC, INS and 102ND keys (in the Italian keyboard: less, greater) do not work at all, they are not even detected by X server 3) Alt/AltGr+WHATEVERKEY events are seen as if only WHATEVERKEY is pressed (without Alt/AltGr)

See my posts here: http://forum.xda-developers.com/showpost.php?p=57875401&postcount=7 http://forum.xda-developers.com/showpost.php?p=58129816&postcount=11

— Reply to this email directly or view it on GitHub https://github.com/pelya/commandergenius/issues/40.

alpianon commented 9 years ago

Ok done a lot of testing with your input events logger app, and with xev and evtest within the chrooted linux GUI, and with XServer XSDL keyboard remapping settings. I used both the asus dock keyboard and an external wireless keyboard.

command used for evtest: evtest /dev/input/eventX command user for xev: xev | grep -A2 --line-buffered '^KeyRelease' | sed -n '/keycode /s/^.keycode ([0-9]).* (., (.)).*$/\1 \2/p'

I split the results in different comments.

1) 102ND key (in Italian keyboard: less, greater ): it is a problem of the remapping of the SDL keycode "LESS". In Android input events logger App the keycode is 81 and the scancode is 86. If, in the App's initial configuration menu, I remap the 102ND key to "LESS", the key is not "seen" by the X server at all (meaning: with xev I see no output at all when I press it, while with evtest I get the correct keycode). But if I remap the 102ND key to a random SDL keycode (say, 'Q'), it works (if I press the 102ND key, I get a 'Q'). So it is the SDL keycode "LESS" that does not work.

alpianon commented 9 years ago

2) DEL, INS, ESC: the "problem" is that XServer XSDL looks for keycodes and not for scancodes when it reads from the input device. In my dock keyboard, "fake" DEL, INS and ESC keys (see here http://forum.xda-developers.com/showpost.php?p=40168242&postcount=3 section "Keyboard dock tweaks") have the following codes (displayed by your logger app):

DEL scancode 111 keycode 0 INS scancode 110 keycode 0 ESC scancode 1 keycode 0

...while with the external wireless keyboard I get the following codes:

DEL scancode 111 keycode 112 INS scancode 110 keycode 124 ESC scancode 1 keycode 111

So with the external keyboard such keys work correctly in X, while with the dock keyboard XServer XSDL sees them as if they were only one key (with keycode 0). I am not really an expert of X, so I do not know if the standard behavior is to look at scancodes or at keycodes i.e., if it is XServer XSDL that should look at scancodes instead of keycodes, of if it is the custom kernel I am using - that performs kernel level keyboard remapping - that should send the right keycodes.

alpianon commented 9 years ago

3) apostrophe and minus keys in Italian Keyboard are swapped. In the Android input event logger App I get: Italian Kbd Apostrophe key: Keycode 76 KEYCODE_SLASH Scancode 12 Italan Kbd minus key: keycode 69 KEYCODE_MINUS Scancode 53

That it is NOT what should happen: US slash should correspond to IT minus, and US minus to IT apostrophe, not the other way round. The strange thing is that in Android I get the right keys... In any case, it is not a problem of XServer XSDL

alpianon commented 9 years ago

The fact that IT-MINUS corresponds to US-SLASH and not to US-MINUS was confusing me, sorry. I repeated the tests having in mind the corresponding US keys, if I press US-MINUS I get Scancode 12, and if I press US-SLASH I get Scancode 53, which are correct values. So it cannot be a kernel problem, and maybe XServer XSDL is swapping the two keys.

gfkpth commented 8 years ago

Sorry to bump this old issue, but wanted to weigh in with something that might be related. Otherwise let me know and I can open a separate issue. I prefer having more than one keyboard layout installed (US, DE, EL). I am running a chroot from Linux Deploy, using XFCE and xfce4-xkb-applet as layout switcher. This works fine if I use Debian Wheezy as base install from Linxu Deploy, but if I use jessie or testing, XSDL crashes once change the settings in the keyboard applet to set up anything other than the US layout. At the moment, I am working around this by having oldstable/wheezy as the basis and adding various other packages for which I need newer variants via apt-pinning from jessie or testing (e.g. I use LaTeX and prefer to have the testing packages for that, xfce doesn't seem to have the function to snap windows to the edges until jessie, so that install the jessie packages for that). Of course, this makes for a Frankenstein system, and it's somewhat tricky to know what I can and cannot upgrade without breaking things (happened once or twice). Also, I don't know at what point wheezy will be too deprecated for this sort of setup to work. So any ways to solve this would be great!

I haven't tried recently, but some months ago I had tried Ubuntu and arch as well, and they had the same issue with not being able to switch keyboard layouts.

pelya commented 8 years ago

Could you please send crash information to me? Android should show the dialog to send crash info whenever an app crashes. You can also capture backtrace using 'adb logcat' command.

XSDL does not really support switching layouts inside XFCE - you switch them inside Android, from 'select language' notification, then you should be able to enter international symbols everywhere except the terminal (because XSDL copies each symbol to clipboard and sends Ctrl-V).

On Fri, Jan 29, 2016 at 12:30 AM, gfkpth notifications@github.com wrote:

Sorry to bump this old issue, but wanted to weigh in with something that might be related. Otherwise let me know and I can open a separate issue. I prefer having more than one keyboard layout installed (US, DE, EL). I am running a chroot from Linux Deploy, using XFCE and xfce4-xkb-applet as layout switcher. This works fine if I use Debian Wheezy as base install from Linxu Deploy, but if I use jessie or testing, XSDL crashes once change the settings in the keyboard applet to set up anything other than the US layout. At the moment, I am working around this by having oldstable/wheezy as the basis and adding various other packages for which I need newer variants via apt-pinning from jessie or testing (e.g. I use LaTeX and prefer to have the testing packages for that, xfce doesn't seem to have the function to snap windows to the edges until jessie, so that install the jessie packages for that). Of course, this makes for a Frankenstein system, and it's somewhat tricky to know what I can and cannot upgrade without breaking things (happened once or twice). Also, I don't know at what point wheezy will be too deprecated for this sort of setup to work. So any ways to solve this would be great!

I haven't tried recently, but some months ago I had tried Ubuntu and arch as well, and they had the same issue with not being able to switch keyboard layouts.

— Reply to this email directly or view it on GitHub https://github.com/pelya/commandergenius/issues/40#issuecomment-176455216 .

gfkpth commented 8 years ago

Sorry for not getting back earlier!

I'll try to get you a logcat next time I give this a try. On my current wheezy+jessie+testing setup XSDL is working without problems luckily, it's only when I try to set up a new system based on jessie or testing that I run into these issues.

Initially, I had tried to just change the Android keyboard language as you suggest. I just checked again, the problem is with certain symbols, like []/ etc. which are not displayed (or on the wrong key, e.g. / is on AltGr+the key next to 0, rather than Shift+7). Maybe this is just a gap in your implementation of the copying mechanism you mentioned, not sure.

It would probably be possible to get used to this, or find workarounds for the missing keys (like switching to US layout and finding the necessary keys there), but it would obviously be the most convenient option to just find out what breaks Linux's own layout switcher from jessie onwards... (I'm using my Android linux mainly to write LaTeX, so it would be great to have the [] keys handy ;)

Thanks for your great programme for the time being, and I'll make sure to send you a logcat at the next opportunity when I'm going to setup a new android linux

All best, georg

On 01/02/16 16:59, Sergii Pylypenko wrote:

Could you please send crash information to me? Android should show the dialog to send crash info whenever an app crashes. You can also capture backtrace using 'adb logcat' command.

XSDL does not really support switching layouts inside XFCE - you switch them inside Android, from 'select language' notification, then you should be able to enter international symbols everywhere except the terminal (because XSDL copies each symbol to clipboard and sends Ctrl-V).

On Fri, Jan 29, 2016 at 12:30 AM, gfkpth notifications@github.com wrote:

Sorry to bump this old issue, but wanted to weigh in with something that might be related. Otherwise let me know and I can open a separate issue. I prefer having more than one keyboard layout installed (US, DE, EL). I am running a chroot from Linux Deploy, using XFCE and xfce4-xkb-applet as layout switcher. This works fine if I use Debian Wheezy as base install from Linxu Deploy, but if I use jessie or testing, XSDL crashes once change the settings in the keyboard applet to set up anything other than the US layout. At the moment, I am working around this by having oldstable/wheezy as the basis and adding various other packages for which I need newer variants via apt-pinning from jessie or testing (e.g. I use LaTeX and prefer to have the testing packages for that, xfce doesn't seem to have the function to snap windows to the edges until jessie, so that install the jessie packages for that). Of course, this makes for a Frankenstein system, and it's somewhat tricky to know what I can and cannot upgrade without breaking things (happened once or twice). Also, I don't know at what point wheezy will be too deprecated for this sort of setup to work. So any ways to solve this would be great!

I haven't tried recently, but some months ago I had tried Ubuntu and arch as well, and they had the same issue with not being able to switch keyboard layouts.

— Reply to this email directly or view it on GitHub

https://github.com/pelya/commandergenius/issues/40#issuecomment-176455216 .

— Reply to this email directly or view it on GitHub https://github.com/pelya/commandergenius/issues/40#issuecomment-178068346.

gfkpth commented 8 years ago

Hi there,

I actually got a chance to observe another crash just now, so I'm sending you the logcat in the attachment. I was running an install of Debian testing, xfce and the xfce4-xkb-plugin for switching keyboard layouts.

Upon adding German to the available layouts things started to get strange - most keys would not print anything when trying in gedit, and a few keys in the mid and lower rows would only produce other symbols than the ones they should under any layout I'm familiar with. I think "b" or "n" resulted in a "p", and somethign around "f" or "g" produced a full stop.

Let me know if you need further info.

On 01/02/16 16:59, Sergii Pylypenko wrote:

Could you please send crash information to me? Android should show the dialog to send crash info whenever an app crashes. You can also capture backtrace using 'adb logcat' command.

XSDL does not really support switching layouts inside XFCE - you switch them inside Android, from 'select language' notification, then you should be able to enter international symbols everywhere except the terminal (because XSDL copies each symbol to clipboard and sends Ctrl-V).

On Fri, Jan 29, 2016 at 12:30 AM, gfkpth notifications@github.com wrote:

Sorry to bump this old issue, but wanted to weigh in with something that might be related. Otherwise let me know and I can open a separate issue. I prefer having more than one keyboard layout installed (US, DE, EL). I am running a chroot from Linux Deploy, using XFCE and xfce4-xkb-applet as layout switcher. This works fine if I use Debian Wheezy as base install from Linxu Deploy, but if I use jessie or testing, XSDL crashes once change the settings in the keyboard applet to set up anything other than the US layout. At the moment, I am working around this by having oldstable/wheezy as the basis and adding various other packages for which I need newer variants via apt-pinning from jessie or testing (e.g. I use LaTeX and prefer to have the testing packages for that, xfce doesn't seem to have the function to snap windows to the edges until jessie, so that install the jessie packages for that). Of course, this makes for a Frankenstein system, and it's somewhat tricky to know what I can and cannot upgrade without breaking things (happened once or twice). Also, I don't know at what point wheezy will be too deprecated for this sort of setup to work. So any ways to solve this would be great!

I haven't tried recently, but some months ago I had tried Ubuntu and arch as well, and they had the same issue with not being able to switch keyboard layouts.

— Reply to this email directly or view it on GitHub

https://github.com/pelya/commandergenius/issues/40#issuecomment-176455216 .

— Reply to this email directly or view it on GitHub https://github.com/pelya/commandergenius/issues/40#issuecomment-178068346.

--------- beginning of crash [ 01-01 00:02:46.849 1820: 1820 E/AndroidRuntime ] FATAL EXCEPTION: main Process: com.android.systemui, PID: 1820 java.lang.RuntimeException: Unable to create service com.android.systemui.keyguard.KeyguardService: java.lang.IllegalStateException: Cannot broadcast before boot completed at android.app.ActivityThread.handleCreateService(ActivityThread.java:2931) at android.app.ActivityThread.-wrap4(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1446) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.app.ActivityThread.main(ActivityThread.java:5466) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) Caused by: java.lang.IllegalStateException: Cannot broadcast before boot completed at android.os.Parcel.readException(Parcel.java:1628) at android.os.Parcel.readException(Parcel.java:1573) at com.android.internal.appwidget.IAppWidgetService$Stub$Proxy.bindAppWidgetId(IAppWidgetService.java:868) at android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed(AppWidgetManager.java:1077) at android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed(AppWidgetManager.java:878) at com.android.systemui.recents.misc.SystemServicesProxy.bindSearchAppWidget(SystemServicesProxy.java:615) at com.android.systemui.recents.misc.SystemServicesProxy.getOrBindSearchAppWidget(SystemServicesProxy.java:571) at com.android.systemui.recents.Recents.reloadHeaderBarLayout(Recents.java:596) at com.android.systemui.recents.Recents.start(Recents.java:294) at com.android.systemui.SystemUIApplication.startServicesIfNeeded(SystemUIApplication.java:129) at com.android.systemui.keyguard.KeyguardService.onCreate(KeyguardService.java:45) at android.app.ActivityThread.handleCreateService(ActivityThread.java:2921) ... 8 more

--------- beginning of system [ 02-24 03:30:32.464 3973: 3996 D/ActivityThread ] Loading provider com.android.email.provider;com.android.email.notifier: com.android.email.provider.EmailProvider

[ 02-24 03:30:32.475 859: 2178 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:30:32.580 859: 900 I/chatty ] uid=1000 system_server expire 13 lines

[ 02-24 03:30:32.581 859: 3102 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 03:30:32.671 859: 2179 I/chatty ] uid=1000 system_server expire 9 lines

[ 02-24 03:30:32.672 859: 2835 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:30:32.685 859: 2177 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:30:33.085 859: 3128 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:30:33.314 859: 903 I/chatty ] uid=1000 system_server expire 20 lines

[ 02-24 03:30:33.614 859: 859 I/chatty ] uid=1000 system_server expire 13 lines

[ 02-24 03:30:33.733 859: 901 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:30:33.896 859: 1950 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:30:34.258 859: 1835 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:30:34.425 859: 2112 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:30:35.154 859: 2175 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:30:35.617 859: 2844 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:30:35.783 2789: 4329 W/ActivityThread ] ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());

[ 02-24 03:30:36.819 859: 2176 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:30:36.847 859: 2616 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:30:38.110 859: 913 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:30:45.473 859: 4656 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:30:55.206 859: 1795 I/chatty ] uid=1000 system_server expire 35 lines

[ 02-24 03:33:21.176 859: 910 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:33:22.205 859: 908 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:33:22.452 859: 905 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:35:33.235 859: 1227 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:35:33.329 2544: 3311 D/MccTable ] getLocaleFromMcc(en, gb, 234

[ 02-24 03:35:33.335 2544: 3311 D/MccTable ] getLocaleForLanguageCountry: got perfect match: en-GB

[ 02-24 03:35:34.313 859: 904 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:36:00.002 859: 859 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:36:03.860 859: 903 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:36:25.346 859: 1794 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:36:29.368 859: 1896 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:36:42.675 859: 1793 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:36:47.123 2926: 5091 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:36:48.566 2926: 5091 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:36:50.993 859: 1795 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:37:36.528 859: 1835 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:37:36.566 859: 901 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:37:36.714 859: 2177 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:37:36.745 859: 2178 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:37:36.765 859: 1234 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:37:36.881 859: 2176 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:37:36.905 3973: 3973 E/ActivityThread ] Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@b90368a that was originally bound here android.app.ServiceConnectionLeaked: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@b90368a that was originally bound here at android.app.LoadedApk$ServiceDispatcher.(LoadedApk.java:1093) at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:987) at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1315) at android.app.ContextImpl.bindService(ContextImpl.java:1298) at android.content.ContextWrapper.bindService(ContextWrapper.java:610) at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:189) at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:234) at com.android.email.service.EmailServiceUtils.isServiceAvailable(EmailServiceUtils.java:160) at com.android.email.provider.AccountReconciler.reconcileAccountsInternal(AccountReconciler.java:171) at com.android.email.provider.AccountReconciler.reconcileAccounts(AccountReconciler.java:115) at com.android.email.service.EmailBroadcastProcessorService.reconcileAndStartServices(EmailBroadcastProcessorService.java:309) at com.android.email.service.EmailBroadcastProcessorService.onSystemAccountChanged(EmailBroadcastProcessorService.java:373) at com.android.email.service.EmailBroadcastProcessorService.onHandleIntent(EmailBroadcastProcessorService.java:132) at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:66) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.os.HandlerThread.run(HandlerThread.java:61)

[ 02-24 03:37:37.315 859: 1950 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:37:37.555 859: 2835 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:37:37.888 2926: 5425 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:37:38.368 859: 2616 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:37:40.130 2926: 5425 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:37:40.302 859: 3128 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:37:49.199 859: 1795 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:37:51.021 859: 903 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:37:52.532 859: 1896 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:37:54.938 859: 900 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:38:07.135 859: 2179 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:38:12.319 859: 2175 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:38:38.239 2926: 5554 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:38:40.236 2926: 5554 E/ActivityThread ] Failed to find provider info for com.google.android.wearable.settings

[ 02-24 03:38:40.630 859: 2844 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:38:40.721 859: 2112 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:38:43.431 859: 3102 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:40:55.547 859: 859 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:40:56.051 859: 1819 I/chatty ] uid=1000 system_server expire 93 lines

[ 02-24 03:41:11.044 859: 1216 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:41:11.047 859: 910 I/chatty ] uid=1000 system_server expire 30 lines

[ 02-24 03:41:13.249 5729: 5811 W/ActivityThread ] ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());

[ 02-24 03:41:23.792 859: 913 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:41:27.535 859: 1819 I/chatty ] uid=1000 system_server expire 20 lines

[ 02-24 03:41:28.157 859: 2178 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:41:28.173 859: 1950 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:41:28.198 859: 1234 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:41:28.291 859: 902 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:41:28.326 859: 2176 I/chatty ] uid=1000 system_server expire 9 lines

[ 02-24 03:41:28.398 859: 859 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:41:28.825 859: 1896 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:41:29.048 859: 2179 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:41:29.152 859: 3102 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:41:29.196 859: 2835 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:41:35.992 859: 2177 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:41:36.024 859: 1794 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:41:36.024 859: 1795 I/chatty ] uid=1000 system_server expire 71 lines

[ 02-24 03:42:11.941 859: 2844 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:42:13.456 859: 3128 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:42:14.960 859: 903 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:42:16.082 859: 1793 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:42:19.211 859: 2175 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:42:25.860 859: 913 I/chatty ] uid=1000 system_server expire 23 lines

[ 02-24 03:42:35.317 859: 1835 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:42:35.892 6107: 6107 I/chatty ] uid=1000(system) com.android.keychain expire 1 line

[ 02-24 03:42:37.006 859: 901 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:43:04.765 859: 900 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:43:20.669 859: 1233 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:43:50.830 859: 2112 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:43:56.456 6670: 6670 E/ActivityThread ] Service com.google.android.gms.car.CarService has leaked ServiceConnection com.google.android.gms.car.hr@70cb6e1 that was originally bound here android.app.ServiceConnectionLeaked: Service com.google.android.gms.car.CarService has leaked ServiceConnection com.google.android.gms.car.hr@70cb6e1 that was originally bound here at android.app.LoadedApk$ServiceDispatcher.(LoadedApk.java:1093) at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:987) at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1315) at android.app.ContextImpl.bindService(ContextImpl.java:1298) at android.content.ContextWrapper.bindService(ContextWrapper.java:610) at android.content.ContextWrapper.bindService(ContextWrapper.java:610) at android.content.ContextWrapper.bindService(ContextWrapper.java:610) at com.google.android.gms.common.stats.g.a(:com.google.android.gms:128) at com.google.android.gms.common.stats.g.a(:com.google.android.gms:145) at com.google.android.gms.car.hc.(:com.google.android.gms:319) at com.google.android.gms.car.CarChimeraService.onCreate(:com.google.android.gms:74) at com.google.android.chimera.container.ServiceProxy.setImpl(:com.google.android.gms:119) at com.google.android.chimera.container.ServiceProxy.onCreate(:com.google.android.gms:109) at android.app.ActivityThread.handleCreateService(ActivityThread.java:2921) at android.app.ActivityThread.-wrap4(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1446) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.app.ActivityThread.main(ActivityThread.java:5466) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)

[ 02-24 03:43:56.457 859: 2616 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:43:56.479 6670: 6670 E/ActivityThread ] Service com.google.android.gms.car.CarCallService has leaked ServiceConnection com.google.android.gms.car.dq@8cce860 that was originally bound here android.app.ServiceConnectionLeaked: Service com.google.android.gms.car.CarCallService has leaked ServiceConnection com.google.android.gms.car.dq@8cce860 that was originally bound here at android.app.LoadedApk$ServiceDispatcher.(LoadedApk.java:1093) at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:987) at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1315) at android.app.ContextImpl.bindService(ContextImpl.java:1298) at android.content.ContextWrapper.bindService(ContextWrapper.java:610) at com.google.android.gms.common.stats.g.a(:com.google.android.gms:128) at com.google.android.gms.common.stats.g.a(:com.google.android.gms:145) at com.google.android.gms.car.dp.a(:com.google.android.gms:586) at com.google.android.gms.car.dp.(:com.google.android.gms:511) at com.google.android.gms.car.dp.a(:com.google.android.gms:488) at com.google.android.gms.car.dm.(:com.google.android.gms:112) at com.google.android.gms.car.CarCallService.onBind(:com.google.android.gms:79) at android.app.ActivityThread.handleBindService(ActivityThread.java:2948) at android.app.ActivityThread.-wrap2(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1451) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.app.ActivityThread.main(ActivityThread.java:5466) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)

[ 02-24 03:44:51.216 6573: 6573 I/chatty ] uid=1000(system) com.android.settings expire 1 line

[ 02-24 03:44:52.104 2926: 6844 E/ActivityThread ] Failed to find provider info for com.android.contacts.metadata

[ 02-24 03:44:52.531 859: 903 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:45:28.128 859: 2176 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:45:30.648 859: 3102 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:45:31.141 859: 1896 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:45:31.871 859: 2175 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:45:42.269 859: 2844 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:45:43.646 859: 2179 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:45:43.665 859: 1950 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:45:50.487 859: 913 I/chatty ] uid=1000 system_server expire 52 lines

[ 02-24 03:45:55.355 859: 1819 I/chatty ] uid=1000 system_server expire 60 lines

[ 02-24 03:45:55.908 859: 901 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:45:56.205 859: 902 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:45:56.248 859: 2835 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:45:56.249 859: 1234 I/chatty ] uid=1000 system_server expire 9 lines

[ 02-24 03:45:56.391 859: 2178 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:45:56.986 859: 2177 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:45:57.314 859: 1835 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:46:18.091 859: 2616 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:46:40.384 859: 3128 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:48:41.734 859: 1795 I/chatty ] uid=1000 system_server expire 16 lines

[ 02-24 03:49:37.802 859: 900 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:50:08.634 859: 2112 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:51:11.637 859: 1234 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 03:51:11.742 859: 902 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 03:51:16.943 859: 2175 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:51:17.026 859: 2179 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:51:21.537 859: 1795 I/chatty ] uid=1000 system_server expire 14 lines

[ 02-24 03:51:21.781 859: 913 I/chatty ] uid=1000 system_server expire 20 lines

[ 02-24 03:51:21.783 859: 1819 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:51:22.595 859: 900 I/chatty ] uid=1000 system_server expire 9 lines

[ 02-24 03:51:22.640 859: 3128 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:51:24.285 859: 1896 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:51:26.414 859: 1835 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:51:41.162 859: 2616 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:51:41.316 859: 859 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:51:52.227 859: 2178 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:51:52.230 296: 307 E/Cryptfs ] not running with encryption, aborting

[ 02-24 03:51:52.230 859: 1235 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:51:54.404 859: 1950 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:52:44.799 859: 1819 I/chatty ] uid=1000 system_server expire 20 lines

[ 02-24 03:53:00.857 859: 903 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:53:15.062 859: 901 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:53:20.465 859: 2835 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:53:41.781 859: 2844 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:54:01.845 859: 2177 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 03:55:07.296 859: 3102 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:55:19.058 859: 1226 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:55:52.502 859: 2176 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:56:04.252 296: 306 D/vold ] Remounting 10035 as mode default

[ 02-24 03:56:04.261 296: 306 D/vold ] Found matching PID 8847

[ 02-24 03:56:04.283 296: 306 D/vold ] Found matching PID 8862

[ 02-24 03:56:04.324 859: 2112 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:56:04.325 296: 306 D/vold ] Remounting 10035 as mode default

[ 02-24 03:56:04.335 296: 306 D/vold ] Found matching PID 8847

[ 02-24 03:56:04.373 296: 306 D/vold ] Found matching PID 8862

[ 02-24 03:56:04.686 859: 1795 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:56:13.824 859: 1819 I/chatty ] uid=1000 system_server expire 35 lines

[ 02-24 03:56:22.476 6983: 6994 D/DefContainer ] Copying /storage/emulated/0/Download/busybox.apk to base.apk

[ 02-24 03:56:29.230 859: 1234 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:56:56.766 859: 1819 I/chatty ] uid=1000 system_server expire 81 lines

[ 02-24 03:56:57.076 859: 902 I/chatty ] uid=1000 system_server expire 13 lines

[ 02-24 03:56:57.183 859: 900 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:56:59.024 859: 1795 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 03:57:03.029 859: 2179 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:57:04.893 859: 913 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:57:05.706 859: 1950 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:57:07.210 859: 901 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 03:57:08.641 859: 1835 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:57:09.253 859: 2176 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:57:11.091 859: 2112 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:57:17.585 859: 3128 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:57:19.566 859: 2835 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:57:21.334 859: 2178 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:57:22.719 859: 2177 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 03:57:22.821 859: 2844 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:57:38.249 859: 903 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:57:55.501 859: 2616 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 03:57:59.618 859: 2175 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 03:57:59.623 320:10310 W/SocketClient ] write error (Broken pipe)

[ 02-24 03:58:01.027 10373:10447 W/ActivityThread ] ClassLoader.loadClass: The class loader returned by Thread.getContextClassLoader() may fail for processes that host multiple applications. You should explicitly specify a context class loader. For example: Thread.setContextClassLoader(getClass().getClassLoader());

[ 02-24 03:58:01.483 859: 3102 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 03:59:05.727 859: 1819 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 03:59:06.464 859: 1234 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 03:59:54.733 859: 1896 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:00:00.096 2926:10740 E/ActivityThread ] Failed to find provider info for com.android.contacts.metadata

[ 02-24 04:00:02.812 859: 1795 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:00:08.665 859: 909 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:00:17.777 859: 913 I/chatty ] uid=1000 system_server expire 9 lines

[ 02-24 04:00:17.788 859: 1819 I/chatty ] uid=1000 system_server expire 24 lines

[ 02-24 04:00:55.376 859: 859 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:00:56.021 11629:11629 I/chatty ] uid=1000(system) com.android.keychain expire 1 line

[ 02-24 04:05:35.897 859: 1819 I/chatty ] uid=1000 system_server expire 131 lines

[ 02-24 04:05:36.078 859: 902 I/chatty ] uid=1000 system_server expire 17 lines

[ 02-24 04:05:36.104 859: 2177 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:05:36.105 859: 1234 I/chatty ] uid=1000 system_server expire 16 lines

[ 02-24 04:05:39.468 859: 900 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:05:41.673 859: 913 I/chatty ] uid=1000 system_server expire 34 lines

[ 02-24 04:05:42.396 859: 1835 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:05:48.739 859: 2835 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:05:54.890 859: 2176 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:06:13.835 859: 1896 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:06:21.969 859: 2616 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:06:24.316 859: 2175 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:06:25.919 859: 3102 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:06:26.387 859: 3128 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:06:41.460 859: 903 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:08:27.312 859: 2112 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:08:38.179 859: 1795 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:08:38.333 859: 2844 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:09:34.218 859: 901 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:11:22.806 859: 2178 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:13:09.731 859: 1819 I/chatty ] uid=1000 system_server expire 125 lines

[ 02-24 04:13:09.910 859: 902 I/chatty ] uid=1000 system_server expire 14 lines

[ 02-24 04:13:09.935 859: 2176 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:13:09.952 859: 1234 I/chatty ] uid=1000 system_server expire 14 lines

[ 02-24 04:13:14.074 859: 2844 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:13:16.224 859: 913 I/chatty ] uid=1000 system_server expire 20 lines

[ 02-24 04:13:17.154 859: 3128 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:13:18.237 859: 1795 I/chatty ] uid=1000 system_server expire 16 lines

[ 02-24 04:13:18.677 859: 900 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:13:20.146 859: 901 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:13:26.149 859: 2616 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:13:46.245 859: 903 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:15:05.120 859: 2177 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 04:16:21.402 859: 2179 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:17:20.614 859: 2175 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:17:45.331 859: 1896 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:18:48.675 859: 904 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:18:49.087 859: 908 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:19:00.201 859: 1835 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:19:08.064 859: 2835 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:19:20.119 859: 1226 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:19:31.378 859: 3102 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:19:56.798 859: 1950 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:20:07.995 859: 1795 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:20:09.966 859: 3128 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:20:11.048 859: 2179 I/chatty ] uid=1000 system_server expire 16 lines

[ 02-24 04:20:14.022 859: 903 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:20:16.040 859: 1226 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:20:26.750 859: 2616 I/chatty ] uid=1000 system_server expire 18 lines

[ 02-24 04:20:35.401 859: 2178 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:20:35.868 859: 1896 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:20:35.871 859: 2835 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:20:35.873 859: 900 I/chatty ] uid=1000 system_server expire 15 lines

[ 02-24 04:20:35.959 859: 2112 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:20:36.329 859: 1794 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:20:38.112 31339:31504 E/ActivityThread ] Failed to find provider info for com.estrongs.locker

[ 02-24 04:20:39.014 31339:31523 E/ActivityThread ] Failed to find provider info for com.estrongs.locker

[ 02-24 04:20:40.690 859: 2844 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:20:40.801 859: 2176 I/chatty ] uid=1000 system_server expire 17 lines

[ 02-24 04:20:40.827 859: 901 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:20:40.890 859: 3102 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:20:40.962 859: 1835 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:20:41.018 859: 2175 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:20:41.236 859: 2177 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:20:42.018 31339:31417 W/PackageParser ] No actions in intent filter at /data/app/com.amazon.kindle-1/base.apk Binary XML file line #458

[ 02-24 04:21:13.268 859: 913 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:21:27.479 6983: 6994 D/DefContainer ] Copying /storage/emulated/0/Download/OGYouTube v1.0.apk to base.apk

[ 02-24 04:21:28.146 859: 2616 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:21:28.169 859: 900 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:21:28.170 859: 1234 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:21:35.392 859: 1795 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:21:44.165 859: 913 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:21:44.323 859: 3128 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:21:44.342 859: 2112 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:21:44.498 859: 902 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:21:44.534 859: 2176 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:22:00.952 859: 859 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:22:02.814 859: 913 I/chatty ] uid=1000 system_server expire 13 lines

[ 02-24 04:22:02.824 859: 1819 I/chatty ] uid=1000 system_server expire 40 lines

[ 02-24 04:22:03.610 859: 3128 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:22:03.611 859: 1234 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 04:22:03.615 859: 1896 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:22:03.624 859: 902 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 04:22:05.261 859: 1835 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:22:05.545 859: 1795 I/chatty ] uid=1000 system_server expire 38 lines

[ 02-24 04:22:06.813 859: 2616 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 04:22:06.867 859: 2112 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 04:22:15.534 859: 2177 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:22:22.512 859: 901 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:22:22.552 859: 2179 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:22:38.013 859: 903 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:23:05.493 859: 2176 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:23:05.504 859: 2835 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:23:15.796 6983: 6995 D/DefContainer ] Copying /storage/emulated/0/Download/FDroid.apk to base.apk

[ 02-24 04:23:22.999 859: 913 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:23:23.165 859: 1819 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:23:27.337 859: 2844 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:23:27.487 859: 900 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:23:28.053 859: 1794 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:23:35.474 859: 2178 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:23:39.264 859: 1950 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:23:42.020 6983: 6995 D/DefContainer ] Copying /storage/emulated/0/Download/de myhermes app_apkpure.com.apk to base.apk

[ 02-24 04:23:47.717 859: 1819 I/chatty ] uid=1000 system_server expire 30 lines

[ 02-24 04:24:15.165 859: 3102 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:24:20.509 859: 1226 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:24:28.568 859: 908 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:24:40.464 859: 2175 I/chatty ] uid=1000 system_server expire 11 lines

[ 02-24 04:28:58.434 859: 1795 I/chatty ] uid=1000 system_server expire 10 lines

[ 02-24 04:29:25.379 859: 1950 I/chatty ] uid=1000 system_server expire 13 lines

[ 02-24 04:29:27.321 859: 1226 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:29:27.487 859: 903 I/chatty ] uid=1000 system_server expire 7 lines

[ 02-24 04:29:27.719 859: 908 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 04:29:27.918 859: 2112 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:29:30.686 859: 3102 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:29:31.994 859: 2178 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:29:33.053 859: 901 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:29:34.708 859: 1896 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:29:34.734 859: 3128 I/chatty ] uid=1000 system_server expire 6 lines

[ 02-24 04:29:51.349 859: 1835 I/chatty ] uid=1000 system_server expire 5 lines

[ 02-24 04:29:52.395 859: 2616 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:29:52.422 859: 2177 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:30:20.512 859: 902 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:30:49.461 859: 910 I/chatty ] uid=1000 system_server expire 4 lines

[ 02-24 04:30:49.576 859: 2844 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:30:54.240 859: 2176 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:30:54.242 859: 900 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:00.001 859: 859 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:00.670 859: 2835 I/chatty ] uid=1000 system_server expire 8 lines

[ 02-24 04:31:05.707 2895: 2895 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.707 3798: 3798 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.710 8194: 8194 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.711 8164: 8164 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.711 6114: 6114 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.711 2544: 2544 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.711 3278: 3278 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.712 31339:31339 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.712 2794: 2794 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.712 6135: 6135 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.712 2926: 2926 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.712 7069: 7069 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.713 10373:10373 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.714 7082: 7082 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 7025: 7025 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 4840: 4840 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 2534: 2534 I/chatty ] uid=1000(system) com.cyanogenmod.settings.device expire 1 line

[ 02-24 04:31:05.715 6983: 6983 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 2369: 2369 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 3973: 3973 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.715 10761:10761 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.717 2519: 2519 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.717 2214: 2214 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.718 8623: 8623 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.718 30679:30679 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.719 4166: 4166 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.719 7053: 7053 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.719 30717:30717 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 9079: 9079 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 10741:10741 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 8847: 8847 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 10479:10479 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 31234:31234 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 5778: 5778 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 17125:17125 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.720 2657: 2657 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.721 2451: 2451 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.724 1671: 1671 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:05.727 6573: 6573 I/chatty ] uid=1000(system) com.android.settings expire 1 line

[ 02-24 04:31:05.735 7008: 7008 I/ActivityThread ] Switching default density from 480 to 320

[ 02-24 04:31:08.790 3029: 3029 I/chatty ] uid=1000 system_server expire 135 lines

[ 02-24 04:31:08.900 3029: 3054 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:08.902 3029: 3056 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:09.030 3029: 3072 I/chatty ] uid=1000 system_server expire 3 lines

[ 02-24 04:31:09.926 3029: 3142 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:09.934 3029: 3140 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:30.843 3029: 3029 I/chatty ] uid=1000 system_server expire 318 lines

[ 02-24 04:31:33.227 3029: 3184 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:33.329 3029: 3072 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:33.540 3029: 3206 I/chatty ] uid=1000 system_server expire 187 lines

[ 02-24 04:31:33.551 296: 307 I/Ext4Crypt ] ext4 crypto complete called on /data

[ 02-24 04:31:33.551 296: 307 I/Ext4Crypt ] No master key, so not ext4enc

[ 02-24 04:31:33.552 3029: 3208 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:31:33.572 3029: 3207 I/chatty ] uid=1000 system_server expire 35 lines

[ 02-24 04:31:33.590 3029: 3206 I/chatty ] uid=1000 system_server expire 50 lines

[ 02-24 04:31:33.594 3029: 3029 I/chatty ] uid=1000 system_server expire 151 lines

[ 02-24 04:31:33.596 3029: 3053 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:33.744 296: 3215 D/vold ] Starting trim of /data

[ 02-24 04:31:33.927 3029: 3201 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:34.511 3029: 3220 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:34.560 3029: 3236 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:34.694 3029: 3221 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:34.782 296: 3215 I/vold ] Trimmed 2226020352 bytes on /data in 1037ms

[ 02-24 04:31:34.782 296: 3215 D/vold ] Starting trim of /cache

[ 02-24 04:31:34.821 296: 3215 I/vold ] Trimmed 251691008 bytes on /cache in 38ms

[ 02-24 04:31:34.991 3029: 3142 I/chatty ] uid=1000 system_server expire 12 lines

[ 02-24 04:31:35.124 3029: 3054 I/chatty ] uid=1000 system_server expire 2 lines

[ 02-24 04:31:35.684 296: 306 V/vold ] /system/bin/sgdisk

[ 02-24 04:31:35.684 296: 306 V/vold ] --android-dump

[ 02-24 04:31:35.684 296: 306 V/vold ] /dev/block/vold/disk:179_64

[ 02-24 04:31:35.735 296: 306 V/vold ] DISK mbr

[ 02-24 04:31:35.735 296: 306 V/vold ]

[ 02-24 04:31:35.735 296: 306 V/vold ] PART 1 83

[ 02-24 04:31:35.735 296: 306 V/vold ]

[ 02-24 04:31:35.735 296: 306 V/vold ] PART 2 83

[ 02-24 04:31:35.735 296: 306 V/vold ]

[ 02-24 04:31:35.749 3029: 3057 I/chatty ] uid=1000 system_server expire 1 line

[ 02-24 04:31:35.751 296: 306 V/vold ] Waiting for FUSE to spin up...

[ 02-24 04:31:35.786 3029: 3029 D/NetworkManagement ] enabling bandwidth control

[ 02-24 04:31:35.802 3029: 3207 D/VoldConnector ] RCV <- {651 emulated 2}

[ 02-24 04:31:35.803 3029: 3207 D/VoldConnector ] RCV <- {200 6 Command succeeded}

[ 02-24 04:31:36.003 3029: 3056 W/WindowManager ] Keyguard drawn timeout. Setting mKeyguardDrawComplete

[ 02-24 04:31:36.307 3029: 3261 I/StatusBarManagerService ] registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@781c8d4

[ 02-24 04:31:36.421 3029: 3337 I/ActivityManager ] Start proc 3566:com.google.process.gapps/u0a12 for content provider com.google.android.gsf/.gservices.GservicesProvider

[ 02-24 04:31:36.467 3029: 3261 I/ActivityManager ] Start proc 3584:com.android.externalstorage/u0a9 for broadcast com.android.externalstorage/.MountReceiver

[ 02-24 04:31:36.492 3029: 3045 I/ActivityManager ] Start proc 3593:com.cyanogenmod.lockclock/u0a53 for content provider com.cyanogenmod.lockclock/.weather.WeatherContentProvider

[ 02-24 04:31:36.649 3029: 3261 I/ActivityManager ] Start proc 3636:com.android.settings/1000 for broadcast com.android.settings/.widget.SettingsAppWidgetProvider

[ 02-24 04:31:36.680 3029: 3206 D/VoldConnector ] SND -> {7 volume mount public:179_65 2 0}

[ 02-24 04:31:36.681 296: 306 V/vold ] /system/bin/blkid

[ 02-24 04:31:36.681 296: 306 V/vold ] -c

[ 02-24 04:31:36.681 296: 306 V/vold ] /dev/null

[ 02-24 04:31:36.681 296: 306 V/vold ] -s

[ 02-24 04:31:36.681 296: 306 V/vold ] TYPE

[ 02-24 04:31:36.681 296: 306 V/vold ] -s

[ 02-24 04:31:36.681 296: 306 V/vold ] UUID

[ 02-24 04:31:36.681 296: 306 V/vold ] -s

[ 02-24 04:31:36.681 296: 306 V/vold ] LABEL

[ 02-24 04:31:36.681 296: 306 V/vold ] /dev/block/vold/public:179_65

[ 02-24 04:31:36.681 3029: 3207 D/VoldConnector ] RCV <- {651 public:179_65 1}

[ 02-24 04:31:36.696 3029: 3054 I/ActivityManager ] Start proc 3653:android.process.media/u0a8 for broadcast com.android.providers.media/.MtpReceiver

[ 02-24 04:31:36.731 296: 306 V/vold ] /dev/block/vold/public:179_65: UUID="af19c14e-d2ac-4bf3-956f-6cefba415284" TYPE="ext4"

[ 02-24 04:31:36.731 296: 306 V/vold ]

[ 02-24 04:31:36.732 3029: 3207 D/VoldConnector ] RCV <- {652 public:179_65 ext4}

[ 02-24 04:31:36.732 3029: 3207 D/VoldConnector ] RCV <- {653 public:179_65 af19c14e-d2ac-4bf3-956f-6cefba415284}

[ 02-24 04:31:36.732 3029: 3207 D/VoldConnector ] RCV <- {654 public:179_65 sdcard1}

[ 02-24 04:31:36.732 3029: 3207 D/VoldConnector ] RCV <- {656 public:179_65 /mnt/media_rw/af19c14e-d2ac-4bf3-956f-6cefba415284}

[ 02-24 04:31:36.732 3029: 3207 D/VoldConnector ] RCV <- {655 public:179_65 /storage/af19c14e-d2ac-4bf3-956f-6cefba415284}

[ 02-24 04:31:36.814 296: 306 V/vold ] /system/bin/e2fsck

[ 02-24 04:31:36.814 296: 306 V/vold ] -y

[ 02-24 04:31:36.814 296: 306 V/vold ] /dev/block/vold/public:179_65

[ 02-24 04:31:36.900 3029: 3029 E/NetdConnector ] NDC Command {9 strict enable} took too long (724ms)

[ 02-24 04:31:36.987 296: 306 V/vold ] Waiting for FUSE to spin up...

[ 02-24 04:31:37.038 3029: 3207 D/VoldConnector ] RCV <- {651 public:179_65 2}

[ 02-24 04:31:37.038 3029: 3207 D/VoldConnector ] RCV <- {200 7 Command succeeded}

[ 02-24 04:31:37.038 3029: 3206 D/VoldConnector ] SND -> {8 volume mount public:179_66 2 0}

[ 02-24 04:31:37.039 296: 306 V/vold ] /system/bin/blkid

[ 02-24 04:31:37.039 296: 306 V/vold ] -c

[ 02-24 04:31:37.039 296: 306 V/vold ] /dev/null

[ 02-24 04:31:37.039 296: 306 V/vold ] -s

[ 02-24 04:31:37.039 296: 306 V/vold ] TYPE

[ 02-24 04:31:37.039 296: 306 V/vold ] -s

[ 02-24 04:31:37.039 296: 306 V/vold ] UUID

[ 02-24 04:31:37.039 296: 306 V/vold ] -s

[ 02-24 04:31:37.039 296: 306 V/vold ] LABEL

[ 02-24 04:31:37.039 296: 306 V/vold ] /dev/block/vold/public:179_66

[ 02-24 04:31:37.039 3029: 3207 D/VoldConnector ] RCV <- {651 public:179_66 1}

[ 02-24 04:31:37.068 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:37.072 296: 306 V/vold ] /dev/block/vold/public:179_66: UUID="c9ab6504-cc73-4db1-92dc-6f39e1e31080" TYPE="ext4"

[ 02-24 04:31:37.072 296: 306 V/vold ]

[ 02-24 04:31:37.074 296: 306 V/vold ] /system/bin/e2fsck

[ 02-24 04:31:37.074 296: 306 V/vold ] -y

[ 02-24 04:31:37.074 296: 306 V/vold ] /dev/block/vold/public:179_66

[ 02-24 04:31:37.075 3029: 3207 D/VoldConnector ] RCV <- {652 public:179_66 ext4}

[ 02-24 04:31:37.075 3029: 3207 D/VoldConnector ] RCV <- {653 public:179_66 c9ab6504-cc73-4db1-92dc-6f39e1e31080}

[ 02-24 04:31:37.075 3029: 3207 D/VoldConnector ] RCV <- {654 public:179_66 sdcard1}

[ 02-24 04:31:37.076 3029: 3207 D/VoldConnector ] RCV <- {656 public:179_66 /mnt/media_rw/c9ab6504-cc73-4db1-92dc-6f39e1e31080}

[ 02-24 04:31:37.076 3029: 3207 D/VoldConnector ] RCV <- {655 public:179_66 /storage/c9ab6504-cc73-4db1-92dc-6f39e1e31080}

[ 02-24 04:31:37.082 3029: 3337 I/ActivityManager ] Start proc 3703:org.fdroid.fdroid/u0a141 for broadcast org.fdroid.fdroid/.receiver.WifiStateChangeReceiver

[ 02-24 04:31:37.088 296: 306 E/vold ] public:179_66 failed filesystem check

[ 02-24 04:31:37.088 3029: 3207 D/VoldConnector ] RCV <- {651 public:179_66 6}

[ 02-24 04:31:37.089 3029: 3207 D/VoldConnector ] RCV <- {400 8 Command failed}

[ 02-24 04:31:37.124 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:37.177 3029: 3029 I/SystemServiceManager ] Starting phase 600

[ 02-24 04:31:37.197 3029: 3029 V/NotificationListeners ] enabling notification listener for user 0: ComponentInfo{org.cyanogenmod.theme.chooser/org.cyanogenmod.theme.chooser.NotificationHijackingService}

[ 02-24 04:31:37.208 3029: 3029 I/ActivityManager ] Start proc 3728:org.cyanogenmod.theme.chooser/u0a20 for service org.cyanogenmod.theme.chooser/.NotificationHijackingService

[ 02-24 04:31:37.211 3029: 3029 I/BackupManagerService ] Backup enabled => true

[ 02-24 04:31:37.225 3029: 3029 I/ActivityManager ] Start proc 3734:com.google.android.googlequicksearchbox:interactor/u0a30 for service com.google.android.googlequicksearchbox/com.google.android.voiceinteraction.GsaVoiceInteractionService

[ 02-24 04:31:37.234 3029: 3029 E/InputMethodManagerService ] Ignoring updateSystemUiLocked due to an invalid token. uid:1000 token:null

[ 02-24 04:31:37.261 3029: 3029 I/ActivityManager ] Start proc 3748:com.android.inputmethod.latin/u0a50 for service com.android.inputmethod.latin/.LatinIME

[ 02-24 04:31:37.261 3029: 3029 V/InputMethodManagerService ] Adding window token: android.os.Binder@fd0d257

[ 02-24 04:31:37.424 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:37.429 3029: 3029 E/LocationManagerService ] Hardware Activity-Recognition not supported.

[ 02-24 04:31:37.493 3029: 3029 I/MmsServiceBroker ] Delay connecting to MmsService until an API is called

[ 02-24 04:31:37.494 3029: 3261 D/ConnectivityService ] listenForNetwork for Listen from uid/pid:10018/3243 for NetworkRequest [ id=3, legacyType=-1, [] ]

[ 02-24 04:31:37.494 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:37.542 3029: 3029 D/MountService ] onStartUser 0

[ 02-24 04:31:37.542 3029: 3029 D/VoldConnector ] SND -> {9 volume user_started 0}

[ 02-24 04:31:37.543 296: 306 D/vold ] Linking /storage/emulated/0 to /mnt/user/0/primary

[ 02-24 04:31:37.543 3029: 3207 D/VoldConnector ] RCV <- {200 9 Command succeeded}

[ 02-24 04:31:37.544 3029: 3206 D/MountService ] Volume public:179_65 broadcasting mounted to UserHandle{0}

[ 02-24 04:31:37.546 3029: 3206 D/MountService ] Volume emulated broadcasting mounted to UserHandle{0}

[ 02-24 04:31:37.563 3029: 3029 I/ActivityManager ] Start proc 3790:org.omnirom.omniswitch/u0a11 for added application org.omnirom.omniswitch

[ 02-24 04:31:37.596 3029: 3029 I/ActivityManager ] Start proc 3801:com.cyanogenmod.settings.device/1000 for added application com.cyanogenmod.settings.device

[ 02-24 04:31:37.605 3029: 3029 I/ActivityManager ] Start proc 3807:com.android.phone/1001 for added application com.android.phone

[ 02-24 04:31:37.606 3029: 3029 I/ActivityManager ] START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=com.cyanogenmod.trebuchet/com.android.launcher3.Launcher} from uid 0 on display 0

[ 02-24 04:31:37.632 3029: 3029 I/ActivityManager ] Start proc 3823:com.cyanogenmod.trebuchet/u0a21 for activity com.cyanogenmod.trebuchet/com.android.launcher3.Launcher

[ 02-24 04:31:37.657 3029: 3029 I/SystemServer ] Enabled StrictMode for system server main thread.

[ 02-24 04:31:37.661 3029: 3142 D/PowerManagerService ] mWakeLockBlockingEnabled=0 blockedWakelockList=null

[ 02-24 04:31:37.691 3029: 3053 I/ActivityManager ] Start proc 3857:com.android.printspooler/u0a60 for service com.android.printspooler/.model.PrintSpoolerService

[ 02-24 04:31:37.778 3029: 3513 I/ActivityManager ] Start proc 3885:android.process.acore/u0a3 for content provider com.android.providers.userdictionary/.UserDictionaryProvider

[ 02-24 04:31:37.862 3029: 3573 I/ActivityManager ] Start proc 3905:com.android.vending/u0a0 for broadcast com.android.vending/com.google.android.finsky.receivers.LocationProviderChangedReceiver

[ 02-24 04:31:37.954 3029: 3029 I/Telecom ] Class: TelecomSystem.INSTANCE being set

[ 02-24 04:31:37.956 3029: 3029 W/ContextImpl ] Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1233 android.content.ContextWrapper.startService:587 com.android.server.telecom.components.TelecomService.initializeTelecomSystem:111 com.android.server.telecom.components.TelecomService.onBind:47 android.app.ActivityThread.handleBindService:2948

[ 02-24 04:31:38.037 3029: 3029 V/WiredAccessoryManager ] init()

[ 02-24 04:31:38.105 3029: 3337 I/ActivityManager ] Start proc 3970:com.android.smspush/u0a67 for service com.android.smspush/.WapPushManager

[ 02-24 04:31:38.156 3029: 3221 E/ConnectivityService ] Failed to find Messenger in unregisterNetworkFactory

[ 02-24 04:31:38.157 3029: 3221 D/ConnectivityService ] Got NetworkFactory Messenger for Telephony

[ 02-24 04:31:38.301 3807: 3807 D/MccTable ] updateMccMncConfiguration mccmnc='null' fromServiceState=true

[ 02-24 04:31:38.301 3807: 3807 D/MccTable ] WIFI_COUNTRY_CODE set to

[ 02-24 04:31:38.303 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:38.303 3029: 3337 I/WifiService ] WifiService trying to set country code to with persist set to true

[ 02-24 04:31:38.472 3029: 4033 I/ActivityManager ] Start proc 4043:com.google.android.gms.persistent/u0a12 for broadcast com.google.android.gms/com.google.android.location.internal.NlpNetworkProviderSettingsUpdateReceiver

[ 02-24 04:31:38.498 3029: 3337 I/ActivityManager ] Start proc 4060:com.google.android.gms/u0a12 for service com.google.android.gms/.ads.identifier.service.AdvertisingIdService

[ 02-24 04:31:38.523 3029: 3054 I/ActivityManager ] Start proc 4068:com.cyanogenmod.eleven/u0a41 for broadcast com.cyanogenmod.eleven/.MediaButtonIntentReceiver

[ 02-24 04:31:38.614 3029: 3029 V/BackupManagerService ] Connected to transport ComponentInfo{android/com.android.internal.backup.LocalTransportService}

[ 02-24 04:31:38.614 3029: 3029 V/BackupManagerService ] Registering transport android/com.android.internal.backup.LocalTransportService::android/com.android.internal.backup.LocalTransport = android.app.backup.BackupTransport$TransportImpl@7784b03

[ 02-24 04:31:38.724 3029: 3045 I/ActivityManager ] Start proc 4101:com.cyanogenmod.eleven:main/u0a41 for service com.cyanogenmod.eleven/.MusicPlaybackService

[ 02-24 04:31:38.727 3807: 3807 D/MccTable ] updateMccMncConfiguration mccmnc='23410' fromServiceState=true

[ 02-24 04:31:38.728 3807: 3807 D/MccTable ] updateMccMncConfiguration defaultMccMnc=

[ 02-24 04:31:38.728 3807: 3807 D/MccTable ] updateMccMncConfiguration: mcc=234, mnc=10

[ 02-24 04:31:38.728 3807: 3807 D/MccTable ] WIFI_COUNTRY_CODE set to gb

[ 02-24 04:31:38.748 3029: 3337 I/WifiService ] WifiService trying to set country code to gb with persist set to true

[ 02-24 04:31:38.917 3029: 3867 I/Telecom ] PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ]

[ 02-24 04:31:39.015 3029: 3867 I/Telecom ] : Sending phone-account intent as user

[ 02-24 04:31:39.056 3029: 3046 W/Telecom ] : No account found for the calling user

[ 02-24 04:31:39.124 3029: 3029 V/BackupManagerService ] Connected to transport ComponentInfo{com.google.android.gms/com.google.android.gms.backup.BackupTransportService}

[ 02-24 04:31:39.124 3029: 3029 V/BackupManagerService ] Registering transport com.google.android.gms/.backup.BackupTransportService::com.google.android.gms/.backup.BackupTransportService = com.android.internal.backup.IBackupTransport$Stub$Proxy@57731ff

[ 02-24 04:31:39.144 3029: 3054 I/SystemServiceManager ] Starting phase 1000

[ 02-24 04:31:39.195 3029: 3573 D/VoldConnector ] SND -> {10 volume mkdirs /storage/c9ab6504-cc73-4db1-92dc-6f39e1e31080/Android/data/com.cyanogenmod.eleven/cache/}

[ 02-24 04:31:39.196 3029: 3207 D/VoldConnector ] RCV <- {200 10 Command succeeded}

[ 02-24 04:31:39.244 3029: 4077 D/CryptdConnector ] SND -> {2 cryptfs getpw}

[ 02-24 04:31:39.244 296: 307 D/VoldCryptCmdListener ] cryptfs getpw

[ 02-24 04:31:39.244 296: 307 I/Ext4Crypt ] ext4 crypto complete called on /data

[ 02-24 04:31:39.244 296: 307 I/Ext4Crypt ] No master key, so not ext4enc

[ 02-24 04:31:39.244 296: 307 I/Ext4Crypt ] ext4 crypto complete called on /data

[ 02-24 04:31:39.244 296: 307 I/Ext4Crypt ] No master key, so not ext4enc

[ 02-24 04:31:39.244 3029: 3208 D/CryptdConnector ] RCV <- {200 2 -1}

[ 02-24 04:31:39.244 3029: 4077 D/CryptdConnector ] SND -> {3 cryptfs clearpw}

[ 02-24 04:31:39.245 296: 307 D/VoldCryptCmdListener ] cryptfs clearpw

[ 02-24 04:31:39.245 296: 307 I/Ext4Crypt ] ext4 crypto complete called on /data

[ 02-24 04:31:39.245 296: 307 I/Ext4Crypt ] No master key, so not ext4enc

[ 02-24 04:31:39.245 3029: 3208 D/CryptdConnector ] RCV <- {200 3 0}

[ 02-24 04:31:39.250 3029: 3261 D/VoldConnector ] SND -> {11 volume mkdirs /storage/c9ab6504-cc73-4db1-92dc-6f39e1e31080/Android/data/com.cyanogenmod.eleven/cache/}

[ 02-24 04:31:39.251 3029: 3207 D/VoldConnector ] RCV <- {200 11 Command succeeded}

[ 02-24 04:31:39.472 3029: 3573 I/Telecom ] PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=38x48) -> Icon(typ=BITMAP size=38x48))]

[ 02-24 04:31:39.501 3029: 4033 I/ActivityManager ] Start proc 4176:com.google.android.partnersetup/u0a26 for content provider com.google.android.partnersetup/.RlzAppProvider

[ 02-24 04:31:39.509 3029: 3573 I/Telecom ] : Sending phone-account intent as user

[ 02-24 04:31:39.568 3029: 4077 W/Telecom ] : No account found for the calling user

[ 02-24 04:31:39.605 3029: 4077 I/Telecom ] PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=38x48) -> Icon(typ=BITMAP size=38x48))]

[ 02-24 04:31:39.640 3029: 4077 I/Telecom ] : Sending phone-account intent as user

[ 02-24 04:31:39.673 3029: 4077 W/Telecom ] : No account found for the calling user

[ 02-24 04:31:39.764 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:39.770 3807: 3807 D/MccTable ] updateMccMncConfiguration mccmnc='23410' fromServiceState=false

[ 02-24 04:31:39.771 3807: 3807 D/MccTable ] updateMccMncConfiguration defaultMccMnc=23410

[ 02-24 04:31:39.771 3807: 3807 D/MccTable ] updateMccMncConfiguration: mcc=234, mnc=10

[ 02-24 04:31:39.771 3807: 3807 D/MccTable ] updateMccMncConfiguration updateConfig config={1.0 234mcc10mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/? themeResource=null}

[ 02-24 04:31:40.007 3029: 3867 I/ActivityManager ] Start proc 4239:com.estrongs.android.pop/u0a134 for broadcast com.estrongs.android.pop/.EnableOEMConfig

[ 02-24 04:31:40.127 3807: 3807 D/MccTable ] updateMccMncConfiguration mccmnc='23410' fromServiceState=false

[ 02-24 04:31:40.127 3807: 3807 D/MccTable ] updateMccMncConfiguration defaultMccMnc=23410

[ 02-24 04:31:40.127 3807: 3807 D/MccTable ] updateMccMncConfiguration: mcc=234, mnc=10

[ 02-24 04:31:40.127 3807: 3807 D/MccTable ] updateMccMncConfiguration updateConfig config={1.0 234mcc10mnc ?locale ?layoutDir ?swdp ?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/? themeResource=null}

[ 02-24 04:31:40.168 3029: 3220 D/WifiService ] New client listening to asynchronous messages

[ 02-24 04:31:40.243 3029: 3056 W/WindowManager ] Keyguard drawn timeout. Setting mKeyguardDrawComplete

[ 02-24 04:31:40.358 3029: 3221 D/ConnectivityService ] Got NetworkFactory Messenger for WIFI

[ 02-24 04:31:40.358 3029: 3221 D/ConnectivityService ] Got NetworkFactory Messenger for WIFI_UT

[ 02-24 04:31:40.535 3029: 3602 I/Telecom ] PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [356a192b7913b04c54574d18c28d46e6395428ab], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ]

[ 02-24 04:31:40.550 3029: 3602 I/Telecom ] : Sending phone-account intent as user

[ 02-24 04:31:40.896 3029: 3513 I/Telecom ] PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [356a192b7913b04c54574d18c28d46e6395428ab], UserHandle{0}(icon: Icon(typ=BITMAP size=38x48) ->