Help needed testing Live Wallpaper - Droid Incredible Q&A, Help & Troubleshooting

Hi,
I've recently released my Advanced Map Live Wallpaper to the Market, but apparently it's force closing on the Incredible running 2.1. Is there anyone here who would be willing to run the app connected to DDMS and paste in the stack trace when it crashes?
More info on this thread:
http://forum.xda-developers.com/showthread.php?t=700786
Many thanks,
Dave.

Code:
06-13 13:26:46.429: ERROR/Database(2706): Leak found
06-13 13:26:46.429: ERROR/Database(2706): java.lang.IllegalStateException: /data/data/com.androidgamer.osmlw/databases/osmaptilefscache_db SQLiteDatabase created and never closed
06-13 13:26:46.429: ERROR/Database(2706): at android.database.sqlite.SQLiteDatabase.<init>(SQLiteDatabase.java:1785)
06-13 13:26:46.429: ERROR/Database(2706): at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:805)
06-13 13:26:46.429: ERROR/Database(2706): at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:827)
06-13 13:26:46.429: ERROR/Database(2706): at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:820)
06-13 13:26:46.429: ERROR/Database(2706): at android.app.ApplicationContext.openOrCreateDatabase(ApplicationContext.java:483)
06-13 13:26:46.429: ERROR/Database(2706): at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:193)
06-13 13:26:46.429: ERROR/Database(2706): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:98)
06-13 13:26:46.429: ERROR/Database(2706): at org.andnav.osm.views.util.OpenStreetMapTileFilesystemProvider$OpenStreetMapTileFilesystemProviderDataBase.<init>(OpenStreetMapTileFilesystemProvider.java:733)
06-13 13:26:46.429: ERROR/Database(2706): at org.andnav.osm.views.util.OpenStreetMapTileFilesystemProvider.<init>(OpenStreetMapTileFilesystemProvider.java:104)
06-13 13:26:46.429: ERROR/Database(2706): at org.andnav.osm.views.util.OpenStreetMapTileProvider.<init>(OpenStreetMapTileProvider.java:47)
06-13 13:26:46.429: ERROR/Database(2706): at org.andnav.osm.views.OpenStreetMapView.<init>(OpenStreetMapView.java:87)
06-13 13:26:46.429: ERROR/Database(2706): at com.androidgamer.osmlw.MainMapWallpaper.onCreateEngine(MainMapWallpaper.java:51)
06-13 13:26:46.429: ERROR/Database(2706): at android.service.wallpaper.WallpaperService$IWallpaperEngineWrapper.executeMessage(WallpaperService.java:784)
06-13 13:26:46.429: ERROR/Database(2706): at com.android.internal.os.HandlerCaller$MyHandler.handleMessage(HandlerCaller.java:45)
06-13 13:26:46.429: ERROR/Database(2706): at android.os.Handler.dispatchMessage(Handler.java:99)
06-13 13:26:46.429: ERROR/Database(2706): at android.os.Looper.loop(Looper.java:123)
06-13 13:26:46.429: ERROR/Database(2706): at android.app.ActivityThread.main(ActivityThread.java:4595)
06-13 13:26:46.429: ERROR/Database(2706): at java.lang.reflect.Method.invokeNative(Native Method)
06-13 13:26:46.429: ERROR/Database(2706): at java.lang.reflect.Method.invoke(Method.java:521)
06-13 13:26:46.429: ERROR/Database(2706): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
06-13 13:26:46.429: ERROR/Database(2706): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
06-13 13:26:46.429: ERROR/Database(2706): at dalvik.system.NativeStart.main(Native Method)

Ahh... forgot to close a database. Slightly concerned that it only seems to crash the Incredible, though.
http://maps.androidgamer.org/wallpaper/debug/am201006131844.apk
Huge thanks for that. Would you mind testing this fixed version and see if it works properly? Fingers crossed etc.

Did not crash but all I see is a light blue screen at top and some small grey squares at the bottom.

Hi Hatman,
If you're outside the UK you'll need to change the default map away from Ordnance Survey, as it only covers England etc.

Oh did not know that....so how do I change the default map?

Related

NFC tag emulation for android device

