Cam anyone give me any advise on this Logcat? XT1254, 6.0.1, stock rom, unlocked, rooted, magisk 18.0
12-31 23:58:51.411 E/AndroidRuntime(27961): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.motorola.visualvoicemail.ui.VvmApplication" on path: DexPathList[[zip file "/system/app/VVM/VVM3.apk"],nativeLibraryDirectories=[/system/app/VVM/lib/arm, /vendor/lib, /system/lib]]
01-02 23:22:57.180 E/AndroidRuntime(20526): Suppressed: java.lang.ClassNotFoundException: com.motorola.visualvoicemail.ui.VvmApplication
Another one
And
Related
I need more detailed than this http://forum.xda-developers.com/showthread.php?p=47067076
It keeps giving me this and ive read all comments and have done what they have said
Dalvik VM unable to locate class 'RockMyMoto'
java.lang.NoClassDefFoundError: RockMyMoto
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.ClassNotFoundException: Didn't find class "RockMyMoto" on path: /sdcard/RockMyMoto.jar
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:65)
at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
... 1 more
and I keep getting permission denied on everything I do
im using droid maxx so it doesn't have an sdcard
Any help is appreciated
Occasionally I experience this error in my log:
Code:
Loading Xposed v54 (for Zygote)...
Running ROM 'JZO54K.I9070UBLPK' with fingerprint 'samsung/GT-I9070/GT-I9070:4.1.2/JZO54K/I9070UBLPK:user/release-keys'
Loading modules from /data/app/lv.id.dm.pictures2sd-2.apk
Loading class lv.id.dm.pictures2sd.XposedModule
Loading modules from /data/app/com.oasisfeng.greenify-1.apk
Loading class com.oasisfeng.greenify.pro.FrameworkPatch
Loading class com.oasisfeng.greenify.pro.SettingsPatch
[B]java.lang.IllegalStateException: Cannot broadcast before boot completed[/B]
at com.android.server.am.ActivityManagerService.verifyBroadcastLocked(ActivityManagerService.java:13631)
at com.android.server.am.ActivityManagerService.broadcastIntent(ActivityManagerService.java:13649)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at com.android.server.am.ActivityManagerService.broadcastIntent(Native Method)
at com.oasisfeng.greenify.pro.q.a(SourceFile:38)
at com.oasisfeng.greenify.pro.q.a(SourceFile:27)
at com.oasisfeng.greenify.pro.a.aa.a(SourceFile:59)
at com.oasisfeng.c.a.afterHookedMethod(SourceFile:27)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at com.android.server.am.ActivityManagerService.startProcessLocked(Native Method)
at com.android.server.am.BroadcastQueue.processNextBroadcast(BroadcastQueue.java:777)
at com.android.server.am.BroadcastQueue$1.handleMessage(BroadcastQueue.java:129)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at com.android.server.am.ActivityManagerService$AThread.run(ActivityManagerService.java:1524)
What causes it?
Edit: I redirected the same question to Greenify support, it doesn't seem related to Xposed.
Sorry guys.
I'm the developer of an app that loads a native library (.so). I'm getting a large number of error reports where loading a native library seems to be failing and the stack trace contains references to Xposed. Any ideas what might be going on here and how to fix it?
Stack trace:
java.lang.RuntimeException: exception during library load
at co.kr36.krypton.activity.Main.onCreate(Unknown Source)
at android.app.Activity.performCreate(Activity.java:5451)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2292)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2386)
at android.app.ActivityThread.access$900(ActivityThread.java:169)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1277)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5476)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1268)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1084)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
at dalvik.system.NativeStart.main(Native Method)
Caused by: org.chromium.base.library_loader.ProcessInitException
at org.chromium.base.library_loader.LibraryLoader.loadAlreadyLocked(Unknown Source)
at org.chromium.base.library_loader.LibraryLoader.ensureInitialized(Unknown Source)
at org.chromium.base.library_loader.LibraryLoader.ensureInitialized(Unknown Source)
... 16 more
Caused by: java.lang.UnsatisfiedLinkError: Couldn't load seaturtle from loader dalvik.system.PathClassLoader[dexPath=/data/app/co.kr36.krypton.x-1.apk,libraryPath=/data/app-lib/co.kr36.krypton.x-1]: findLibrary returned null
at java.lang.Runtime.loadLibrary(Runtime.java:358)
at java.lang.System.loadLibrary(System.java:526)
... 19 more
Caused by: java.lang.UnsatisfiedLinkError: Couldn't load seaturtle from loader dalvik.system.PathClassLoader[dexPath=/data/app/co.kr36.krypton.x-1.apk,libraryPath=/data/app-lib/co.kr36.krypton.x-1]: findLibrary returned null
Click to expand...
Click to collapse
Looks like you need to double check the path for the .so file. According to android, it is returning null when it tries to load the library path. Not exactly sure where is .so binary is, assets? So I can't really specify where the file is exactly. Also, double check read/write permissions.
As for xposed causing it, I highly doubt it.
The lines referencing xposed in the logcat is because xposed is able to hook into the method that you are calling. It doesn't do anything unless there is a module installed that uses a hook to that method. printStackTrace will show everywhere the method is referenced/called. So that is why you see the xposed line in the logcat.
Dears,
I have installed the latest stock ROM(MIUI 7 6.2.25, Android 6.0.1) on my Mi3 handset. When I tried to write a new e-mail and attach a file, I always got FC with the following error log message and failed to add an attachment. Does anyone have any idea why this happens?
Thanks for the prompt help.
java.lang.RuntimeException: Unable to instantiate application com.android.documentsui.DocumentsApplication: java.lang.ClassNotFoundException: Didn't find class "com.android.documentsui.DocumentsApplication" on path: DexPathList[[zip file "/system/app/DocumentsUI/DocumentsUI.apk"],nativeLibraryDirectories=[/system/app/DocumentsUI/lib/arm, /vendor/lib, /system/lib]]
at android.app.LoadedApk.makeApplication(LoadedApk.java:580)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4693)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:675)
at android.app.ActivityThread.handleBindApplication()
at android.app.ActivityThread.access$1600(ActivityThread.java:153)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1410)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5432)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:735)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:114)
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.documentsui.DocumentsApplication" on path: DexPathList[[zip file "/system/app/DocumentsUI/DocumentsUI.apk"],nativeLibraryDirectories=[/system/app/DocumentsUI/lib/arm, /vendor/lib, /system/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at android.app.Instrumentation.newApplication(Instrumentation.java:982)
at android.app.LoadedApk.makeApplication(LoadedApk.java:575)
... 13 more
Suppressed: java.io.IOException: Failed to open dex files from /system/app/DocumentsUI/DocumentsUI.apk
at dalvik.system.DexFile.openDexFileNative(Native Method)
at dalvik.system.DexFile.openDexFile(DexFile.java:295)
at dalvik.system.DexFile.(DexFile.java:80)
at dalvik.system.DexFile.(DexFile.java:59)
at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
at dalvik.system.DexPathList.(DexPathList.java:120)
at dalvik.system.BaseDexClassLoader.(BaseDexClassLoader.java:48)
at dalvik.system.PathClassLoader.(PathClassLoader.java:65)
at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:57)
at android.app.LoadedApk.getClassLoader(LoadedApk.java:376)
at de.robv.android.xposed.XposedBridge$1.beforeHookedMethod(XposedBridge.java:170)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:655)
... 10 more
Suppressed: java.lang.ClassNotFoundException: com.android.documentsui.DocumentsApplication
at java.lang.Class.classForName(Native Method)
at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
... 16 more
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
Hello I have Xposed installed on Redmi Note 3 hennessy (MTK) and xposed causes app crashes. Can anyone help? I already tried to wipe cache and dalvik but didn't help. Crashes also includes system apps.
Code:
java.lang.RuntimeException: Unable to instantiate application com.google.android.gm.MailMigrationApplication: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gm.MailMigrationApplication" on path: DexPathList[[zip file "/data/app/com.google.android.gm-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]
at android.app.LoadedApk.makeApplication(LoadedApk.java)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:334)
at android.app.ActivityThread.handleBindApplication(<Xposed>)
at android.app.ActivityThread.access$1500(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java)
at android.os.Handler.dispatchMessage(Handler.java)
at android.os.Looper.loop(Looper.java)
at android.app.ActivityThread.main(ActivityThread.java)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gm.MailMigrationApplication" on path: DexPathList[[zip file "/data/app/com.google.android.gm-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at android.app.Instrumentation.newApplication(Instrumentation.java)
... 15 more
Suppressed: java.io.IOException: Failed to open oat file from dex location '/data/app/com.google.android.gm-1/base.apk'
at dalvik.system.DexFile.openDexFileNative(Native Method)
at dalvik.system.DexFile.openDexFile(DexFile.java:295)
at dalvik.system.DexFile.<init>(DexFile.java:80)
at dalvik.system.DexFile.<init>(DexFile.java:59)
at dalvik.system.DexPathList.loadDexFile(DexPathList.java:262)
at dalvik.system.DexPathList.makeDexElements(DexPathList.java:231)
at dalvik.system.DexPathList.<init>(DexPathList.java:109)
at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java)
at android.app.LoadedApk.getClassLoader(LoadedApk.java)
at de.robv.android.xposed.XposedInit$2.beforeHookedMethod(XposedInit.java:139)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:314)
... 11 more
Caused by: java.io.IOException: Failed to open oat file from /data/app/com.google.android.gm-1/arm64/base.odex (error Failed to open oat filename for reading: No such file or directory) (no dalvik_cache availible) and relocation failed.
... 24 more
Caused by: java.io.IOException:
... 24 more
Caused by: java.io.IOException: Failed to remove obsolete file from /data/dalvik-cache/arm64/[email protected]@[email protected]@classes.dex when searching for dex file /data/app/com.google.android.gm-1/base.apk: Permission denied
... 24 more
Suppressed: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gm.MailMigrationApplication" on path: DexPathList[[dex file "/data/dalvik-cache/xposed_XResourcesSuperClass.dex"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
... 17 more
Suppressed: java.lang.ClassNotFoundException: com.google.android.gm.MailMigrationApplication
at java.lang.Class.classForName(Native Method)
at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
... 18 more
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
Xposed is unstable, rather wait for official to drop.
Theres not much you can do with the app crashes other than uninstall xposed