(TB-8504x) Lenovo tab 4 8: Fix facelock ("Face Unlock") crash - Thinkpad Tablet General

Lenovo Tab 4 8 - Fix facelock crash (Related gist: https://gist.github.com/KreAch3R/734b1086c928ab8ceeafaf3e4dbd8c33)
I noticed that a Lenovo tab 4 8 (tb-8504x) on the latest stock image as of today didn't have a working face unlock ("facelock"). When it was time to add a new face, it crashed with the following log:
Code:
08-16 17:39:34.379 6600 6600 D AndroidRuntime: Shutting down VM
08-16 17:39:34.380 6600 6600 E AndroidRuntime: FATAL EXCEPTION: main
08-16 17:39:34.380 6600 6600 E AndroidRuntime: Process: com.android.facelock, PID: 6600
08-16 17:39:34.380 6600 6600 E AndroidRuntime: java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "_ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom" referenced by "/system/lib64/libfacenet.so"...
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at java.lang.Runtime.loadLibrary0(Runtime.java:989)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at java.lang.System.loadLibrary(System.java:1530)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.google.android.libraries.vision.facenet.FaceNet.<clinit>(FaceNet.java:67)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.google.android.libraries.vision.facenet.FaceNet.createFromAssets(FaceNet.java:118)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.android.facelock.FaceLockUtil.initialize(FaceLockUtil.java:148)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.android.facelock.SetupEnrollmentScreen.onCreate(SetupEnrollmentScreen.java:517)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:6720)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1119)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2618)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2726)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.ActivityThread.-wrap12(ActivityThread.java)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1477)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.os.Looper.loop(Looper.java:154)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6119)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
08-16 17:39:34.380 6600 6600 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
08-16 17:39:34.383 1428 2305 W ActivityManager: Force finishing activity com.android.facelock/.SetupEnrollmentScreen
The FIX
1. Download libfacenet.so from Open-GApps [Direct link to the binary I used].
2. Follow the instructions from here and download @dywersant 's magisk-remount.zip module from here.
3. Boot into Android with a RW /system using the module. You can confirm with:
Code:
su
cd /system
touch testfile.txt
If the command succeeds, you have a writable /system.
4. Go into the lib64 folder (/system/lib64)
5. Make a backup of the original libfacenet.so file:
Code:
cp /system/lib64/libfacenet.so /sdcard/libfacenet.so.orig
BE CAREFUL: Don't make the backup inside the /system partition, as it can be lost after reboot!
6. Mount the specific file as RW
I don't know how or why, but Lenovo seems to have made every lib file a different ro mount point/partition. So:
Code:
mount -o rw,remount /system/lib64/libfacenet.so
is needed, otherwise you end up with "read only file system" error (even when the whole /system is RW!)
7. Push to /sdcard and replace the file
Code:
cp /sdcard/libfacenet.so /system/lib64/libfacenet.so
Now, try to add a new face again. It should work!
--------------------------------------------------------------
Debugging
If anyone is interested to know how. You always start from the log. Let's disect this line:
Code:
java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "_ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom" referenced by "/system/lib64/libfacenet.so"
This tells us that the app com.android.facelock launched and called the library libfacenet.so which referenced a method/symbol/whatever named _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom but that method doesn't exist inside whatever should include it, so "dlopen" failed and we got ourselves the "java.lang.UnsatisfiedLinkError" error. Let's sum up:
1. The app that crashes is com.android.facelock
2. One related .so lib is libfacenet.so
3. There is another one, unnamed, that should contain _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom but it doesn't.
Googling about "_ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom" brings up some libprotobuf related results. This is good enough. Grepping through /system/lib64 shows up that there are two .so there:
Code:
libprotobuf-cpp-full.so
libprotobuf-cpp-lite.so
Doing the same in a working pixel image produces the same files. But obviously Facelock works on the Pixel but not on this tablet. We need a way to differentiate them (remember, pixel is on a Oreo base while this is Nougat).
Reading this StackExchange post, we find out about the "readelf -a -W elffile" command. Give this a try and you should see that a lot comes up. Next step, grepping through this file dump.
Lenovo libprotobuf-cpp-lite.so:
Code:
$ readelf -a -W libprotobuf-cpp-lite.so | grep _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom
$
Pixel libprotobuf-cpp-lite.so:
Code:
$ readelf -a -W libprotobuf-cpp-lite.so | grep _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom
000000000004fb10 0000005700000402 R_AARCH64_JUMP_SLOT 0000000000022254 _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom + 0
87: 0000000000022254 216 FUNC GLOBAL DEFAULT 12 _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom
Bingo! So we confirm that the libfacenet.so is trying to call an upstream method (probably), one that isn't bundled inside the libprotobuf-cpp-lite.so of the Lenovo stock image.
So now we know, it's a problem of version incompatibility. There are two things to try:
1. Replace libprotobuf-cpp-lite.so with a version that contains _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom
2. Replaced libfacenet.so with a version that doesn't contain _ZN6google8protobuf5Arena15AllocateAlignedEPKSt9type_infom
Method No. 1 didn't work, while it got rid of the "java.lang.UnsatisfiedLinkError" error (confirming the diagnosis), it produced more .so related crashes, so I assume there were a lot more code that was incompatible. But Method No.2 worked as a charm!

Related

Random reboots from Zygote

