Can anyone see whether or not my recent sense crash was because of startup auditor ? I've got a feeling it is, but can't be 100% ?
5-05 08:40:11.330 W/ResourceType( 116): Resources don't contain package for resource number 0x7f070000
05-05 08:40:11.460 D/ActivityManager( 116): Uninstalling process com.vesperaNovus.app.StartupAuditor
05-05 08:40:11.460 D/ActivityManager( 116): Force removing process ProcessRecord{44f64210 4177:com.vesperaNovus.app.StartupAuditor/10062} (com.vesperaNovus.app.StartupAuditor/10062)
05-05 08:40:11.460 I/Process ( 116): Sending signal. PID: 4177 SIG: 9
05-05 08:40:11.710 I/ActivityManager( 116): Start proc com.htc.bgp for broadcast com.htc.htclocationservice/.AutoSettingReceiver: pid=4193 uid=10001 gids={3003, 1006, 1015}
05-05 08:40:11.710 D/CIQ ( 116): throwUI04 com.htc.bgp
05-05 08:40:11.720 D/CIQ ( 116): processName com.htc.bgp
05-05 08:40:11.720 D/CIQ ( 116): throwUI05 com.htc.RosieUtility
05-05 08:40:11.720 D/CIQ ( 116): processName com.htc.RosieUtility
05-05 08:40:11.720 I/ActivityManager( 116): Process com.htc.RosieUtility (pid 4161) has died.
05-05 08:40:11.720 D/CIQ ( 116): throwUI05 com.vesperaNovus.app.StartupAuditor
05-05 08:40:11.720 D/CIQ ( 116): processName com.vesperaNovus.app.StartupAuditor
05-05 08:40:11.720 D/ActivityManager( 116): Received spurious death notification for thread [email protected]
05-05 08:40:11.730 W/ResourceType( 116): Resources don't contain package for resource number 0x7f070000
I have a really strange problem with my app widget. There's no issues with dragging it to the homescreen, configuration or even functionality. Everything works as expected.
But, after an arbitrary length of time, my launcher starts to crash. I've gone days at a time without experiencing this, and sometimes just minutes. In fact, there's seemingly no way to recover it without opening the Recent Apps screen, finding the Play Store or Settings and just uninstalling the app.
My app's package name is org.thecosmicfrog.luasataglance. Almost all of what the widget does is handled by a Service, which is created when a user taps part of the widget.
The widget is located at: org.thecosmicfrog.luasataglance.widget.StopForecastWidget
The Service is located at: org.thecosmicfrog.luasataglance.service.WidgetListenerService
I've attached the output of LogCat just after the crash below. You can see where the Google Now launcher starts to crash (com.google.android.googlequicksearchbox), but this affects other launchers too:
Code:
10-04 03:28:07.769 I/GEL (1330): handleIntent(Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10600000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL })
10-04 03:28:07.829 D/AudioManager(1244): AudioManager dispatching onAudioFocusChange(-3) for [email protected]@37833331
10-04 03:28:07.867 D/Launcher(1330): bindAppWidget: AppWidget(id=153)
10-04 03:28:07.871 D/Launcher(1330): bindAppWidget: id=153 belongs to component ComponentInfo{org.thecosmicfrog.luasataglance/org.thecosmicfrog.luasataglance.widget.StopForecastWidget}
10-04 03:28:07.931 I/art (2036): Explicit concurrent mark sweep GC freed 22778(1189KB) AllocSpace objects, 0(0B) LOS objects, 38% free, 25MB/41MB, paused 2.368ms total 104.811ms
10-04 03:28:07.971 I/WindowManager(789): Screen frozen for +445ms due to Window{1d871ef2 u0 StatusBar}
10-04 03:28:08.308 E/JavaBinder(1330): !!! FAILED BINDER TRANSACTION !!!
10-04 03:28:08.315 D/AndroidRuntime(1330): Shutting down VM
10-04 03:28:08.422 I/MediaFocusControl(789): AudioFocus abandonAudioFocus() from [email protected]
10-04 03:28:08.424 I/ActivityManager(789): Start proc 23910:com.google.android.googlequicksearchbox:crash_report/u0a24 for service com.google.android.googlequicksearchbox/com.google.android.apps.gsa.silentfeedback.SilentFeedbackService
10-04 03:28:08.424 D/AudioManager(1244): AudioManager dispatching onAudioFocusChange(1) for [email protected]@37833331
--------- beginning of crash
10-04 03:28:08.425 E/AndroidRuntime(1330): FATAL EXCEPTION: main
10-04 03:28:08.425 E/AndroidRuntime(1330): Process: com.google.android.googlequicksearchbox, PID: 1330
10-04 03:28:08.425 E/AndroidRuntime(1330): java.lang.RuntimeException: Unable to resume activity {com.google.android.googlequicksearchbox/com.google.android.launcher.GEL}: java.lang.RuntimeException: system server dead?
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2986)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3017)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1347)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.os.Handler.dispatchMessage(Handler.java:102)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.os.Looper.loop(Looper.java:135)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.ActivityThread.main(ActivityThread.java:5254)
10-04 03:28:08.425 E/AndroidRuntime(1330): at java.lang.reflect.Method.invoke(Native Method)
10-04 03:28:08.425 E/AndroidRuntime(1330): at java.lang.reflect.Method.invoke(Method.java:372)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
10-04 03:28:08.425 E/AndroidRuntime(1330): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:115)
10-04 03:28:08.425 E/AndroidRuntime(1330): Caused by: java.lang.RuntimeException: system server dead?
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.appwidget.AppWidgetHost.createView(AppWidgetHost.java:323)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.launcher3.LauncherAppWidgetHost.createView(LauncherAppWidgetHost.java:116)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.launcher3.Launcher.bindAppWidget(Launcher.java:3950)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.launcher3.Workspace.reinflateWidgetsIfNecessary(Workspace.java:1124)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.launcher3.Launcher.onResume(Launcher.java:1044)
10-04 03:28:08.425 E/AndroidRuntime(1330): at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
10-04 03:28:08.425 E/AndroidRuntime(1330): at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:650)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.launcher3.Launcher.onResume(<Xposed>)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1257)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.Activity.performResume(Activity.java:6076)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2975)
10-04 03:28:08.425 E/AndroidRuntime(1330): ... 10 more
10-04 03:28:08.425 E/AndroidRuntime(1330): Caused by: android.os.TransactionTooLargeException
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.os.BinderProxy.transactNative(Native Method)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.os.BinderProxy.transact(Binder.java:496)
10-04 03:28:08.425 E/AndroidRuntime(1330): at com.android.internal.appwidget.IAppWidgetService$Stub$Proxy.getAppWidgetViews(IAppWidgetService.java:538)
10-04 03:28:08.425 E/AndroidRuntime(1330): at android.appwidget.AppWidgetHost.createView(AppWidgetHost.java:321)
10-04 03:28:08.425 E/AndroidRuntime(1330): ... 20 more
10-04 03:28:08.470 W/ActivityManager(789): Force finishing activity 1 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL
10-04 03:28:08.517 D/OpenGLRenderer(789): Use EGL_SWAP_BEHAVIOR_PRESERVED: true
10-04 03:28:08.518 D/Atlas (789): Validating map...
10-04 03:28:08.519 I/Xposed (23910): GB:ModLauncher: Couldn't find dynamic grid. Incompatible Google Search?
10-04 03:28:08.538 W/XPrivacy(23910): Hooking package=com.google.android.googlequicksearchbox
10-04 03:28:08.575 I/OpenGLRenderer(789): Initialized EGL, version 1.4
10-04 03:28:08.603 D/OpenGLRenderer(789): Enabling debug mode 0
10-04 03:28:08.847 I/ActivityManager(789): Killing 19499:com.emmaguy.todayilearned/u0a92 (adj 15): empty #17
10-04 03:28:08.972 W/ActivityManager(789): Activity pause timeout for ActivityRecord{22486d04 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL t5986 f}
Later on in the log, there is more output related to app widgets which may be useful too:
Code:
10-04 03:28:15.661 I/Process (1330): Sending signal. PID: 1330 SIG: 9
10-04 03:28:15.691 I/WindowState(789): WIN DEATH: Window{389c7f61 u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL}
10-04 03:28:15.737 I/ActivityManager(789): Process com.google.android.googlequicksearchbox (pid 1330) has died
10-04 03:28:15.739 W/ActivityManager(789): Scheduling restart of crashed service com.google.android.googlequicksearchbox/com.google.android.apps.gsa.reflection.ReflectionService in 1000ms
10-04 03:28:15.745 W/IInputConnectionWrapper(1244): showStatusIcon on inactive InputConnection
10-04 03:28:16.176 W/ResourceType(952): No package identifier when getting value for resource number 0x00000000
10-04 03:28:16.350 W/ResourceType(952): No package identifier when getting value for resource number 0x00000000
10-04 03:28:16.350 W/PackageManager(952): Failure retrieving resources for org.thecosmicfrog.luasataglance: Resource ID #0x0
10-04 03:28:16.861 D/audio_hw_primary(188): out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
10-04 03:28:17.657 D/AndroidRuntime(24056): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-04 03:28:17.670 D/AndroidRuntime(24056): CheckJNI is OFF
10-04 03:28:17.954 I/ActivityManager(789): Start proc 24076:eu.chainfire.supersu/u0a84 for broadcast eu.chainfire.supersu/.NativeAccessReceiver
10-04 03:28:17.984 W/ResourceType(952): No package identifier when getting value for resource number 0x00000000
10-04 03:28:17.984 W/PackageManager(952): Failure retrieving resources for com.google.android.youtube: Resource ID #0x0
10-04 03:28:18.066 W/XPrivacy(24076): Hooking package=eu.chainfire.supersu
10-04 03:28:18.570 D/AndroidRuntime(24137): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-04 03:28:18.574 D/AndroidRuntime(24137): CheckJNI is OFF
10-04 03:28:18.565 W/app_process32_x(24137): type=1400 audit(0.0:95): avc: denied { write } for name="[email protected]@boot.art" dev="mmcblk0p28" ino=491525 scontext=u:r:shell:s0 tcontext=u:object_r:dalvikcache_data_file:s0 tclass=file
10-04 03:28:18.709 D/AndroidRuntime(24137): Calling main entry com.android.commands.am.Am
10-04 03:28:18.746 D/AndroidRuntime(24137): Shutting down VM
10-04 03:28:18.855 W/app_process32_x(24167): type=1400 audit(0.0:96): avc: denied { write } for name="[email protected]@boot.art" dev="mmcblk0p28" ino=491525 scontext=u:r:shell:s0 tcontext=u:object_r:dalvikcache_data_file:s0 tclass=file
10-04 03:28:18.859 D/AndroidRuntime(24167): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-04 03:28:18.862 D/AndroidRuntime(24167): CheckJNI is OFF
10-04 03:28:18.985 D/AndroidRuntime(24167): Calling main entry com.android.commands.am.Am
10-04 03:28:19.013 D/AndroidRuntime(24167): Shutting down VM
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): Widget host dead: HostId{user:0, app:10024, hostId:1024, pkg:com.google.android.googlequicksearchbox}
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): android.os.DeadObjectException
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at android.os.BinderProxy.transactNative(Native Method)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at android.os.BinderProxy.transact(Binder.java:496)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.internal.appwidget.IAppWidgetHost$Stub$Proxy.updateAppWidget(IAppWidgetHost.java:123)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.server.appwidget.AppWidgetServiceImpl.handleNotifyUpdateAppWidget(AppWidgetServiceImpl.java:1638)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.server.appwidget.AppWidgetServiceImpl.access$1200(AppWidgetServiceImpl.java:107)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.server.appwidget.AppWidgetServiceImpl$CallbackHandler.handleMessage(AppWidgetServiceImpl.java:2962)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at android.os.Handler.dispatchMessage(Handler.java:102)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at android.os.Looper.loop(Looper.java:135)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.server.SystemServer.run(SystemServer.java:269)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.server.SystemServer.main(SystemServer.java:170)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at java.lang.reflect.Method.invoke(Native Method)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at java.lang.reflect.Method.invoke(Method.java:372)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
10-04 03:28:19.394 E/AppWidgetServiceImpl(789): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:115)
I'm finding this incredibly difficult to debug, so any help offered would be greatly appreciated. If you require any more information, I'll be happy to provide it.
Could you please post some code ?
I can't run Google Play Store. It was perfectly fine till, I have discovered today that it doesn't work. I am on build Y3XSCN06A1000MPX1803211
I am not sure if Google Play Store updated itself - hence, it is no longer working due to incorrect libraries, etc. Or maybe something else made it stop. I have restarted my phone number of times, I haven't changed settings recently. So, I am really puzzled what's wrong. Anyone has the same problem?
I wonder, if I have to reinstall everything? Or is there a work around? And how I could avoid this in future...?
Same Problem and cannot install APKs normaly
My Google Play Store stopped working too! I can only install new .APK's by download them direktly on my mobil and go into the China Appstore => click on the box (top right corner) => click on the Android icon (between trash bin and the broom) => and click on the tool icon (under the checkbox).
I cannot install APK in the normal way und i already reset my Yota once and the same problem happend again.
I hope somebody got a solution to this problem.
In my case Market stopped working when my phone is consuming large amount of RAM. My issue is non starting download process of apps, just placing them in queue.
You could try two things. For both solutions (workaround) forts queue your download, and then:
1. When you still on Store screen, hit menu/recently used apps button and touch "X" kill button (it will kill most of running apps, what should respawn Store automatically and start download).
2. Reboot your phone. Store starts somewhere on beginning of system boot, so it should start apps download process right away.
@jan.nowak - thank you for your suggestion. However, this doesn't work for me. I can't keep "alive" Google Play Store. When I press its icon it tries to start it but it is closed immediately afterwards. So, I can't even see first page in Play Store.
So, I've killed all apps (after pressing hard key - left one) and pressing something looking similar to -X-. It released about 500MB in my case. I have checked, if I can start Play Store - it failed.
Then I rebooted my mobile and tied again with Play Store - it failed again. I hope it is just inconsistency of my main apps (I mean those 4 you've kindly previously provided). Because I need to install few more apps, I might have to make factory reset and try to install it from scratch. However, I would like to avoid this, if possible.
Less Problem with Aptoide instead of Google Play Store
I got the problem with the Yota 3 Phone twice already and i decide that i dont use Google Play Store anymore instead i use "Aptoide" (I know that i might get a virus). And with Aptoide all Apps run smother and doesnt crash anymore. The downside is you need a 3rd Party youtubeplayer because the normal youtube doesnt work without Google Play and i already got 1 App that i cannot login to because Google Firebase is missing. But overall i think that it es better that Google play. I might try google play after the next update, but my conclusion is that the Google playstore problem is in the moment not fixable.
did anyone found a solution for this?
I am doing factory reset for a third time right now... Google Play Store just stops working all of a sudden and immediately closes after opening. Nothing helps, other then factory reset
Yes there is a safe and working solution.
IMPORTANT NOTE: select the newest versions!
After allowing install from unknown sources, you need to dl + install:
Google Play Services (make a link of the following) apkmirror . com/apk/google-inc/google-play-services/google-play-services-11-9-75-release/google-play-services-11-9-75-448-182402865-android-apk-download/
Google Service Framework: apkmirror . com/apk/google-inc/google-services-framework/google-services-framework-7-1-1-release/google-services-framework-7-1-1-android-apk-download/
Google Account Manager: apkmirror . com/apk/google-inc/google-account-manager/google-account-manager-7-1-1-3515457-release/google-account-manager-7-1-1-3515457-android-apk-download/
Google Play Store: apkmirror . com/apk/google-inc/google-play-store/google-play-store-8-7-10-release/google-play-store-8-7-10-all-0-pr-181799446-android-apk-download/
usually all you need but it will stuck, so additional
Android System WebView: apkmirror . com/apk/google-inc/android-system-webview/android-system-webview-64-0-3282-99-release/android-system-webview-64-0-3282-99-2-android-apk-download/
(Source: geeks-r-us . de/2018/02/05/google-play-store-auf-dem-neuen-yotaphone-3-mit-chinesischem-rom-installieren-checking-info-problem/ )
greets from Germany
_______________________
How many Germans do you need to change a bulb?
One. We don't have humour and we're efficient. ;o)
I hope someone who had the same problem in the past, could say if it is working for them.
At the moment, I can't update my system... I will need to wait couple of weeks/months before I can do that. I wonder if you get other issues instead?
This solution did not work for me. Once Google Play store stops working- phone is refusing to install any APK. Also some apps installed via Google Play store stopped working (ie Spotify)
doin 4th factory reset now...
U-977 said:
Yes there is a safe and working solution.
IMPORTANT NOTE: select the newest versions!
After allowing install from unknown sources, you need to dl + install:
Google Play Services (make a link of the following) apkmirror . com/apk/google-inc/google-play-services/google-play-services-11-9-75-release/google-play-services-11-9-75-448-182402865-android-apk-download/
Google Service Framework: apkmirror . com/apk/google-inc/google-services-framework/google-services-framework-7-1-1-release/google-services-framework-7-1-1-android-apk-download/
Google Account Manager: apkmirror . com/apk/google-inc/google-account-manager/google-account-manager-7-1-1-3515457-release/google-account-manager-7-1-1-3515457-android-apk-download/
Google Play Store: apkmirror . com/apk/google-inc/google-play-store/google-play-store-8-7-10-release/google-play-store-8-7-10-all-0-pr-181799446-android-apk-download/
usually all you need but it will stuck, so additional
Android System WebView: apkmirror . com/apk/google-inc/android-system-webview/android-system-webview-64-0-3282-99-release/android-system-webview-64-0-3282-99-2-android-apk-download/
(Source: geeks-r-us . de/2018/02/05/google-play-store-auf-dem-neuen-yotaphone-3-mit-chinesischem-rom-installieren-checking-info-problem/ )
greets from Germany
_______________________
How many Germans do you need to change a bulb?
One. We don't have humour and we're efficient. ;o)
Click to expand...
Click to collapse
Here is an exempt from the adb logcat for the relevant part of the log:
Code:
07-01 13:42:50.258 4557 5251 V CommandQueue: appTransitionStarting(startTime=684978, duration=120
07-01 13:42:50.258 4557 4557 V PhoneStatusBarPolicy: updateManagedProfile: mManagedProfileFocused: false
07-01 13:42:50.358 5611 5687 E DatabaseUtils: Writing exception to parcel
07-01 13:42:50.358 5611 5687 E DatabaseUtils: java.lang.SecurityException: Permission Denial: reading com.google.android.gsf.gservices.GservicesProvider uri content://com.google.android.gsf.gservices/prefix from pid=10477, uid=10201 requires com.google.android.providers.gsf.permission.READ_GSERVICES, or grantUriPermission()
07-01 13:42:50.358 5611 5687 E DatabaseUtils: at android.content.ContentProvider.enforceReadPermissionInner(ContentProvider.java:639)
07-01 13:42:50.358 5611 5687 E DatabaseUtils: at android.content.ContentProvider$Transport.enforceReadPermission(ContentProvider.java:499)
07-01 13:42:50.358 5611 5687 E DatabaseUtils: at android.content.ContentProvider$Transport.query(ContentProvider.java:217)
07-01 13:42:50.358 5611 5687 E DatabaseUtils: at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:112)
07-01 13:42:50.358 5611 5687 E DatabaseUtils: at android.os.Binder.execTransact(Binder.java:565)
07-01 13:42:50.360 10477 10477 D AndroidRuntime: Shutting down VM
07-01 13:42:50.361 10477 10477 E AndroidRuntime: FATAL EXCEPTION: main
07-01 13:42:50.361 10477 10477 E AndroidRuntime: Process: com.android.vending, PID: 10477
07-01 13:42:50.361 10477 10477 E AndroidRuntime: java.lang.RuntimeException: Unable to create application com.google.android.finsky.application.impl.FinskyApplication: java.lang.SecurityException: Permission Denial: reading com.google.android.gsf.gservices.GservicesProvider uri content://com.google.android.gsf.gservices/prefix from pid=10477, uid=10201 requires com.google.android.providers.gsf.permission.READ_GSERVICES, or grantUriPermission()
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5492)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.ActivityThread.-wrap2(ActivityThread.java)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1562)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.os.Looper.loop(Looper.java:154)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6207)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:929)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:819)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: Caused by: java.lang.SecurityException: Permission Denial: reading com.google.android.gsf.gservices.GservicesProvider uri content://com.google.android.gsf.gservices/prefix from pid=10477, uid=10201 requires com.google.android.providers.gsf.permission.READ_GSERVICES, or grantUriPermission()
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1684)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:183)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:135)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.content.ContentProviderProxy.query(ContentProviderNative.java:421)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.content.ContentResolver.query(ContentResolver.java:534)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.content.ContentResolver.query(ContentResolver.java:475)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.c.g.b(SourceFile:140)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.c.g.c(SourceFile:40)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.c.g.a(SourceFile:29)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.play.utils.b.i.<init>(SourceFile:3)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.play.utils.b.a.a(SourceFile:5)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.finsky.application.impl.a.a(SourceFile:49)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.finsky.application.impl.a.df(SourceFile:2033)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at com.google.android.finsky.application.impl.FinskyApplication.onCreate(SourceFile:11)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1027)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5489)
07-01 13:42:50.361 10477 10477 E AndroidRuntime: ... 8 more
07-01 13:42:50.363 3704 6823 D AbnormalController: get commit = 2, crashApplicationInner,Google Play Store,com.android.vending,
Maybe it will give some insights. I tried to give the missing permission to the Play Store:
Code:
127|Y3:/sdcard/fix $ pm grant com.android.vending com.google.android.providers.gsf.permission.READ_GSERVICES
Operation not allowed: java.lang.SecurityException: Permission com.google.android.providers.gsf.permission.READ_GSERVICES is not a changeable permission type
but without any success.
Up
Did anyone manage to find a solution? Have tried everything in this thread including multiple factory resets...
Hope the solution is on time
Hello guys. Recently i bought this phone and suffered with the same problem. After go back to factory resetting 6times I figure out the problem. DONT UPDATE 咪咕阅读IN PLAY STORE. I guess this app should be embedded within the system level with bad configuration. It automatically pop up in update list in play store even you don't install it in your phone. Once you update this app, every thing crashed. So stop auto updating first. And never update this app .
Thanks you for the tips about using AppStore to install .apk.
You can download APKUpdater to get the updates your phone is elligible to !!!
POPO_O said:
Hello guys. Recently i bought this phone and suffered with the same problem. After go back to factory resetting 6times I figure out the problem. DONT UPDATE 咪咕阅读IN PLAY STORE. I guess this app should be embedded within the system level with bad configuration. It automatically pop up in update list in play store even you don't install it in your phone. Once you update this app, every thing crashed. So stop auto updating first. And never update this app .
Click to expand...
Click to collapse
I want to ask you: After you do not update 咪 咕 阅读, will the chplay stop being active again? Would not it crash again? thanks
I may be wrong, but the Yotaphone 3 is a Chinese-version phone. It cannot run Google Play natively. All the hacked versions are volatile (from what I have read). I made the error of buying the Y3 from a store on Ali Express -- after they said it was the English/Google International version. When in fact, it wasn't. I recommend the Hisense line of dual-screen phones; or the Yota 2. For now, the newer Yotaphones are best used if you are Chinese and from China.
Hey forum, long time no see...
I have came back facing a problem with my OnePlus 5 running stock rom with ROOT.
I had to turn it off to replace the screen-protector but turning it back on was no dice.
A bootloop is happening where I see the screen to enter my PIN/password for 1 second after that the OS only reboots.
That means that I see the two dots and the white circle in red and not the boot-loader warning.
I have installed the latest TWRP on so I cleared dalvik and cache but that did not work either
I thought it might be magisk but uninstalling and/or reinstalling it did not fix the problem.
I have managed to authorize adb using TWEP recovery and pulled the logcat during the boot.
I hope the someone can help me debug this, there is some data in apps that need te recovert before doing a full wipe.
Code:
--------- beginning of crash
07-01 21:32:38.393 3572 3572 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 3572 (init), pid 3572 (init)
07-01 21:32:38.434 3572 3572 F libc : crash_dump helper failed to exec
07-01 21:32:38.461 1493 1493 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:32:38.461 1493 1493 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:32:38.580 3222 3222 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:32:38.580 3222 3222 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 3222
07-01 21:32:38.580 3222 3222 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:32:53.657 5246 5246 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 5246 (init), pid 5246 (init)
07-01 21:32:53.681 5246 5246 F libc : crash_dump helper failed to exec
07-01 21:32:53.724 3934 3934 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:32:53.724 3934 3934 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:08.878 6891 6891 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 6891 (init), pid 6891 (init)
07-01 21:33:08.940 6891 6891 F libc : crash_dump helper failed to exec
07-01 21:33:08.957 5597 5597 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:08.957 5597 5597 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:24.095 8546 8546 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 8546 (init), pid 8546 (init)
07-01 21:33:24.130 8546 8546 F libc : crash_dump helper failed to exec
07-01 21:33:24.157 7270 7270 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:24.157 7270 7270 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:24.291 8249 8249 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:33:24.291 8249 8249 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 8249
07-01 21:33:24.291 8249 8249 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:33:39.289 10285 10285 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 10285 (init), pid 10285 (init)
07-01 21:33:39.341 10285 10285 F libc : crash_dump helper failed to exec
07-01 21:33:39.382 8917 8917 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:39.382 8917 8917 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:54.474 11959 11959 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 11959 (init), pid 11959 (init)
07-01 21:33:54.524 11959 11959 F libc : crash_dump helper failed to exec
07-01 21:33:54.551 10651 10651 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:54.551 10651 10651 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:54.662 11661 11661 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:33:54.662 11661 11661 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 11661
07-01 21:33:54.662 11661 11661 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:34:09.646 13627 13627 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 13627 (init), pid 13627 (init)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:34:09.697 12319 12319 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:34:09.698 13627 13627 F libc : crash_dump helper failed to exe
c
Hello, I have done AmazTimer app for amazfit devices, and I am adding support for full android watches, but I don't have any, so I need as much people as possible to test it on android watches. Minimum API is 21 (Android 5.0)
Please check if heart rate, reps counter and all features are working fine. If you have any force closes let me know the steps to have the crash and send logs too.
You can download latest CI build here. You can also use latest stable version, but some things might not work because they were not adapted for non-amazfit devices.
it installed at least, but it crashes when it tries to open, here's the logcat output:
Code:
12-20 21:26:30.553 876 4848 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=me.micrusa.amaztimer/.MainActivity} from uid 1000 on display 0
12-20 21:26:30.565 876 4848 V WindowManager: Set focused app to: AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} old focus=AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}} moveFocusNow=true
12-20 21:26:30.566 876 4848 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} target=AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}}
12-20 21:26:30.573 876 4848 V WindowManager: Changing focus from Window{199bdcc u0 com.mediatek.watchapp/com.mediatek.watchapp.MainActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:4297 com.android.server.am.ActivityManagerService.setFocusedActivityLocked:3212 com.android.server.am.ActivityStarter.startActivityUnchecked:1395 com.android.server.am.ActivityStarter.startActivityLocked:593
12-20 21:26:30.573 876 4848 D WindowManager: Input focus has changed to null
12-20 21:26:30.600 876 4842 W Process : zygoteSendArgsAndGetResult: start read result...
12-20 21:26:30.610 876 4842 W Process : -21009310ms so far, end read result
12-20 21:26:30.610 876 4842 I ActivityManager: Start proc 5844:me.micrusa.amaztimer/u0a112 for activity me.micrusa.amaztimer/.MainActivity
12-20 21:26:30.635 876 919 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.702 876 8385 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.709 876 8385 D WindowManager: notifyActivityDrawnForKeyguard: waiting=false Callers=com.android.server.wm.WindowSurfacePlacer.handleAppTransitionReadyLocked:1249 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacementInner:341 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacementLoop:239 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacement:187 com.android.server.wm.WindowManagerService.executeAppTransition:4452
12-20 21:26:30.709 876 8385 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.725 876 919 D DisplayManagerService: Delivering display event: displayId=0, event=2
12-20 21:26:30.768 876 1722 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.937 876 1582 V SettingsProvider: packageValueForCallResult, name = null, value : Bundle[{[email protected], value=null, _generation_index=2, _generation=3}]
12-20 21:26:31.167 876 918 D BluetoothManagerService: Message: 20
12-20 21:26:31.170 876 918 D BluetoothManagerService: Added callback: [email protected]:true
12-20 21:26:31.212 876 1091 V AlarmManager: APP set with listener(SupplicantWifiScannerImpl Scan Timeout) : type=2 triggerAtTime=37376428 win=-1 tElapsed=37376428 maxElapsed=37387678 interval=0 flags=0x8
12-20 21:26:31.337 5844 5844 E AndroidRuntime: FATAL EXCEPTION: main
12-20 21:26:31.337 5844 5844 E AndroidRuntime: Process: me.micrusa.amaztimer, PID: 5844
12-20 21:26:31.337 5844 5844 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{me.micrusa.amaztimer/me.micrusa.amaztimer.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'android.graphics.drawable.Drawable android.content.Context.getDrawable(int)' on a null object reference
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2768)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2833)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.-wrap12(ActivityThread.java)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1561)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:110)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.os.Looper.loop(Looper.java:203)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6337)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1084)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:945)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.graphics.drawable.Drawable android.content.Context.getDrawable(int)' on a null object reference
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at c.a.a.i.c.e.a.b(:1)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at c.a.a.i.c.e.a.<init>()
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at me.micrusa.amaztimer.MainActivity.onCreate(:1)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:6685)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2721)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: ... 9 more
12-20 21:26:31.342 876 4846 W ActivityManager: Force finishing activity me.micrusa.amaztimer/.MainActivity
12-20 21:26:31.343 876 4846 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:31.347 876 4846 V WindowManager: Set focused app to: AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}} old focus=AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} moveFocusNow=true
12-20 21:26:31.347 876 4846 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:31.374 876 4847 D DisplayManagerService: Display listener for pid 5844 died.
12-20 21:26:31.377 876 4847 I ActivityManager: Process me.micrusa.amaztimer (pid 5844) has died
12-20 21:26:31.377 876 4847 D ActivityManager: cleanUpApplicationRecord -- 5844
Noidremained said:
it installed at least, but it crashes when it tries to open, here's the logcat output:
Code:
12-20 21:26:30.553 876 4848 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=me.micrusa.amaztimer/.MainActivity} from uid 1000 on display 0
12-20 21:26:30.565 876 4848 V WindowManager: Set focused app to: AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} old focus=AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}} moveFocusNow=true
12-20 21:26:30.566 876 4848 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} target=AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}}
12-20 21:26:30.573 876 4848 V WindowManager: Changing focus from Window{199bdcc u0 com.mediatek.watchapp/com.mediatek.watchapp.MainActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:4297 com.android.server.am.ActivityManagerService.setFocusedActivityLocked:3212 com.android.server.am.ActivityStarter.startActivityUnchecked:1395 com.android.server.am.ActivityStarter.startActivityLocked:593
12-20 21:26:30.573 876 4848 D WindowManager: Input focus has changed to null
12-20 21:26:30.600 876 4842 W Process : zygoteSendArgsAndGetResult: start read result...
12-20 21:26:30.610 876 4842 W Process : -21009310ms so far, end read result
12-20 21:26:30.610 876 4842 I ActivityManager: Start proc 5844:me.micrusa.amaztimer/u0a112 for activity me.micrusa.amaztimer/.MainActivity
12-20 21:26:30.635 876 919 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.702 876 8385 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.709 876 8385 D WindowManager: notifyActivityDrawnForKeyguard: waiting=false Callers=com.android.server.wm.WindowSurfacePlacer.handleAppTransitionReadyLocked:1249 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacementInner:341 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacementLoop:239 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacement:187 com.android.server.wm.WindowManagerService.executeAppTransition:4452
12-20 21:26:30.709 876 8385 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.725 876 919 D DisplayManagerService: Delivering display event: displayId=0, event=2
12-20 21:26:30.768 876 1722 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:30.937 876 1582 V SettingsProvider: packageValueForCallResult, name = null, value : Bundle[{[email protected], value=null, _generation_index=2, _generation=3}]
12-20 21:26:31.167 876 918 D BluetoothManagerService: Message: 20
12-20 21:26:31.170 876 918 D BluetoothManagerService: Added callback: [email protected]:true
12-20 21:26:31.212 876 1091 V AlarmManager: APP set with listener(SupplicantWifiScannerImpl Scan Timeout) : type=2 triggerAtTime=37376428 win=-1 tElapsed=37376428 maxElapsed=37387678 interval=0 flags=0x8
12-20 21:26:31.337 5844 5844 E AndroidRuntime: FATAL EXCEPTION: main
12-20 21:26:31.337 5844 5844 E AndroidRuntime: Process: me.micrusa.amaztimer, PID: 5844
12-20 21:26:31.337 5844 5844 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{me.micrusa.amaztimer/me.micrusa.amaztimer.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'android.graphics.drawable.Drawable android.content.Context.getDrawable(int)' on a null object reference
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2768)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2833)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.-wrap12(ActivityThread.java)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1561)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:110)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.os.Looper.loop(Looper.java:203)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6337)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1084)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:945)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.graphics.drawable.Drawable android.content.Context.getDrawable(int)' on a null object reference
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at c.a.a.i.c.e.a.b(:1)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at c.a.a.i.c.e.a.<init>()
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at me.micrusa.amaztimer.MainActivity.onCreate(:1)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:6685)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2721)
12-20 21:26:31.337 5844 5844 E AndroidRuntime: ... 9 more
12-20 21:26:31.342 876 4846 W ActivityManager: Force finishing activity me.micrusa.amaztimer/.MainActivity
12-20 21:26:31.343 876 4846 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:31.347 876 4846 V WindowManager: Set focused app to: AppWindowToken{b026527 token=Token{68d0a41 ActivityRecord{17f5d28 u0 com.mediatek.watchapp/.MainActivity t11408}}} old focus=AppWindowToken{8254c1d token=Token{157fec7 ActivityRecord{aded806 u0 me.micrusa.amaztimer/.MainActivity t11421}}} moveFocusNow=true
12-20 21:26:31.347 876 4846 V WindowManager: findFocusedWindow: No focusable windows.
12-20 21:26:31.374 876 4847 D DisplayManagerService: Display listener for pid 5844 died.
12-20 21:26:31.377 876 4847 I ActivityManager: Process me.micrusa.amaztimer (pid 5844) has died
12-20 21:26:31.377 876 4847 D ActivityManager: cleanUpApplicationRecord -- 5844
Click to expand...
Click to collapse
Thanks for testing, can you try with the build I just pushed?
Still the same, crashes immediately. Not working on bluestacks either, maybe you should get it to work on emulators first?