I am having a problems with emulating FeliCa tag with ACS122U in combination with S3.
I am emulating a Type-3 NDEF tag, phone NFC service successfully reads the NDEF Message from the emulated card,
starts my own application, and finally, when inside of "onNewIntent" handling for the ACTION_NDEF_DISCOVERED intent,
I see that the tag has following tech listed:
android.nfc.tech.NfcF,
android.nfc.tech.Ndef,
I get the NfcF tech, check if tag is still connected, and call transcieve() to invoke a POLLING command on the tag,
what happens is, I get DeadObjectException, and transcieve call fails.
Here is the stack trace
What can I try to make the transceiver work?
06-13 21:00:47.558: I/System.out(16727): NDEF discovered in onNewIntent, enabling foreground dispatch
06-13 21:00:47.563: I/System.out(16727): android.nfc.tech.NfcF
06-13 21:00:47.568: I/System.out(16727): android.nfc.tech.Ndef
06-13 21:00:48.128: E/NFC(16727): NFC service dead
06-13 21:00:48.128: E/NFC(16727): android.os.DeadObjectException
06-13 21:00:48.128: E/NFC(16727): at android.os.BinderProxy.transact(Native Method)
06-13 21:00:48.128: E/NFC(16727): at android.nfc.INfcTag$Stub$Proxy.transceive(INfcTag.java:405)
06-13 21:00:48.128: E/NFC(16727): at android.nfc.tech.BasicTagTechnology.transceive(BasicTagTechnology.java:146)
06-13 21:00:48.128: E/NFC(16727): at android.nfc.tech.NfcF.transceive(NfcF.java:119)
06-13 21:00:48.128: E/NFC(16727): at com.MyApp.MainActivity.onNewIntent(MainActivity.java:244)
06-13 21:00:48.128: E/NFC(16727): at android.app.Instrumentation.callActivityOnNewIntent(Instrumentation.java:1157)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread.deliverNewIntents(ActivityThread.java:2193)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread.performNewIntents(ActivityThread.java:2206)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread.handleNewIntent(ActivityThread.java:2215)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread.access$1400(ActivityThread.java:140)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1298)
06-13 21:00:48.128: E/NFC(16727): at android.os.Handler.dispatchMessage(Handler.java:99)
06-13 21:00:48.128: E/NFC(16727): at android.os.Looper.loop(Looper.java:137)
06-13 21:00:48.128: E/NFC(16727): at android.app.ActivityThread.main(ActivityThread.java:4898)
06-13 21:00:48.128: E/NFC(16727): at java.lang.reflect.Method.invokeNative(Native Method)
06-13 21:00:48.128: E/NFC(16727): at java.lang.reflect.Method.invoke(Method.java:511)
06-13 21:00:48.128: E/NFC(16727): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
06-13 21:00:48.128: E/NFC(16727): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
06-13 21:00:48.128: E/NFC(16727): at dalvik.system.NativeStart.main(Native Method)

[ROM][6.0.1] Xperia X v1.0