Anyone have issues with random reboots? I get at least 4-5 a day.
Code:
03-25 10:23:01.213 4572 4572 E Zygote : v2
03-25 10:23:01.213 4572 4572 E Zygote : accessInfo : 0
03-25 10:23:01.253 1488 2883 E core: ResourceBufferImpl2.cpp(126): open(): : Resource file blur_classifier.txt was not opened
03-25 10:23:01.443 24868 24868 E JavaBinder: !!! FAILED BINDER TRANSACTION !!! (parcel size = 176)
03-25 10:23:01.663 2988 2988 E ClipboardServiceEx: clipEx is [email protected]
03-25 10:23:01.673 2988 2988 E ClipboardServiceEx: clipEx has text data : false
03-25 10:23:01.773 26929 26941 E DataBuffer: Internal data leak within a DataBuffer object detected! Be sure to explicitly call release() on all DataBuffer extending objects when you are done with them. (internal object: [email protected])
03-25 10:23:01.773 26929 26941 E DataBuffer: Internal data leak within a DataBuffer object detected! Be sure to explicitly call release() on all DataBuffer extending objects when you are done with them. (internal object: [email protected])
03-25 10:23:01.773 26929 26941 E DataBuffer: Internal data leak within a DataBuffer object detected! Be sure to explicitly call release() on all DataBuffer extending objects when you are done with them. (internal object: [email protected])
03-25 10:23:01.803 1488 2883 E core: ResourceBufferImpl2.cpp(126): open(): : Resource file blur_classifier.txt was not opened
03-25 10:23:31.993 24868 24868 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
03-25 10:23:31.993 24868 24868 E AndroidRuntime: java.util.NoSuchElementException: Death link does not exist
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.os.BinderProxy.unlinkToDeath(Native Method)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService$Service.unlinkToOwnDeathLocked(AccessibilityManagerService.java:4368)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService$Service.onRemoved(AccessibilityManagerService.java:4360)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService.removeServiceLocked(AccessibilityManagerService.java:2521)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService.access$3900(AccessibilityManagerService.java:158)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService$Service.binderDied(AccessibilityManagerService.java:4400)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.accessibility.AccessibilityManagerService$Service.onServiceConnected(AccessibilityManagerService.java:3879)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1335)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1352)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:739)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:95)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at android.os.Looper.loop(Looper.java:158)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:508)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:363)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
03-25 10:23:31.993 24868 24868 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
03-25 10:23:32.003 24868 24868 E android.os.Debug: ro.product_ship = true
03-25 10:23:32.003 24868 24868 E android.os.Debug: ro.debug_level = 0x4f4c
03-25 10:23:32.003 24868 24868 E android.os.Debug: sys.mobilecare.preload = false
03-25 10:23:32.073 1488 2883 E core: ResourceBufferImpl2.cpp(126): open(): : Resource file blur_classifier.txt was not opened
YES YES YES. About 3 to 4 each and every day. My phone also seems laggy when using it. I am sad to see I'm not the only one.

Settings has stopped...

