NFC tag emulation for android device - NFC Hacking

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)

Related

Help needed testing Live Wallpaper

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?

[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

Venom tweaks has stopped

Hi,
i've just installed the latest viper10 (v5.9.0) rom to my HTC 10. I want to change some stuff in the venom tweaks, but when i try to change an icon (carrier icon, status bar icon etc...) it shows an error : "Venom tweaks - the application has stopped".
I tried to clean the cache of the venom tweaks and venom hub in app manager, log out and log in again into my account, reinstall the rom with and without wipe and did a record when the massage appears. I cant upload the zip here and post a link so i will send you in pm if you can halp me.
I use the latest twrp recovery and stock kernel.
Thanks for your help.
szbbalint said:
Hi,
i've just installed the latest viper10 (v5.9.0) rom to my HTC 10. I want to change some stuff in the venom tweaks, but when i try to change an icon (carrier icon, status bar icon etc...) it shows an error : "Venom tweaks - the application has stopped".
I tried to clean the cache of the venom tweaks and venom hub in app manager, log out and log in again into my account, reinstall the rom with and without wipe and did a record when the massage appears. I cant upload the zip here and post a link so i will send you in pm if you can halp me.
I use the latest twrp recovery and stock kernel.
Thanks for your help.
Click to expand...
Click to collapse
just upload it to drive/dropbox or any other filehoster. Or unzip it and pull out the logcat.txt and upload oit.
j to the 4n said:
just upload it to drive/dropbox or any other filehoster. Or unzip it and pull out the logcat.txt and upload oit.
Click to expand...
Click to collapse
i cant post any link because i'm a new user... so i copy/paste the logcat.txt
04-09 08:22:40.548 8009 8009 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:22:40.548 8009 8009 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 8009
04-09 08:22:40.548 8009 8009 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:22:40.548 8009 8009 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:36:34.861 13283 13283 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 13283
04-09 08:36:34.861 13283 13283 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:36:34.861 13283 13283 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:37:23.409 13569 13569 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 13569
04-09 08:37:23.409 13569 13569 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:37:23.409 13569 13569 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:43:09.097 14645 14645 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 14645
04-09 08:43:09.097 14645 14645 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:43:09.097 14645 14645 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:45:45.240 16696 16696 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 16696
04-09 08:45:45.240 16696 16696 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:45:45.240 16696 16696 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:47:51.066 17721 17867 I System : exec(su -c logcat | grep AndroidRuntime @ com.m0narx.tweaks.process.LogcatWriter.run)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:47:59.895 17721 17721 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 17721
04-09 08:47:59.895 17721 17721 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Instrumentation.execStartActivity(Instrumentation.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Activity.startActivityForResult(Activity.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Activity.startActivityFromFragment(Activity.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Activity$HostCallbacks.onStartActivityFromFragment(Activity.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.Fragment.startActivityForResult(Fragment.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.m0narx.tweaks.widgets.Misc.InstallBg(Misc.java:292)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.m0narx.tweaks.fragments.ScreenStatusBarHeaderOperator.onPrefChange(ScreenStatusBarHeaderOperator.java:69)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.m0narx.tweaks.widgets.BasePreferences.onPreferenceChange(BasePreferences.java:568)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.callChangeListener(HtcPreference.java:346)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.htc.libs.preference.HtcTwoStatePreference.onClick(HtcTwoStatePreference.java:55)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.htc.libs.preference.HtcPreference.performClick(HtcPreference.java:855)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.htc.libs.preference.HtcPreferenceScreen.onItemClick(HtcPreferenceScreen.java:155)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.widget.AdapterView.performItemClick(AdapterView.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.widget.AbsListView.performItemClick(AbsListView.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.widget.AbsListView$PerformClick.run(AbsListView.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.widget.AbsListView$3.run(AbsListView.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.os.Looper.loop(Looper.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-09 08:47:59.895 17721 17721 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-09 08:48:16.454 17998 17998 E AndroidRuntime: FATAL EXCEPTION: main
04-09 08:48:16.454 17998 17998 E AndroidRuntime: Process: com.m0narx.tweaks, PID: 17998
04-09 08:48:16.454 17998 17998 E AndroidRuntime: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content: }
04-09 08:48:16.454 17998 17998 E AndroidRuntime: at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java)
Click to expand...
Click to collapse
szbbalint said:
i cant post any link because i'm a new user... so i copy/paste the logcat.txt
Click to expand...
Click to collapse
Seemy you got no album app installed.
Install HTC Gallery or Google Photos.
j to the 4n said:
Seemy you got no album app installed.
Install HTC Gallery or Google Photos.
Click to expand...
Click to collapse
Yes, that was the problem.. Thank you for your help.
szbbalint said:
Yes, that was the problem.. Thank you for your help.
Click to expand...
Click to collapse
you are welcome.

logcat errors show "no such table: oneplus_search"?

the cut (only ERROR) logcat
12-27 00:28:03.986 29426 29443 E AndroidRuntime: FATAL EXCEPTION: ContactsProviderWorker
12-27 00:28:03.986 29426 29443 E AndroidRuntime: Process: android.process.acore, PID: 29426
12-27 00:28:03.986 29426 29443 E AndroidRuntime: android.database.sqlite.SQLiteException: no such table: oneplus_search (code 1): , while compiling: SELECT t9_jian,t9_part,raw_contacts._id,name_raw_contact_id FROM oneplus_search JOIN raw_contacts ON (raw_contact_id = raw_contacts._id) JOIN contacts ON (raw_contacts.contact_id = contacts._id) WHERE contacts._id=?
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:889)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteConnection.prepare(SQLiteConnection.java:500)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteSession.prepare(SQLiteSession.java:588)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:58)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteQuery.<init>(SQLiteQuery.java:37)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:44)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1345)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1284)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.oneplus.providers.contacts.t9.OneplusSearchHelper.insertContactsSearch(OneplusSearchHelper.java:1550)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.oneplus.providers.contacts.t9.OneplusSearchHelper.upgradeOneplusApiTo1112(OneplusSearchHelper.java:1391)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.oneplus.providers.contacts.OneplusContactsApiSupport.upgradeOneplusApiTo1112(OneplusContactsApiSupport.java:395)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.ContactsDatabaseHelper.upgradeToVersion1112(ContactsDatabaseHelper.java:4852)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.ContactsDatabaseHelper.onUpgrade(ContactsDatabaseHelper.java:3112)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked(SQLiteOpenHelper.java:256)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:187)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.LegacyApiSupport.<init>(LegacyApiSupport.java:530)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.ContactsProvider2.initForDefaultLocale(ContactsProvider2.java:1710)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.ContactsProvider2.performBackgroundTask(ContactsProvider2.java:1885)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at com.android.providers.contacts.ContactsProvider2$1.handleMessage(ContactsProvider2.java:1652)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.os.Looper.loop(Looper.java:154)
12-27 00:28:03.986 29426 29443 E AndroidRuntime: at android.os.HandlerThread.run(HandlerThread.java:61)
I do not know what to do regards this, nor do i know what database is bugging out

Categories

Resources