This is my Xperia X Modded Rom. It is no full Xperia X Rom, i integrated everything what i could from Xperia X Rom and some specials into Stock .253 Rom.
Base: Stock 32.2.A.0.253 (E6553) Kernel: AndroPlusKernel v31
Features:
X System UI (with Android N-Style)
X Lockscreen
X Settings (please read second post)
X Smart Cleaner
X Display Processing
X Icons
X Themes
X Wallpaper
X Bootanimation
X Sounds, Notifications, Ringtones
X Camera libs (Camera App not yet compatible with 253)
X Audio Processing
New QC Audio Processing from SD820 (Amazing Sound Improvment)
Android N Wallpaper
All Stock features from Z Line
Deodexed
Removed OTA-Update function
Xperia X Apps included:
Calendar
Calculator
Clock
Conversations
Phonebook
Photoslideshow
PhotoEditor
skin-core
skin-picker
StylePortrait
Support
SynchHub
WorldClockWidget
Bugs:
One FC Message when Device Booted complete. Download Fix
If you have problems with ChromeCostumization FC message, just delete the folder "/system/vendor/app/ChromeCostumization"
Your bootloader must be unlocked and TWRP recovery must be integrated in the Kernel you are using to access all Partitions.
I AM NOT RESPONSIBLE FOR ANY DAMAGES THAT MAY CAUSE YOUR DEVICE
Installation:
-Unpack the downloaded ZIP and place the Folder in your Devices TWRP Backup Folder (sdcard/TWRP/Backups/<your-device-id>/)
-reboot your device into TWRP and make a Backup of your current System
-clear data cache/dalvik (factory reset)
-restore the Xperia X Backup (make sure you restore all three partitions "boot,system,oem")
-restart your device and setup (first start take a few minutes)
Download: Xperia X v1.0 on G-Drive
Xperia X v1.0 on AFH
Kernels for Single SIM:
Stock with DM-Verity, Sony RIC, TWRP and DRM Fix
Zach's Kernel Playground for Z4/Z3+
AndroPlusKernel v31
OM5Z KernelYou can use it after flashing the Rom but you cant access OEM Partition with this Kernel
Changing/Update the Kernel on a System with Systemless root/xposed requires an immediately flash of betaSU/systemless xposed framework after flashing the new kernel. Otherwise you will get a bootloop.
Dual Sim patch
Kernels for Dual-SIM:
Stock with DM-Verity, Sony RIC, TWRP and DRM Fix(DSDS)
Zach's Kernel Playground for Z4/Z3+(DSDS)
OM5Z Kernel (DSDS)You can use it after flashing the Rom but you cant access OEM Partition with this Kernel
Changing/Update the Kernel on a System with Systemless root/xposed requires an immediately flash of betaSU/systemless xposed framework after flashing the new kernel. Otherwise you will get a bootloop.
Pictures: Xperia X v1.0 P.s.: My StatusBar Icons are from FSBI.
I think i got the X Settings complete to work. Please try to flash the zip from this post and report back if it works for you. Here it works fine now allways when it didnt before. The only limitation is that you dont have the settings for Dt2w in there, but you can use every Kernel App to control this.
Just to show you how it will look i made a few screenshoots of X Settings and Smartcleaner.
Just two questions:
-Do the USB OTG work? I read it doesn't with most of the Xperia X SystemUI ports;
-The statusbar icons in the screenshots are not included, right? I mean, you applied them, the ROM has the stock ones?
Btw thanks for your work, giving a try later.
ale29-09 said:
Just two questions:
-Do the USB OTG work? I read it doesn't with most of the Xperia X SystemUI ports;
-The statusbar icons in the screenshots are not included, right? I mean, you applied them, the ROM has the stock ones?
Btw thanks for your work, giving a try later.
Click to expand...
Click to collapse
USB OTG is working, sometimes you just have to restart the device with usb stick connected to get Android to recognize the Stick but that was allways with all devices i used this way. The StatusBar Icons from the Screenshoots are not in the Rom, because of this i wrote where i have them from
Does smart cleaner works fine ? I heard its unstable for working Z5 users and failed to get this working in Z3+ before.
EDIT: And how did you get " New QC Audio Processing from SD820 (Amazing Sound Improvement) " ? Could you share it please ?
Thanks
GryTEcHoG said:
Does smart cleaner works fine ? I heard its unstable for working Z5 users and failed to get this working in Z3+ before.
EDIT: And how did you get " New QC Audio Processing from SD820 (Amazing Sound Improvement) " ? Could you share it please ?
Thanks
Click to expand...
Click to collapse
This is no port from Z5 i made nearly everything by my own so you cant expect the same issues like Z5 Users have. I´m using the Rom for over three weeks now and its stable and found no bugs till now.
Edit: I just have to say this... The Xperia X Rom for Z5 is totaly buggy, it would have been stupid to take this as a source for anything.
Trilliard said:
This is no port from Z5 i made nearly everything by my own so you cant expect the same issues like Z5 Users have. I´m using the Rom for over three weeks now and its stable and found no bugs till now.
Edit: I just have to say this... The Xperia X Rom for Z5 is totaly buggy, it would have been stupid to take this as a source for anything.
Click to expand...
Click to collapse
And how did you get " New QC Audio Processing from SD820 (Amazing Sound Improvement) " ? Could you share it please ?
EDIT: Did you debloat the rom also ?
I dont know how, but somehow my camera stopped working. I hope it´s just something on my device and not in the Rom Backup.
Edit: It was just my device, clean install solved it. Somehow my data corrupted my camera ^^
Edit2: Good that i made a clean install hehe. Found a small bug where it looks like i accidentially deleted a file. But its just a small zip what you have to flash to fix this org.codeaurora FC message. Just flash the file from this post.
i want this rom for xperia z3+ dual
can make this rom work on Xperia z3+ Dual (e6533) .. please
If you already downloaded my Fix and it didnt work, sorry for this made a mistake while packing the files. Download it again i uploaded a correct packed zip.
YES it does not bootloop. It just takes too much time the first time like 20 min or something...
This annoying error on chrome: unfortunately com.android.partnerbrowsercustomization.chromehomepage has stopped
Oveana said:
This annoying error on chrome: unfortunately com.android.partnerbrowsercustomization.chromehomepage has stopped
Click to expand...
Click to collapse
No problem here using chrome. Not after using the Rom for three weeks and not after clean installation. But i use chrome dev, perhaps you should try chrome beta or chrome dev.
Trilliard said:
No problem here using chrome. Not after using the Rom for three weeks and not after clean installation. But i use chrome dev, perhaps you should try chrome beta or chrome dev.
Click to expand...
Click to collapse
I did all those and have the same problem. Went back to Slimrom
Here too, added AndroidFileHost Mirror to the OP
Oveana said:
This annoying error on chrome: unfortunately com.android.partnerbrowsercustomization.chromehomepage has stopped
Click to expand...
Click to collapse
Same here.
Also, is it possible to restore DRM functions without keys on this ROM?
mr_verystock said:
Same here.
Also, is it possible to restore DRM functions without keys on this ROM?
Click to expand...
Click to collapse
I cant reproduce this, can you send me a logcat?
DRM Fix is in the Kernel which came with the Rom. This doesnt depend on the rom.
08-22 17:28:19.908 17687 17687 E AndroidRuntime: java.lang.RuntimeException: Unable to get provider com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5265)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4847)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4787)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.access$1600(ActivityThread.java:154)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1452)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Looper.loop(Looper.java:234)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5526)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5250)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 10 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.io.IOException: No original dex files found for dex location /system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFileNative(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFile(DexFile.java:295)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:80)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:59)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.<init>(DexPathList.java:120)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:57)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.getClassLoader(LoadedApk.java:380)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:572)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4779)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 8 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.lang.ClassNotFoundException: com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.Class.classForName(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 12 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
---------- Post added at 01:32 AM ---------- Previous post was at 01:32 AM ----------
08-22 17:28:19.908 17687 17687 E AndroidRuntime: java.lang.RuntimeException: Unable to get provider com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5265)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4847)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4787)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.access$1600(ActivityThread.java:154)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1452)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Looper.loop(Looper.java:234)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5526)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5250)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 10 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.io.IOException: No original dex files found for dex location /system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFileNative(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFile(DexFile.java:295)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:80)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:59)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.<init>(DexPathList.java:120)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:57)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.getClassLoader(LoadedApk.java:380)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:572)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4779)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 8 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.lang.ClassNotFoundException: com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.Class.classForName(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 12 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
mr_verystock said:
08-22 17:28:19.908 17687 17687 E AndroidRuntime: java.lang.RuntimeException: Unable to get provider com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5265)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4847)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4787)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.access$1600(ActivityThread.java:154)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1452)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Looper.loop(Looper.java:234)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5526)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5250)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 10 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.io.IOException: No original dex files found for dex location /system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFileNative(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFile(DexFile.java:295)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:80)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:59)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.<init>(DexPathList.java:120)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:57)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.getClassLoader(LoadedApk.java:380)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:572)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4779)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 8 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.lang.ClassNotFoundException: com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.Class.classForName(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 12 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
---------- Post added at 01:32 AM ---------- Previous post was at 01:32 AM ----------
08-22 17:28:19.908 17687 17687 E AndroidRuntime: java.lang.RuntimeException: Unable to get provider com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5265)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4847)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4787)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.access$1600(ActivityThread.java:154)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1452)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.os.Looper.loop(Looper.java:234)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5526)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider" on path: DexPathList[[zip file "/system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk"],nativeLibraryDirectories=[/system/vendor/app/ChromeCustomizations/lib/arm64, /vendor/lib64, /system/lib64]]
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5250)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 10 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.io.IOException: No original dex files found for dex location /system/vendor/app/ChromeCustomizations/ChromeCustomizations.apk
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFileNative(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.openDexFile(DexFile.java:295)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:80)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:59)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.DexPathList.<init>(DexPathList.java:120)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:57)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.getClassLoader(LoadedApk.java:380)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:572)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4779)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 8 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Suppressed: java.lang.ClassNotFoundException: com.android.partnerbrowsercustomizations.chromeHomepage.PartnerHomepageProvider
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.Class.classForName(Native Method)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
08-22 17:28:19.908 17687 17687 E AndroidRuntime: ... 12 more
08-22 17:28:19.908 17687 17687 E AndroidRuntime: Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
Click to expand...
Click to collapse
This is really wired, the files are there (in the Rom) are you sure you didnt delete something? Tried a clean install? I am still not able to reproduce this.
I didn't delete anything. And I have tried twice to install a new ROM, but no luck.