I'm unable to access my 'settings' menu. - Settings has stopped...
Many posts say a factory reset will not fix the issue so can someone point me in the direction on how to re-flash this phone before it gets given away or thrown in the trash...
Rooted, no new apps etc so not sure what broke it.
Pretty sure they only have images for the dev edition
fluffyofqweam said:
Pretty sure they only have images for the dev edition
Click to expand...
Click to collapse
There is an o2 image here
and some random one here which I can't ID.
At this point I don't really care what happens to this device now so if you can point me in a direction to a good guide I'll give one of those a go
Where did you find this image?
fluffyofqweam said:
Where did you find this image?
Click to expand...
Click to collapse
https://mirrors.lolinet.com/firmware/moto/harpia/official/
Alright this let's try flashing the the first image you linked, do you have TWRP?
fluffyofqweam said:
Alright this let's try flashing the the first image you linked, do you have TWRP?
Click to expand...
Click to collapse
Yep that's all installed & working - I was actually going to try the newer image as the o2 one appears to be older than the image I have on the phone now... But I'm open to your wisdom.
As an aside - If I can get another identical phone could I pull the image out of that for re-installing on mine at a later date ? (I may be able to borrow a device next week for a few days) Otherwise I'm up for trying this today.
I was going to follow these instructions but only doing the;
mfastboot flash system system.img_sparsechunk.0
mfastboot flash system system.img_sparsechunk.1
mfastboot flash system system.img_sparsechunk.2
mfastboot flash system system.img_sparsechunk.3
mfastboot flash system system.img_sparsechunk.4
mfastboot flash system system.img_sparsechunk.5
mfastboot flash system system.img_sparsechunk.6
mfastboot flash system system.img_sparsechunk.7
part as it looks like it the OS thats broken rather than anything else. It would be nice If I didn't have to kill all my user data but I'm not that worried if I have no choice.
The phone works in fastboot and I have ADB working on my PC - I also now have mfastboot as I'd seen people hinting that Moto users should use that rather than just fastboot.
You found a newer one? I would flash the newer image as it maybe fixed the issue, not sure what you meant about the indentical phone part, if your asking if you can flash the Moto G4 play image on another device that's not a Moto G4 play the answer is no, and for the instructions you found, I have never seen it
---------- Post added at 05:45 PM ---------- Previous post was at 05:44 PM ----------
I'm actually a bit new to Android but I'm sure you can help others out to help you by posting your logcat after trying to get into the settings app
---------- Post added at 05:45 PM ---------- Previous post was at 05:45 PM ----------
And what ever you do do not throw this beast of a device away
fluffyofqweam said:
You found a newer one? I would flash the newer image as it maybe fixed the issue, not sure what you meant about the indentical phone part, if your asking if you can flash the Moto G4 play image on another device that's not a Moto G4 play the answer is no, and for the instructions you found, I have never seen it
---------- Post added at 05:45 PM ---------- Previous post was at 05:44 PM ----------
I'm actually a bit new to Android but I'm sure you can help others out to help you by posting your logcat after trying to get into the settings app
Click to expand...
Click to collapse
So the 2nd image link I posted here is slightly newer than the current phone version - I was going to try that as it appears to match in so fas as its a retail version rather than a carrier specific version (my devide was retail)
What I meant by extracting an image from another phone - I can get access to an identical non rooted stock retail image moto g4 play next week - so figured there must be a way to extract the system image then load it back onto this broken phone.
Re logcat - standby I'll edit this post in a few min once it's booted up & I've tested it. I was looking for logs but I'm even newer to this Android stuff than you are!
*** LOGCAT BELOW *** (from trying to access settings)
07-14 17:54:19.475 5162 11342 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android
.settings/.Settings (has extras)} from uid 10061 on display 0
07-14 17:54:19.480 7488 11394 D ProcSpeedReader: Failed to read freq stats from null
07-14 17:54:19.508 5162 7564 I ActivityManager: Start proc 12499:com.android.settings/1000 for activity com.android.settings/.Settings
07-14 17:54:19.553 7488 11394 D ProcSpeedReader: Failed to read freq stats from null
07-14 17:54:19.580 12499 12499 W System : ClassLoader referenced unknown path: /data/app/com.android.settings-1/lib/arm
07-14 17:54:19.583 12499 12499 D AndroidRuntime: Shutting down VM
07-14 17:54:19.589 12499 12499 E AndroidRuntime: FATAL EXCEPTION: main
07-14 17:54:19.589 12499 12499 E AndroidRuntime: Process: com.android.settings, PID: 12499
07-14 17:54:19.589 12499 12499 E AndroidRuntime: java.lang.RuntimeException: Unable to get provider android.support.v4.content.FileProvider: java.lang.ClassNotF
oundException: Didn't find class "android.support.v4.content.FileProvider" on path: DexPathList[[zip file "/system/framework/com.motorola.frameworks.core.addon.
jar", zip file "/data/app/com.android.settings-1/base.apk"],nativeLibraryDirectories=[/data/app/com.android.settings-1/lib/arm, /data/app/com.android.settings-1
/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5193)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4785)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4725)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.-wrap1(ActivityThread.java)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1418)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5459)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:728)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "android.support.v4.content.FileProvider" on pat
h: DexPathList[[zip file "/system/framework/com.motorola.frameworks.core.addon.jar", zip file "/data/app/com.android.settings-1/base.apk"],nativeLibraryDirector
ies=[/data/app/com.android.settings-1/lib/arm, /data/app/com.android.settings-1/base.apk!/lib/armeabi-v7a, /vendor/lib, /system/lib]]
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.installProvider(ActivityThread.java:5178)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: ... 10 more
07-14 17:54:19.589 12499 12499 E AndroidRuntime: Suppressed: java.io.IOException: No original dex files found for dex location /data/app/com.android.sett
ings-1/base.apk
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexFile.openDexFileNative(Native Method)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexFile.openDexFile(DexFile.java:295)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:80)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexFile.<init>(DexFile.java:59)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexPathList.loadDexFile(DexPathList.java:279)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexPathList.makePathElements(DexPathList.java:248)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.DexPathList.<init>(DexPathList.java:120)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:65)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ApplicationLoaders.getClassLoader(ApplicationLoaders.java:58)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.LoadedApk.getClassLoader(LoadedApk.java:376)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:568)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4717)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: ... 8 more
07-14 17:54:19.589 12499 12499 E AndroidRuntime: Suppressed: java.lang.ClassNotFoundException: android.support.v4.content.FileProvider
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.Class.classForName(Native Method)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
07-14 17:54:19.589 12499 12499 E AndroidRuntime: ... 12 more
07-14 17:54:19.589 12499 12499 E AndroidRuntime: Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace a
vailable
07-14 17:54:19.591 5162 5176 W ActivityManager: Force finishing activity com.android.settings/.Settings
07-14 17:54:19.592 5162 5176 I ActivityManager: moveHomeStack, setupComplete:true
07-14 17:54:19.622 7488 11394 D ProcSpeedReader: Failed to read freq stats from null
07-14 17:54:19.682 5162 8999 I OpenGLRenderer: Initialized EGL, version 1.4
07-14 17:54:20.123 5162 5188 W ActivityManager: Activity pause timeout for ActivityRecord{103e8bb u0 com.android.settings/.Settings t9 f}
07-14 17:54:20.126 7488 11394 D ProcSpeedReader: Failed to read freq stats from null
07-14 17:54:20.170 5162 10520 I ActivityManager: Killing 12168:com.android.vending/u0a48 (adj 15): empty #7
07-14 17:54:20.209 5162 7985 D ActivityManager: cleanUpApplicationRecord -- 12168
07-14 17:54:20.761 358 717 I SFPerfTracer: triggers: (rate: 0:0) (0 sw vsyncs) (0 skipped) (26:2792 vsyncs) (28:3249)
07-14 17:54:21.333 12499 12499 I Process : Sending signal. PID: 12499 SIG: 9
07-14 17:54:21.338 5162 8999 D OpenGLRenderer: endAllActiveAnimators on 0xb94d8470 (RippleDrawable) with handle 0xb95eeb18
07-14 17:54:21.347 5162 10519 W InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Pr
[email protected] [email protected], token = [email protected]
07-14 17:54:21.372 5162 6956 I ActivityManager: Process com.android.settings (pid 12499) has died
07-14 17:54:21.372 5162 6956 D ActivityManager: cleanUpApplicationRecord -- 12499
Click to expand...
Click to collapse
Wait a minute, you got a Verizon version and rooted it? Werid, we yeah I would use the 2nd image if it was newer, and do you mean to get a whole other Moto G4 play just to get the image? I wouldn't really do that
---------- Post added at 05:53 PM ---------- Previous post was at 05:52 PM ----------
I would suggest the app called logcat reader, it's a simple app hold down to access a menu
---------- Post added at 05:55 PM ---------- Previous post was at 05:53 PM ----------
I know your settings is broken but please make a backup before you start flashing anything!
fluffyofqweam said:
Wait a minute, you got a Verizon version and rooted it? Werid, we yeah I would use the 2nd image if it was newer, and do you mean to get a whole other Moto G4 play just to get the image? I wouldn't really do that
---------- Post added at 05:53 PM ---------- Previous post was at 05:52 PM ----------
I would suggest the app called logcat reader, it's a simple app hold down to access a menu
---------- Post added at 05:55 PM ---------- Previous post was at 05:53 PM ----------
I know your settings is broken but please make a backup before you start flashing anything!
Click to expand...
Click to collapse
No, no - this is a UK Retail version XT1604. I have nothing to backup to be honest - and even if I end up on an old software/radio etc (o2 build) then fine - If you want me to backup from inside TWRP then I can, but I don't see much point backing up a recovery image I have, a system image which is clearly broken, cache which is empty anyway and a few user settings. I can decide that later.
Based on what you see do I just need to flash the system.image files in turn ? or do I need to flash all the other bits as well (Everything else on the phone works I should point out besides being able to access settings)
Alright, I understand it's your choice but there's a chance the situation might get even worse, luckily you have TWRP though, anyways i would think that flashing the second image you posted would already have everything, but before you do that checkout this video
It seems like he does a lot stuff not needed. But it's not going to hurt right?
---------- Post added at 06:26 PM ---------- Previous post was at 06:19 PM ----------
Copy and paste all the commands to the note pad, read the discription
---------- Post added at 06:43 PM ---------- Previous post was at 06:26 PM ----------
Any news?
Any news?
Click to expand...
Click to collapse
Only just sitting down to watch the vid - standby. It's also dinner-time
Yum! ?
Ok, so the video is the same instructions as here but rather than using mfastboot just regular fastboot.exe
I'm in the process of taking a full backup via TWRP right now.
I'll update this post shortly.
**1**
That's why I was planning on not touching the radio side of things... I'll consider a rom if none of this works - at the end of the day long as I can get into boot loader its fine.
My plan is to flash everything except the radio stuff, and the recovery image
Gotcha! Perhaps follow the article, people do say that some things like there data or wifi signal doesn't work while other people say it works perfectly, I wish the best of luck, also if this does fail, maybe consider a rom?
Before I commit to this; does anyone know the difference between the MIP and the MIPS firmwares ? Is 1 for the dual SIM version? If so which one as this is only a single SIM
Er, not sure, sorry I didn't respond, xda labs didn't send me a notification
Any news?
fluffyofqweam said:
Any news?
Click to expand...
Click to collapse
Yes! - Sorry was out. We are back in business.
I ended up doing a full re-flash using this image and these instructions as a guide. But rather than mfastboot - use just fastboot and inside the .zip you will find a file called flashfile.xml - open that file in a browser and it will show you all the steps that firmware requires and bits to do. Use the website as a guide only.
The software installed;
6.0.1
Patch 01-May-2017
Modem Version: M8916_20250106.08.05.23.01R
System Version: 24.221.18.harpia.retail.en.US
Blur Version: Blur_Version.24.221.18.harpia.retail.en.US
Version when read from CPV: harpia-user 6.0.1 MPIS24.241-2.35-2-17 18 release-keys
Kernel 3.10.49 22-May-2017
Managed to re-encrypt then root the device, I'll sort out basic apps & bits later so I can build a base config to backup through TWRP. Once I've done that I'll start stripping out some of the junk (knowing I have a working backup)
It would appear for the time being the device is safe from any nasty incidents or the bin... I'm also a bit more happy about flashing the device now as well.

