CIE Codice Errore 4 "proprietà non sicure"

buongiorno a tutti

una soluzione per lineageOS 20 android 13 l’ho trovata qui’

https://www.reddit.com/r/LineageOS/comments/ufwczu/heres_how_to_make_banking_apps_work_on_lineage_os/

nello specifico questa parte:

  1. Enable developer tools, inside enable 2 settings, debugging & debug as root
  2. For further steps you need to have adb tools installed + android usb drivers, you can google this stuff pretty easily
  3. launch cmd as an admin, set directory where your adb executable is, for me it’s c:\adb\
  4. type “adb root”
  5. here we need to copy current build.prop file to our pc

type "adb pull /system/build.prop c:\adb"

  1. you need to edit file now, I use Sublime Text as an editor

set ro.secure value to 1 (it’s likely it’s already 1 actually)

and ro.debuggable to 0

save the file changes

  1. now we need to push edited file from pc to you android phone and replace original there

type “adb remount”

then “adb push c:\adb\build.prop /system/build.prop”

  1. go to developer tools, disable settings we enabled in step 1 and you can also disable developer tools

  2. you have to restart phone here, otherwise it won’t work, after phone is restarted your banking apps should work (at least mine did)

  3. keep in mind you will have to do this every time you do the update, it actually takes couple of minutes once you get used to it, not too much of work