soft reboots.?? logcat and dmseg attached.. HELP

am getting a soft reboot while not using phone when its sleeping screen off.??????
stock rom h811 20R imperium kernel. 6.1 MM debloated.
here are the logs.
raptorddd said:
am getting a soft reboot while not using phone when its sleeping screen off.??????
stock rom h811 20R imperium kernel. 6.1 MM debloated.
here are the logs.
Click to expand...
Click to collapse
Haven't had the time to look into your logs but could your ensure that automatic ROM updates are disabled in the settings?
Sent from my LG-H815 using XDA Labs
steadfasterX said:
Haven't had the time to look into your logs but could your ensure that automatic ROM updates are disabled in the settings?
Sent from my LG-H815 using XDA Labs
Click to expand...
Click to collapse
will do that .. but now am on genisys rom.. this is driving me nuts. am starting to belive that its an app i install.. i tried different kernels. went to sleep at 4 am yesterday. its driving me nuts.
raptorddd said:
will do that .. but now am on genisys rom.. this is driving me nuts. am starting to belive that its an app i install.. i tried different kernels. went to sleep at 4 am yesterday. its driving me nuts.
Click to expand...
Click to collapse
Ok the error is here:
Code:
AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
02-06 12:17:30.743 6366 6366 E AndroidRuntime: java.lang.RuntimeException: Error receiving broadcast Intent { act=com.android.server.device_idle.STEP_IDLE_STATE flg=0x10 } in [email protected]
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:935)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:739)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:95)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:300)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:185)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:730)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:620)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: Caused by: java.lang.IllegalArgumentException: provider doesn't exist: fused
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:1749)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:1720)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:918)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:841)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.DeviceIdleController.stepIdleStateLocked(DeviceIdleController.java:1339)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.DeviceIdleController$1.onReceive(DeviceIdleController.java:248)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:925)
My first guess was that it is kingroot because I saw errors about it before but in the above output I saw Xposed so please try without installing xposed!
Sent from my LG-H815 using XDA Labs
steadfasterX said:
Ok the error is here:
Code:
AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
02-06 12:17:30.743 6366 6366 E AndroidRuntime: java.lang.RuntimeException: Error receiving broadcast Intent { act=com.android.server.device_idle.STEP_IDLE_STATE flg=0x10 } in [email protected]
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:935)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:739)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:95)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:300)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:185)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:730)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:620)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: Caused by: java.lang.IllegalArgumentException: provider doesn't exist: fused
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:1749)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:1720)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:918)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:841)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.DeviceIdleController.stepIdleStateLocked(DeviceIdleController.java:1339)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at com.android.server.DeviceIdleController$1.onReceive(DeviceIdleController.java:248)
02-06 12:17:30.743 6366 6366 E AndroidRuntime: at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:925)
My first guess was that it is kingroot because I saw errors about it before but in the above output I saw Xposed so please try without installing xposed!
Sent from my LG-H815 using XDA Labs
Click to expand...
Click to collapse
hi i think i found the cause.. would you try to recreate.?? i was using this launcher.. got reboots. wnet back to LG 5uix home launcher and no reboots. tried nova launcher and no reboots.. i have used this launcher before i dont know why.. am getting reboot.. and with other i dont.. maybe app related..
https://play.google.com/store/apps/details?id=com.eaion.power.launcher&hl=en
raptorddd said:
My first guess was that it is kingroot because I saw errors about it before but in the above output I saw Xposed so please try without installing xposed!
Sent from my LG-H815 using XDA Labs
hi i think i found the cause.. would you try to recreate.?? i was using this launcher.. got reboots. wnet back to LG 5uix home launcher and no reboots. tried nova launcher and no reboots.. i have used this launcher before i dont know why.. am getting reboot.. and with other i dont.. maybe app related..
https://play.google.com/store/apps/details?id=com.eaion.power.launcher&hl=en
Click to expand...
Click to collapse
Unfortunately I have no time to recreate this for you but if it works for you then everything is fine
Sent from my LG-H815 using XDA Labs