help with logcat to fix my looping nexus 7 gen2

I have a boot looping device and I want to fix my data partition without wiping it. I have used twrp to backup my data. I can now wipe data and it boots fine. If I put my data back it loops. Wiping this OS is not really an option for me.
Last thing I did before the boot loop was installed a wake detector.
this is my log during the looping - files is 10 times this size..., this is the only part that would fit. I think the fatal error may have something to do with my issue.
https://pastebin.com/XHaWBeWR
I think this is the problem but not sure how to fix.
01-05 10:31:13.545 1849 1849 E AndroidRuntime: FATAL EXCEPTION: main
01-05 10:31:13.545 1849 1849 E AndroidRuntime: Process: com.google.android.gm, PID: 1849
01-05 10:31:13.545 1849 1849 E AndroidRuntime: java.lang.RuntimeException: Unable to create application com.google.android.gm.MailMigrationApplication: java.lang.RuntimeException: Package manager has died
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4710)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ActivityThread.-wrap1(ActivityThread.java)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5417)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: Caused by: java.lang.RuntimeException: Package manager has died
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ApplicationPackageManager.getPackageInfo(ApplicationPackageManager.java:134)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at dwe.a(SourceFile:12)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at dwe.<init>(SourceFile:3)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at dun.<init>(SourceFile:9)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at dui.a(SourceFile:67)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at eem.onCreate(SourceFile:103)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at com.google.android.gm.MailMigrationApplication.onCreate(SourceFile:2)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1013)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4707)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: ... 8 more
01-05 10:31:13.545 1849 1849 E AndroidRuntime: Caused by: android.os.DeadObjectException
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.content.pm.IPackageManager$Stub$Proxy.getPackageInfo(IPackageManager.java:2163)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: at android.app.ApplicationPackageManager.getPackageInfo(ApplicationPackageManager.java:129)
01-05 10:31:13.545 1849 1849 E AndroidRuntime: ... 16 more
01-05 10:31:13.546 1849 1849 E AndroidRuntime: Error reporting crash
01-05 10:31:13.546 1849 1849 E AndroidRuntime: android.os.DeadObjectException
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java:4427)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:90)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at iko.uncaughtException(SourceFile:16)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
01-05 10:31:13.546 1849 1849 E AndroidRuntime: at ikp.uncaughtException(SourceFile:15)
01-05 10:31:13.546 1849 1849 I Process : Sending signal. PID: 1849 SIG: 9
01-05 10:31:13.555 1633 2076 W UserManager: Could not get userHandle for user 0
01-05 10:31:13.555 1633 2076 W UserManager: Could not get userHandle for user 0
01-05 10:31:13.569 1663 1683 I ContactDirectoryManager: Discovered 0 contact directories in 2940ms
01-05 10:31:13.571 1663 1683 E AndroidRuntime: FATAL EXCEPTION: ContactsProviderWorker
01-05 10:31:13.571 1663 1683 E AndroidRuntime: Process: android.process.acore, PID: 1663
01-05 10:31:13.571 1663 1683 E AndroidRuntime: java.lang.NullPointerException: Attempt to invoke interface method 'android.accounts.Account[] android.accounts.IAccountManager.getAccounts(java.lang.String, java.lang.String)' on a null object reference
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at android.accounts.AccountManager.getAccounts(AccountManager.java:429)
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at com.android.providers.contacts.ContactsProvider2.performBackgroundTask(ContactsProvider2.java:1710)
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at com.android.providers.contacts.ContactsProvider2$1.handleMessage(ContactsProvider2.java:1516)
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
01-05 10:31:13.571 1663 1683 E AndroidRuntime: at android.os.HandlerThread.run(HandlerThread.java:61)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: Error reporting crash
01-05 10:31:13.572 1663 1683 E AndroidRuntime: android.os.DeadObjectException
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java:4427)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:90)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
01-05 10:31:13.572 1663 1683 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
01-05 10:31:13.572 1663 1683 I Process : Sending signal. PID: 1663 SIG: 9
01-05 10:31:13.585 2090 2090 W System : ClassLoader referenced unknown path: /system/app/GoogleContactsSyncAdapter/lib/arm
01-05 10:31:13.586 2090 2090 D AndroidRuntime: Shutting down VM
01-05 10:31:13.587 2090 2090 E AndroidRuntime: FATAL EXCEPTION: main
01-05 10:31:13.587 2090 2090 E AndroidRuntime: Process: com.google.process.gapps, PID: 2090
01-05 10:31:13.587 2090 2090 E AndroidRuntime: java.lang.RuntimeException: Unable to instantiate application android.app.Application: java.lang.IllegalStateException: Unable to get package info for com.google.android.syncadapters.contacts; is system dying?
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:578)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4680)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.ActivityThread.-wrap1(ActivityThread.java)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5417)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: Caused by: java.lang.IllegalStateException: Unable to get package info for com.google.android.syncadapters.contacts; is system dying?
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java:420)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.LoadedApk.makeApplication(LoadedApk.java:570)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: ... 9 more
01-05 10:31:13.587 2090 2090 E AndroidRuntime: Caused by: android.os.DeadObjectException
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.content.pm.IPackageManager$Stub$Proxy.getPackageInfo(IPackageManager.java:2163)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: at android.app.LoadedApk.initializeJavaContextClassLoader(LoadedApk.java:418)
01-05 10:31:13.587 2090 2090 E AndroidRuntime: ... 10 more
01-05 10:31:13.589 2090 2090 E AndroidRuntime: Error reporting crash
01-05 10:31:13.589 2090 2090 E AndroidRuntime: android.os.DeadObjectException
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at android.app.ActivityManagerProxy.handleApplicationCrash(ActivityManagerNative.java:4427)
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:90)
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:693)
01-05 10:31:13.589 2090 2090 E AndroidRuntime: at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:690)
01-05 10:31:13.589 2090 2090 I Process : Sending signal. PID: 2090 SIG: 9
01-05 10:31:13.638 2114 2118 D libEGL : loaded /vendor/lib/egl/libEGL_adreno.so
01-05 10:31:13.639 2114 2118 D libEGL : loaded /vendor/lib/egl/libGLESv1_CM_adreno.so
01-05 10:31:13.660 2114 2118 D libEGL : loaded /vendor/lib/egl/libGLESv2_adreno.so
01-05 10:31:13.670 2114 2118 I Adreno-EGL: <qeglDrvAPI_eglInitialize:379>: QUALCOMM Build: 10/21/15, 369a2ea, I96aee987eb
01-05 10:31:13.686 2114 2118 E BootAnimation: couldn't find audio_conf.txt
01-05 10:31:13.722 272 272 I lowmemorykiller: ActivityManager disconnected
01-05 10:31:13.722 272 272 I lowmemorykiller: Closing Activity Manager data connection
01-05 10:31:13.807 1528 1536 E BluetoothMap:
01-05 10:31:13.807 1528 1536 E BluetoothMap: android.os.DeadObjectException
01-05 10:31:13.807 1528 1536 E BluetoothMap: at android.os.BinderProxy.transactNative(Native Method)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at android.os.BinderProxy.transact(Binder.java:503)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at android.bluetooth.IBluetoothManager$Stub$Proxy.unregisterStateChangeCallback(IBluetoothManager.java:269)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at android.bluetooth.BluetoothMap.close(BluetoothMap.java:133)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at android.bluetooth.BluetoothMap.finalize(BluetoothMap.java:117)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:202)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185)
01-05 10:31:13.807 1528 1536 E BluetoothMap: at java.lang.Thread.run(Thread.java:818)
01-05 10:31:14.185 1884 2053 V fb-UnpackingSoSource: regenerating DSO store X.00E
01-05 10:31:14.186 1884 2053 V fb-UnpackingSoSource: not releasing dso store lock for /data/user/0/com.facebook.katana/lib-assets (syncer thread started)
01-05 10:31:14.188 1884 2125 V fb-UnpackingSoSource: starting syncer worker
01-05 10:31:14.195 1884 2053 V fb-UnpackingSoSource: locked dso store /data/user/0/com.facebook.katana/lib-xzs
01-05 10:31:14.203 1884 2053 V fb-UnpackingSoSource: deps mismatch on deps store: regenerating
01-05 10:31:14.203 1884 2053 V fb-UnpackingSoSource: so store dirty: regenerating
01-05 10:31:14.212 1884 2125 V fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.facebook.katana/lib-assets (from syncer thread)
01-05 10:31:14.553 1884 2053 V XZ : XZ native library initialized.
01-05 10:31:14.554 1884 2053 V fb-UnpackingSoSource: regenerating DSO store X.00F
01-05 10:31:14.562 1884 2053 I fb-UnpackingSoSource: extracting DSO libcoldstart.so
Click to expand...
Click to collapse

