残页

Results 143 comments of 残页

According to #6226 removing `vbmeta.img` from AP.tar before patching/flashing might help. Have you tried that?

``` 07-29 20:14:02.760 5306 5306 I : Magisk 25.2(25200) daemon started 07-29 20:14:02.761 5306 5306 I : * Device API level: 32 07-29 20:14:02.770 5306 5308 I : ** post-fs-data...

Does your device use full-disk encryption(FDE)? If you don't know what's it, execute `getprop ro.crypto.type`. A full bootlog (logcat when it boots) is also required

Maybe [this library](https://github.com/Rosemoe/Sora-Editor) is a better choice? Tested showing a 10M+ txt file and all works good.

String不可变,StringBuilder/StringBuffer可变,StringBuilder非线程安全,StringBuffer线程安全。建议需要经常改变的字符串使用StringBuilder/StringBuffer。

HandlerThread=Handler+Thread,是一个非常方便的封装类,要注意的是HandlerThread不会自动停止,必须手动调用quit()方法。 关于使用场景,我一般都是开一个HandlerThread当全局的工作线程处理那些杂物(而且我会设置为守护线程,同时把优先级调成背景线程),比如不重要的文件读写操作直接扔给这个线程,免得卡主线程。至于怎么用楼上已经说的很清楚了,不再赘述。

It seems that Magisk accesses it too early and `/data/data` not decrypted yet?

According to John's comments, just unmounting `app_process` also breaks system? So it's no need to add SystemUI to denylist, just turning Zygisk on is enough to break the system?

So it's irrelevant to denylist settings, the check cannot be removed until we actually fixes it

I reproduced a similar crash by adding `Runtime.getRuntime().gc()` between `updateDeclaringClass` and `Method.invoke`. I think it is caused by its declaring class gets moved again after we manually update it. I...