How to add a weather provider in LOS 15?

In LOS 15, the whether providers from https://download.lineageos.org/extras no longer work. The widget settings for cLock crash immediately when I start them, the syslog indicates that something is simply missing. Instead, under Apps/Default Apps there is now an empty section "weather" where you are instructed to install a whether provider from your app store, but the search for "lineageosweatherprovider" returns no results, neither at google play nor f-droid, and those from https://download.lineageos.org/extras don't work either.
Is this work in progress? LOS 15 has been out for a while.
yahya69 said:
In LOS 15, the whether providers from https://download.lineageos.org/extras no longer work. The widget settings for cLock crash immediately when I start them, the syslog indicates that something is simply missing. Instead, under Apps/Default Apps there is now an empty section "weather" where you are instructed to install a whether provider from your app store, but the search for "lineageosweatherprovider" returns no results, neither at google play nor f-droid, and those from https://download.lineageos.org/extras don't work either.
Is this work in progress? LOS 15 has been out for a while.
Click to expand...
Click to collapse
Yes, it's wip and there are unofficial provider apps in bullhead thread. Don't expect they must work on other devices.
yahya69 said:
In LOS 15, the whether providers from https://download.lineageos.org/extras no longer work...
Click to expand...
Click to collapse
kurtn said:
Yes, it's wip and there are unofficial provider apps in bullhead thread. Don't expect they must work on other devices.
Click to expand...
Click to collapse
One of the Official Lineage Developers had put together some Unofficial LineageOS Weather Provider Apps for Oreo and provided it on the following link until the Official ones are released.
https://androidfilehost.com/?w=files&flid=243785
I can't state for certain that they work since I'm not currently using the LineageOS 15.1 firmware but, I haven't seen anyone stating otherwise.
Good Luck!
~~~~~~~~~~~~~~~
I DO NOT provide support via PM unless asked/requested by myself. PLEASE keep it in the threads where everyone can share.
Thanks! Those install. But I wonder what I have to do to get the weather forecast actually show up somewhere.
The cLock widget settings no longer work. cLock crashes immediately when I try to open the widget settings (see below), so what is the weather provider supposed to actually do for me?
04-28 09:05:57.951 1040 15401 I ActivityManager: START u0 {cmp=org.lineageos.lockclock/.preference.Preferences} from uid 10053
04-28 09:05:57.957 17271 17271 E AndroidRuntime: FATAL EXCEPTION: main
04-28 09:05:57.957 17271 17271 E AndroidRuntime: Process: com.android.deskclock, PID: 17271
04-28 09:05:57.957 17271 17271 E AndroidRuntime: android.content.ActivityNotFoundException: Unable to find explicit activity class {org.lineageos.lockclock/org.lineageos.lockclock.preference.Preferences}; have you declared this activity in your AndroidManifest.xml?
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1933)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java:1616)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:4487)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.BaseFragmentActivityApi16.startActivityForResult(BaseFragmentActivityApi16.java:54)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.startActivityForResult(Unknown Source:0)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:4445)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:725)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivity(Activity.java:4806)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivity(Activity.java:4774)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.actionbarmenu.WidgetMenuItemController.onOptionsItemSelected(WidgetMenuItemController.java:70)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.actionbarmenu.OptionsMenuManager.onOptionsItemSelected(OptionsMenuManager.java:80)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.DeskClock.onOptionsItemSelected(DeskClock.java:389)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.onMenuItemSelected(Activity.java:3450)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.onMenuItemSelected(FragmentActivity.java:373)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.app.AppCompatActivity.onMenuItemSelected(AppCompatActivity.java:195)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:108)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:108)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.app.ToolbarActionBar$2.onMenuItemClick(ToolbarActionBar.java:63)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.Toolbar$1.onMenuItemClick(Toolbar.java:202)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.ActionMenuView$MenuBuilderCallback.onMenuItemSelected(ActionMenuView.java:780)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:822)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:171)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:973)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuPopup.onItemClick(MenuPopup.java:127)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java:318)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java:1158)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java:3127)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.onTouchUp(AbsListView.java:4054)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.onTouchEvent(AbsListView.java:3813)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.ListViewCompat.onTouchEvent(ListViewCompat.java:124)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.View.dispatchTouchEvent(View.java:11776)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2962)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2643)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2968)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2657)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2968)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2657)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.PopupWindow$PopupDecorView.dispatchTouchEvent(PopupWindow.java:2406)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.View.dispatchPointerEvent(View.java:12015)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$ViewPostImeInputStage.processPointerEvent(ViewRootImpl.java:4795)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$ViewPostImeInputStage.onProcess(ViewRootImpl.java:4609)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:4200)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:4166)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$AsyncInputStage.forward(ViewRootImpl.java:4293)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:4174)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$AsyncInputStage.apply(ViewRootImpl.java:4350)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:4200)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:4166)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:4174)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:6661)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:6635)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:6596)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:6764)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:186)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.MessageQueue.nativePollOnce(Native Method)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.MessageQueue.next(MessageQueue.java:325)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.Looper.loop(Looper.java:142)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6494)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:440)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)
04-28 09:05:57.962 1040 2975 W ActivityManager: Force finishing activity com.android.deskclock/.DeskClock
04-28 09:05:57.974 1040 1104 I ActivityManager: Showing crash dialog for package com.android.deskclock u0
04-28 09:05:58.467 1040 1103 W ActivityManager: Activity pause timeout for ActivityRecord{1d59f40 u0 com.android.deskclock/.DeskClock t3651 f}
yahya69 said:
Thanks! Those install. But I wonder what I have to do to get the weather forecast actually show up somewhere...
Click to expand...
Click to collapse
I had located a member who had stated that the Unofficial Weather Providers (from the AFH link from my previous post) requires that the Location Permissions needs to be Granted/Allowed first before it will work.
~~~~~~~~~~~~~~~
I DO NOT provide support via PM unless asked/requested by myself. PLEASE keep it in the threads where everyone can share.
Yahoo worked for lgv20 us996 thank you
Ibuprophen said:
One of the Official Lineage Developers had put together some Unofficial LineageOS Weather Provider Apps for Oreo and provided it on the following link until the Official ones are released.
https://androidfilehost.com/?w=files&flid=243785
I can't state for certain that they work since I'm not currently using the LineageOS 15.1 firmware but, I haven't seen anyone stating otherwise.
Good Luck!
~~~~~~~~~~~~~~~
I DO NOT provide support via PM unless asked/requested by myself. PLEASE keep it in the threads where everyone can share.
Click to expand...
Click to collapse
Working on LOS 15.1: lineage-15.1-20180515-nightly-sagit-signed (Mi 6)
Thank you
I could install both weather providers and in the cLock widget it shows the weatherforecast but no weather icon. There only a questionmark is shown. (LOS15.1 - Xiaomi Redmi Note 4 )
when i reboot device then yahoweather provider is not work,my device is Xiaomi mi6
fcc123 said:
I could install both weather providers and in the cLock widget it shows the weatherforecast but no weather icon. There only a questionmark is shown. (LOS15.1 - Xiaomi Redmi Note 4 )
Click to expand...
Click to collapse
Same here! ( Oneplus one lineageos 15.1)
ImPerfectBB said:
Same here! ( Oneplus one lineageos 15.1)
Click to expand...
Click to collapse
All OK for me. If I tap the icon I get forecast with 6 icons. One of them is a question mark.
Open weather won't register, weather underground registers but then tells you it doesn't do free api keys any more. Yahoo installs and works right away
steve.rand said:
Open weather won't register, weather underground registers but then tells you it doesn't do free api keys any more. Yahoo installs and works right away
Click to expand...
Click to collapse
Where did you get open weather for Oreo?
kurtn said:
Where did you get open weather for Oreo?
Click to expand...
Click to collapse
Ah sorry, 14.1!
steve.rand said:
Open weather won't register, weather underground registers but then tells you it doesn't do free api keys any more. Yahoo installs and works right away
Click to expand...
Click to collapse
Tried the yahoo link but id doesn't work...
steve.rand said:
Open weather won't register, weather underground registers but then tells you it doesn't do free api keys any more. Yahoo installs and works right away
Click to expand...
Click to collapse
You are correct. Exactly my experience.
I can't find any weather provider that works in 14.1. I gave up and just use cLock widget for time and date. It's a shame.
maybeme2 said:
You are correct. Exactly my experience.
I can't find any weather provider that works in 14.1. I gave up and just use cLock widget for time and date. It's a shame.
Click to expand...
Click to collapse
Official LOS?
GApps?
What location enabled?
This app?
https://mirrorbits.lineageos.org/WeatherProviders/
kurtn said:
Official LOS?
GApps?
What location enabled?
This app?
https://mirrorbits.lineageos.org/WeatherProviders/
Click to expand...
Click to collapse
Official lineageos 14.1 with microG. Tried both with playstore installed and without. No other Gapps.
cLock widget that came with 'lineageos 14.1 with microG'.
Trier with location enabled and without.
Exactly as described. OpenWeather needs api which I provided. No weather appears.
The other no longer provides free api and won't work without.?
maybeme2 said:
Official lineageos 14.1 with microG. Tried both with playstore installed and without. No other Gapps.
cLock widget that came with 'lineageos 14.1 with microG'.
Trier with location enabled and without.
Exactly as described. OpenWeather needs api which I provided. No weather appears.
The other no longer provides free api and won't work without.?
Click to expand...
Click to collapse
What about yahoo?
Just checked my old weather underground api key: still works.
kurtn said:
What about yahoo?
Just checked my old weather underground api key: still works.
Click to expand...
Click to collapse
Have not tried Yahoo.