HavocOS_2.9 Fastboot ROM

This file is exclusively prepared by BN_P
for
Asus Zenfone Max M2 (X01AD). It is havoc Pie 2.9 on pie vendor, Firmware-JP-16.2018.1910.52.
How to ::
1. Confirm your device model as above.
2. No need to be worried on which build your device is presently. This Rom can be flashed on any build. Also seperate unlock bootloader not required... It will b done by flash process automatically.
3. Only for windows users, flashing can be done in windows only.
Before start flashing,
Unzip the downloaded file. Put it in a folder in desktop.
There is a file named "system+vendor.zip" or something like that, unzip that, refer readme guide for details.
Put those above unzipped .img files in the main folder i.e same location of flash_all.cmd.
4. Put your device in fastboot mode, connect to PC and run the flash_all.cmd, just double click on it.
5. Follow the pop up screen.
6. Data erase will be required after flashing before boot.
Detailed process available in readme file inside.
Best of luck
This ROM is included
TWRP+Magisk
opengapps pico
Gcam
Ampere app
Viper sound mod
Google Phone Dialer
Safetynet Fixed
Bugs::
You tell me.
Thanks to::
@vincent for HavocOS GSI image.
[MENTION=268073]topjhonwu for magisk
Link for file...
https://www.androidfilehost.com/?w=files&flid=293310
NB Drop a line in comment section mentioning your feedback / bugs / experience
Updated version V2
Changelog
Magisk19.3 (magisk20 creating problem)
Updated gapps
Fastboot flashscript errors removed
added viper sound mod
updated twrp3.3.1-0
(NB:: Need to unzip system.zip, vendor.zip,recovery.zip,boot.zip to get corrsponding img files before flash)
what are the differences from havoc 2.9 gsi? (besides TWRP + Magisk20.1 opengapps pico Gcam Ampere app Google Phone Dialer Safetynet Fixed)
Gcam version? all work fine?
KLozhev said:
what are the differences from havoc 2.9 gsi? (besides TWRP + Magisk20.1 opengapps pico Gcam Ampere app Google Phone Dialer Safetynet Fixed)
Gcam version? all work fine?
Click to expand...
Click to collapse
It is a fastboot rom.... Can b flashed thru fastboot mode without twrp/custom recovery. No need to unlock bootloader seperately.
Everything will b done thru flashing script... U can say
Its a one click install rom.
[email protected] said:
It is a fastboot rom.... Can b flashed thru fastboot mode without twrp/custom recovery. No need to unlock bootloader seperately.
Everything will b done thru flashing script... U can say
Its a one click install rom.
Click to expand...
Click to collapse
thx
[email protected] said:
TWRP+Magisk20.1
Gcam
Click to expand...
Click to collapse
Gcam not work
without root
in TWRP 3.2.3(!) not work, mtp, adb, microsb
in archive missing generate_image.exe
Code:
934 I ActivityManager: START u0 {act=android.content.pm.action.REQUEST_PERMISSIONS pkg=com.google.android.packageinstaller cmp=com.google.android.packageinstaller/com.android.packageinstaller.permission.ui.GrantPermissionsActivity (has extras)} from uid 10230
10-28 16:42:04.510 1532 3811 D StorageManagerService: UID 10230 is actively using camera; letting them defy reserved cached data
--------- beginning of crash
10-28 16:42:04.570 8619 8665 E AndroidRuntime: FATAL EXCEPTION: GoogleApiHandler
10-28 16:42:04.570 8619 8665 E AndroidRuntime: Process: com.google.android.GoogleCamera, PID: 8619
10-28 16:42:04.570 8619 8665 E AndroidRuntime: java.lang.SecurityException: GoogleCertificatesRslt: not whitelisted: pkg=com.google.android.GoogleCamera, sha1=61ed377e85d386a8dfee6b864bd85b0bfaa5af81, atk=false, ver=14848037.true
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Parcel.createException(Parcel.java:1950)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1918)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1868)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at ksy.a(Unknown Source:35)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at krq.a(Unknown Source:98)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at lar.run(Unknown Source:54)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:873)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:99)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.Looper.loop(Looper.java:193)
10-28 16:42:04.570 8619 8665 E AndroidRuntime: at android.os.HandlerThread.run(HandlerThread.java:65)
10-28 16:42:04.620 1532 8279 W ActivityManager: Force finishing activity com.google.android.GoogleCamera/com.android.camera.CameraLauncher
10-28 16:42:04.639 1532 8279 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1005 com.android.server.am.AppErrors.crashApplicationInner:469 com.android.server.am.AppErrors.crashApplication:392 com.android.server.am.ActivityManagerService.handleApplicationCrashInner:15805 com.android.server.am.ActivityManagerService.handleApplicationCrash:15771
10-28 16:42:04.644 1532 1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
10-28 16:42:04.644 1532 1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
--------- beginning of main
10-28 16:42:04.693 949 8767 I chatty : uid=1047(cameraserver) /system/bin/cameraserver expire 3 lines
10-28 16:42:04.708 1532 5145 I WindowManager: WIN DEATH: Window{a97e4c3 u0 com.google.android.GoogleCamera/com.android.camera.CameraLauncher}
10-28 16:42:04.708 1532 8108 I ActivityManager: Process com.google.android.GoogleCamera (pid 8619) has died: vis +99TOP
10-28 16:42:04.710 1532 1588 I chatty : uid=1000(system) ActivityManager expire 8 lines
10-28 16:42:04.710 795 8752 I chatty : uid=1047(cameraserver) [email protected] expire 4 lines
10-28 16:42:04.713 1532 3227 I WindowManager: WIN DEATH: Window{263b47e u0 Toast}
10-28 16:42:04.713 1532 3227 I chatty : uid=1000(system) Binder:1532_3 expire 1 line
10-28 16:42:04.732 831 1286 W SurfaceFlinger: Attempting to set client state on removed layer: com.google.android.GoogleCamera/com.android.camera.CameraLauncher#0
10-28 16:42:04.732 831 1286 W SurfaceFlinger: Attempting to destroy on removed layer: com.google.android.GoogleCamera/com.android.camera.CameraLauncher#0
10-28 16:42:04.736 795 8785 I chatty : uid=1047(cameraserver) [email protected] expire 2 lines
10-28 16:42:04.739 831 906 E BufferQueueProducer: [SurfaceView - com.google.android.GoogleCamera/com.android.camera.CameraLauncher#0] queueBuffer: BufferQueue has been abandoned
10-28 16:42:04.743 815 840 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
10-28 16:42:04.743 815 840 E ANDR-PERF-OPTSHANDLER: Perflock resource /sys/devices/system/cpu/cpu0/cpufreq/schedutil/hispeed_load not supported
10-28 16:42:04.743 815 840 E ANDR-PERF-OPTSHANDLER: Perflock resource /sys/devices/system/cpu/cpu0/cpufreq/schedutil/hispeed_freq not supported
10-28 16:42:04.749 1532 1587 W ActivityManager: Slow operation: 142ms so far, now at startProcess: returned from zygote!
10-28 16:42:04.752 746 746 I Zygote : Process 8619 exited due to signal (9)
10-28 16:42:04.763 8821 8821 I chatty : uid=10230(u0_a230) expire 4 lines
10-28 16:42:04.763 1532 1587 W ActivityManager: Slow operation: 156ms so far, now at startProcess: done updating battery stats
10-28 16:42:04.763 1532 1587 W ActivityManager: Slow operation: 156ms so far, now at startProcess: building log message
10-28 16:42:04.763 1532 1587 I ActivityManager: Start proc 8821:com.google.android.GoogleCamera:crash_report/u0a230 for service com.google.android.GoogleCamera/com.google.android.apps.camera.app.silentfeedback.SilentFeedbackService
10-28 16:42:04.763 1532 1587 W ActivityManager: Slow operation: 156ms so far, now at startProcess: starting to update pids map
10-28 16:42:04.763 1532 1587 W ActivityManager: Slow operation: 156ms so far, now at startProcess: done updating pids map
10-28 16:42:04.768 831 1286 E BufferQueueProducer: [SurfaceView - com.google.android.GoogleCamera/com.android.camera.CameraLauncher#0] queueBuffer: BufferQueue has been abandoned
10-28 16:42:04.769 949 1913 I chatty : uid=1047(cameraserver) HwBinder:949_3 expire 12 lines
10-28 16:42:04.771 4271 4271 D Launcher.Utilities: onLauncherStart: 0
10-28 16:42:04.773 1532 3811 W ActivityManager: Unable to start service Intent { act=com.android.launcher3.WINDOW_OVERLAY dat=app://ch.deletescape.lawnchair.ci:10038?v=7&cv=9 pkg=com.google.android.googlequicksearchbox } U=0: not found
10-28 16:42:04.803 831 3852 E BufferQueueProducer: [SurfaceView - com.google.android.GoogleCamera/com.android.camera.CameraLauncher#0] queueBuffer: BufferQueue has been abandoned
10-28 16:42:04.815 795 1794 I chatty : uid=1047(cameraserver) HwBinder:795_1 expire 122 lines
10-28 16:42:04.818 815 840 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only
10-28 16:42:04.853 795 8804 I chatty : uid=1047(cameraserver) [email protected] expire 1 line
10-28 16:42:04.893 795 8841 I chatty : uid=1047(cameraserver) [email protected] expire 2 lines
10-28 16:42:04.894 795 8842 I chatty : uid=1047(cameraserver) [email protected] expire 2 lines
10-28 16:42:04.895 795 8843 I chatty : uid=1047(cameraserver) [email protected] expire 3 lines
10-28 16:42:04.896 795 8844 I chatty : uid=1047(cameraserver) [email protected] expire 2 lines
10-28 16:42:04.903 8821 8821 E AndroidRuntime: FATAL EXCEPTION: main
10-28 16:42:04.903 8821 8821 E AndroidRuntime: Process: com.google.android.GoogleCamera:crash_report, PID: 8821
10-28 16:42:04.903 8821 8821 E AndroidRuntime: java.lang.SecurityException: GoogleCertificatesRslt: not whitelisted: pkg=com.google.android.GoogleCamera, sha1=61ed377e85d386a8dfee6b864bd85b0bfaa5af81, atk=false, ver=14848037.true
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at android.os.Parcel.createException(Parcel.java:1950)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1918)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1868)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at ksy.a(Unknown Source:35)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at krq.a(Unknown Source:98)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at kzw.a(Unknown Source:98)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at laa.run(Unknown Source:21)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:458)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:266)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at kwm.run(Unknown Source:7)
10-28 16:42:04.903 8821 8821 E AndroidRuntime: at java.lang.Thread.run(Thread.java:764)
10-28 16:42:04.908 1532 8820 W ActivityManager: Process com.google.android.GoogleCamera has crashed too many times: killing!
10-28 16:42:04.910 1532 8820 I ActivityManager: Killing 8821:com.google.android.GoogleCamera:crash_report/u0a230 (adj 500): crash
10-28 16:42:04.914 795 8846 I chatty : uid=1047(cameraserver) [email protected] expire 5 lines
10-28 16:42:04.918 795 8848 I chatty : uid=1047(cameraserver) [email protected] expire 2 lines
10-28 16:42:04.932 1532 1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
10-28 16:42:04.933 1532 1585 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
10-28 16:42:04.937 802 843 I SDM : ResourceImpl::SetMaxBandwidthMode: new bandwidth mode=0
10-28 16:42:04.947 439 439 E SELinux : avc: denied { find } for interface=vendor.lineage.camera.motor::ICameraMotor sid=u:r:cameraserver:s0 pid=949 scontext=u:r:cameraserver:s0 tcontext=u:object_r:default_android_hwservice:s0 tclass=hwservice_manager permissive=0
THANK YOU!!!!!!
[email protected] said:
This file is exclusively prepared by BN_P
for
Asus Zenfone Max M2 (X01AD). It is havoc Pie 2.9 on pie vendor, Firmware-JP-16.2018.1910.52.
How to ::
1. Confirm your device model as above.
2. No need to be worried on which build your device is presently. This Rom can be flashed on any build.
3. Only for windows users, flashing can be done in windows only.
Before start flashing,
There is a file named "system+vendor.zip", unzip that, it will generate two file i.e. system.img and vendor.img
Put the above two .img files in the main folder i.e same location of flash_all.cmd.
4. Put your device in fastboot mode, connect to PC and run the flash_all.cmd, just double click on it.
5. Follow the pop up screen.
6. Data erase will be required after flashing before boot.
Best of luck
This ROM is included
TWRP+Magisk20.1
opengapps pico
Gcam
Ampere app
Google Phone Dialer
Safetynet Fixed
Bugs::
You tell me.
Thanks to::
@vincent for HavocOS GSI image.
[MENTION=268073]topjhonwu for magisk
Link for file
https://www.androidfilehost.com/?fid=4349826312261607460
Click to expand...
Click to collapse
Bootloader unlocking required or not ???
Techgaming432 said:
Bootloader unlocking required or not ???
Click to expand...
Click to collapse
Not required... Unlock will b done automatically by flash script
[email protected] said:
This file is exclusively prepared by BN_P
for
Asus Zenfone Max M2 (X01AD). It is havoc Pie 2.9 on pie vendor, Firmware-JP-16.2018.1910.52.
How to ::
1. Confirm your device model as above.
2. No need to be worried on which build your device is presently. This Rom can be flashed on any build.
3. Only for windows users, flashing can be done in windows only.
Before start flashing,
There is a file named "system+vendor.zip", unzip that, it will generate two file i.e. system.img and vendor.img
Put the above two .img files in the main folder i.e same location of flash_all.cmd.
4. Put your device in fastboot mode, connect to PC and run the flash_all.cmd, just double click on it.
5. Follow the pop up screen.
6. Data erase will be required after flashing before boot.
Best of luck
This ROM is included
TWRP+Magisk20.1
opengapps pico
Gcam
Ampere app
Google Phone Dialer
Safetynet Fixed
Bugs::
You tell me.
Thanks to::
@vincent for HavocOS GSI image.
[MENTION=268073]topjhonwu for magisk
Link for file
https://www.androidfilehost.com/?fid=4349826312261607460
Click to expand...
Click to collapse
Any other ROM like MIUI or Oxygen OS have for X01AD ??
Techgaming432 said:
Any other ROM like MIUI or Oxygen OS have for X01AD ??
Click to expand...
Click to collapse
Search.... I hv not made yet
[email protected] said:
Search.... I hv not made yet
Click to expand...
Click to collapse
Please made a MIUI 10 stable ROM i will give what you want but please made a MIUI 10 stable ROM
Techgaming432 said:
Please made a MIUI 10 stable ROM i will give what you want but please made a MIUI 10 stable ROM
Click to expand...
Click to collapse
May b in future
please tell me full process step by step
nixsting said:
please tell me full process step by step
Click to expand...
Click to collapse
Follow readme file inside
An error occurred when flashing the system image it says invalid sparse system in command prompt window and skips the system image from flashing
Please tell me the solve of the problem
Techgaming432 said:
An error occurred when flashing the system image it says invalid sparse system in command prompt window and skips the system image from flashing
Please tell me the solve of the problem
Click to expand...
Click to collapse
Did u unzipped system.zip and kept the system.img file at flashing folder....?
Plz follow readme file inside.
Before flashing ensure all img files are present
Sydtem.img
Vendor
Boot
Recovery
Other firmwire images
[email protected] said:
Did u unzipped system.zip and kept the system.img file at flashing folder....?
Plz follow readme file inside.
Click to expand...
Click to collapse
Yes i extracted the system+vendor zip file and moved the system.img and vendor.img file into the same location on flashall.cmd and exactly follow the guide but the error occurres
Techgaming432 said:
Yes i extracted the system+vendor zip file and moved the system.img and vendor.img file into the same location on flashall.cmd and exactly follow the guide but the error occurres
Click to expand...
Click to collapse
Post a screenshot
[email protected] said:
Post a screenshot
Click to expand...
Click to collapse
Ok I will try another time to flash if the erro occure then i will take a screenshot of the command prompt window and send it to you by today evening

