After installing an OTA update my phone bootlooped so I made a TWRP backup and did a clean install of the latest version of the ROM I'm using but restoring the backup using TWRP bootloop my phone again. I only need to restore one or two apps. I know that I can extract the files by adding .tar
and opening them with WinRAR.
Now my question is : What files I need to move from the backup to my phone to restore the data of a single app manually?
- ROM : Pixel Experience Plus (Official)
- Android : 11
- Magisk : 22.0
I tried copying the data from /data/data/com.exemple.idk
and replacing the new ones in my phone but that doesn't seem to work. Is there anything else I need to copy from the backup files?
root_appbackup.sh
tells you what goes into an app's backup (ie what files to look for), androot_apprestore.sh
how it is restored. Maybe that helps? – Izzy Apr 04 '21 at 16:12chown
step is the important one, and maybechcon
too) – alecxs Apr 04 '21 at 18:13chown
andchcon
but I realized that the subfolders have a different group and that's what solved my problem. – Yox Apr 04 '21 at 22:42-R
flag very last line in the linked duplicate – alecxs Apr 05 '21 at 02:35