What has happened to cLock widget settings in LOS 15?

When I try to open the cLock widget settings in LOS15, they immediately crash. What has happened to them in cLock 15? See log below. It seems the class org.lineageos.lockclock/org.lineageos.lockclock.preference.Preferences is no longer there.
04-28 09:05:57.951 1040 15401 I ActivityManager: START u0 {cmp=org.lineageos.lockclock/.preference.Preferences} from uid 10053
04-28 09:05:57.957 17271 17271 E AndroidRuntime: FATAL EXCEPTION: main
04-28 09:05:57.957 17271 17271 E AndroidRuntime: Process: com.android.deskclock, PID: 17271
04-28 09:05:57.957 17271 17271 E AndroidRuntime: android.content.ActivityNotFoundException: Unable to find explicit activity class {org.lineageos.lockclock/org.lineageos.lockclock.preference.Preferences}; have you declared this activity in your AndroidManifest.xml?
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1933)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java:1616)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:4487)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.BaseFragmentActivityApi16.startActivityForResult(BaseFragmentActivityApi16.java:54)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.startActivityForResult(Unknown Source:0)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java:4445)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:725)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivity(Activity.java:4806)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.startActivity(Activity.java:4774)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.actionbarmenu.WidgetMenuItemController.onOptionsItemSelected(WidgetMenuItemController.java:70)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.actionbarmenu.OptionsMenuManager.onOptionsItemSelected(OptionsMenuManager.java:80)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.deskclock.DeskClock.onOptionsItemSelected(DeskClock.java:389)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.Activity.onMenuItemSelected(Activity.java:3450)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v4.app.FragmentActivity.onMenuItemSelected(FragmentActivity.java:373)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.app.AppCompatActivity.onMenuItemSelected(AppCompatActivity.java:195)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:108)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.WindowCallbackWrapper.onMenuItemSelected(WindowCallbackWrapper.java:108)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.app.ToolbarActionBar$2.onMenuItemClick(ToolbarActionBar.java:63)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.Toolbar$1.onMenuItemClick(Toolbar.java:202)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.ActionMenuView$MenuBuilderCallback.onMenuItemSelected(ActionMenuView.java:780)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:822)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:171)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:973)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.view.menu.MenuPopup.onItemClick(MenuPopup.java:127)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java:318)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java:1158)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java:3127)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.onTouchUp(AbsListView.java:4054)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.AbsListView.onTouchEvent(AbsListView.java:3813)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.support.v7.widget.ListViewCompat.onTouchEvent(ListViewCompat.java:124)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.View.dispatchTouchEvent(View.java:11776)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2962)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2643)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2968)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2657)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2968)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2657)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.widget.PopupWindow$PopupDecorView.dispatchTouchEvent(PopupWindow.java:2406)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.View.dispatchPointerEvent(View.java:12015)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$ViewPostImeInputStage.processPointerEvent(ViewRootImpl.java:4795)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$ViewPostImeInputStage.onProcess(ViewRootImpl.java:4609)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:4200)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:4166)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$AsyncInputStage.forward(ViewRootImpl.java:4293)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:4174)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$AsyncInputStage.apply(ViewRootImpl.java:4350)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:4200)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:4166)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:4174)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:4147)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:6661)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:6635)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:6596)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:6764)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:186)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.MessageQueue.nativePollOnce(Native Method)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.MessageQueue.next(MessageQueue.java:325)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.os.Looper.loop(Looper.java:142)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6494)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:440)
04-28 09:05:57.957 17271 17271 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)
04-28 09:05:57.962 1040 2975 W ActivityManager: Force finishing activity com.android.deskclock/.DeskClock
04-28 09:05:57.974 1040 1104 I ActivityManager: Showing crash dialog for package com.android.deskclock u0
04-28 09:05:58.467 1040 1103 W ActivityManager: Activity pause timeout for ActivityRecord{1d59f40 u0 com.android.deskclock/.DeskClock t3651 f}
04-28 09:06:00.045 1040 15401 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{d79b025 17271 com.android.deskclock/10053/u0 remote:2e91c1c}: process gone or crashing
04-28 09:06:00.047 1040 1103 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{d79de08 17271 com.android.deskclock/10053/u0 remote:2597ab}: process gone or crashing
04-28 09:06:00.047 1040 1103 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{7240387 17271 com.android.deskclock/10053/u0 remote:b78f7c6}: process gone or crashing
04-28 09:06:00.047 1040 1103 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{efcca52 17271 com.android.deskclock/10053/u0 remote:52ebedd}: process gone or crashing
04-28 09:06:00.047 1040 1103 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{e5d6bd9 17271 com.android.deskclock/10053/u0 remote:7246620}: process gone or crashing
04-28 09:06:00.047 1040 1103 W BroadcastQueue: Skipping deliver [foreground] BroadcastRecord{d3162d1 u-1 android.intent.action.TIME_TICK} to ReceiverList{339c44c 17271 com.android.deskclock/10053/u0 remote:c5fdc7f}: process gone or crashing
04-28 09:06:00.713 1040 1104 D AutofillManagerService: onBackKeyPressed()
04-28 09:06:00.716 1040 2975 W ActivityManager: Force finishing activity com.android.deskclock/.DeskClock
04-28 09:06:00.763 1040 2975 I ActivityManager: Killing 17271:com.android.deskclock/u0a53 (adj 900): crash
04-28 09:06:00.820 1040 1173 W ActivityManager: setHasOverlayUi called on unknown pid: 17271
04-28 09:06:00.926 1040 1611 W AppOps : Finishing op nesting under-run: uid 1000 pkg android code 24 time=0 duration=0 nesting=0
04-28 09:06:01.767 1040 8921 I ActivityManager: START u0 {flg=0x10000000 cmp=com.android.deskclock/.DeskClock bnds=[312,411][1020,1236]} from uid 10053
04-28 09:06:01.793 1040 8921 E ActivityManager: applyOptionsLocked: Unknown animationType=0
04-28 09:06:01.820 1040 8921 I ActivityManager: Start proc 3732:com.android.deskclock/u0a53 for activity com.android.deskclock/.DeskClock
04-28 09:06:04.969 1040 2026 I ActivityManager: START u0 {cmp=com.android.deskclock/.settings.SettingsActivity} from uid 10053
I'm facing the same problem. Did you find any solution get it running?

Categories

Resources