Bootloop rooted Oneplus5 with Oxygen stock rom.

Hey forum, long time no see...
I have came back facing a problem with my OnePlus 5 running stock rom with ROOT.
I had to turn it off to replace the screen-protector but turning it back on was no dice.
A bootloop is happening where I see the screen to enter my PIN/password for 1 second after that the OS only reboots.
That means that I see the two dots and the white circle in red and not the boot-loader warning.
I have installed the latest TWRP on so I cleared dalvik and cache but that did not work either
I thought it might be magisk but uninstalling and/or reinstalling it did not fix the problem.
I have managed to authorize adb using TWEP recovery and pulled the logcat during the boot.
I hope the someone can help me debug this, there is some data in apps that need te recovert before doing a full wipe.
Code:
--------- beginning of crash
07-01 21:32:38.393 3572 3572 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 3572 (init), pid 3572 (init)
07-01 21:32:38.434 3572 3572 F libc : crash_dump helper failed to exec
07-01 21:32:38.461 1493 1493 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:32:38.461 1493 1493 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:32:38.461 1493 1493 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:32:38.580 3222 3222 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:32:38.580 3222 3222 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 3222
07-01 21:32:38.580 3222 3222 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:32:53.657 5246 5246 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 5246 (init), pid 5246 (init)
07-01 21:32:53.681 5246 5246 F libc : crash_dump helper failed to exec
07-01 21:32:53.724 3934 3934 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:32:53.724 3934 3934 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:32:53.724 3934 3934 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:08.878 6891 6891 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 6891 (init), pid 6891 (init)
07-01 21:33:08.940 6891 6891 F libc : crash_dump helper failed to exec
07-01 21:33:08.957 5597 5597 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:08.957 5597 5597 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:08.957 5597 5597 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:24.095 8546 8546 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 8546 (init), pid 8546 (init)
07-01 21:33:24.130 8546 8546 F libc : crash_dump helper failed to exec
07-01 21:33:24.157 7270 7270 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:24.157 7270 7270 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:24.157 7270 7270 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:24.291 8249 8249 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:33:24.291 8249 8249 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 8249
07-01 21:33:24.291 8249 8249 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:33:39.289 10285 10285 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 10285 (init), pid 10285 (init)
07-01 21:33:39.341 10285 10285 F libc : crash_dump helper failed to exec
07-01 21:33:39.382 8917 8917 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:39.382 8917 8917 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:39.382 8917 8917 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:54.474 11959 11959 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 11959 (init), pid 11959 (init)
07-01 21:33:54.524 11959 11959 F libc : crash_dump helper failed to exec
07-01 21:33:54.551 10651 10651 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:33:54.551 10651 10651 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:33:54.551 10651 10651 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:33:54.662 11661 11661 E AndroidRuntime: FATAL EXCEPTION: main
07-01 21:33:54.662 11661 11661 E AndroidRuntime: Process: com.google.android.gms.persistent, PID: 11661
07-01 21:33:54.662 11661 11661 E AndroidRuntime: DeadSystemException: The system died; earlier logs will point to the root cause
07-01 21:34:09.646 13627 13627 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 13627 (init), pid 13627 (init)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main
07-01 21:34:09.697 12319 12319 E AndroidRuntime: java.lang.IllegalArgumentException: provider doesn't exist: fused
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdatesLocked(LocationManagerService.java:2775)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.LocationManagerService.requestLocationUpdates(LocationManagerService.java:2755)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:1042)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.location.LocationManager.requestLocationUpdates(LocationManager.java:950)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.twilight.TwilightService.startListening(TwilightService.java:261)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.twilight.TwilightService.handleMessage(TwilightService.java:210)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:569)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:377)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:516)
07-01 21:34:09.697 12319 12319 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:928)
07-01 21:34:09.698 13627 13627 F libc : crash_dump helper failed to exe
c

Categories

Resources