VIM4 build.prop editor apk Save error

Device:VIM4
OS: Android 11 64 bit latest image downloaded by oowow

Hello everybody. I edit build.prop file using build.prop editor app to make changes in system model name and number but when saving I get this error below in the photo. My device is already rooted. It says check root priveledges. I checked app’s info and gave all permissions but still I get error. How can I do it?
Thanks in advance & Best Regards
Ziya

Hello @zet34

@goenjoy @xiong.zhang will help you then.

1 Like

@zet34 You need to use the network ADB command to modify it. Pull the corresponding file through the ADB command, modify the file, push it in through the ADB command, and finally restart the machine to take effect. The network ADB command demo is as follows:

C:\Users\25348>adb connect 192.168.31.66
connected to 192.168.31.66:5555

C:\Users\25348>adb root

C:\Users\25348>adb connect 192.168.31.66
connected to 192.168.31.66:5555

C:\Users\25348>adb remount
Using overlayfs for /system
Using overlayfs for /system_ext
Using overlayfs for /vendor
Using overlayfs for /product
Using overlayfs for /odm
Now reboot your device for settings to take effect
remount succeeded

C:\Users\25348>adb pull vendor/build.prop .
vendor/build.prop: 1 file pulled. 0.4 MB/s (4689 bytes in 0.010s)

C:\Users\25348>adb push C:\Users\25348\build.prop vendor/build.prop
C:\Users\25348\build.prop: 1 file pushed. 0.4 MB/s (4689 bytes in 0.011s)

C:\Users\25348>adb shell sync

C:\Users\25348>adb reboot
1 Like

OK Thank you!
Best Regards
Ziya