chenxiaolong / BCR

A Basic Call Recorder for rooted Android devices
GNU General Public License v3.0
1.67k stars 109 forks source link

Flashing zip via recovery fails on TWRP (Lineage GSI 19) #415

Closed SharmaPawan11 closed 1 year ago

SharmaPawan11 commented 1 year ago

Here's the recovery log file -

recovery.log

chenxiaolong commented 1 year ago

Thanks for the logs. It looks like the problem is that the system partition is mounted as read-write:

+ mount -o remount,rw /system_root

but writes are still being denied:

+ unzip -o /sideload/package.zip system/* -d /system_root
unknown fuse request opcode 2016
Archive:  /sideload/package.zip
unzip: can't open 'system/addon.d/51-com.chiller3.bcr.sh': Read-only file system

If you want to stick with your currently ROM, you'll probably have to install BCR as a Magisk module instead.

SharmaPawan11 commented 1 year ago

Okay, Thanks.