[9.0][ResurrectionRemix][ROM] [Z00L/Z00T]

daniu

Senior Member
Feb 27, 2009
845
393
0
so I have used this ROM for 3 days now and have had to clean flash it 3 times, it works smoothly but then out of nowhere it will lag a lot for a minute and the only option is to restart and when I restart it will result in a boot loop from where the only fix is to clean flash the ROM again, can anybody please help me out here? It's getting annoying. :(
(Quoting the actual problem once more)
I had this issue on crdroid (april build) but not on rr (may build). Are you guys sure you still have it with latest build?

In the beginning I thought it was xposed or something else evil I had been doing ...

Worst part is that titanium backup claims to be able to restore apps from nandroid, takes forever to pretend doing it but so far failed for me always ... (in case someone wants to try: it only works when the backup is on the internal sd - moving the backup to there works)
 
Last edited:

fabricio6791

Senior Member
Jul 29, 2017
132
16
18
(Quoting the actual problem once more)
I had this issue on crdroid (april build) but not on rr (may build). Are you guys sure you still have it with latest build?

In the beginning I thought it was xposed or something else evil I had been doing ...

Worst part is that titanium backup claims to be able to restore apps from nandroid, takes forever to pretend doing it but so far failed for me always ... (in case someone wants to try: it only works when the backup is on the internal sd - moving the backup to there works)
yes...i have with last build
 

criceto45

Senior Member
May 6, 2017
126
9
0
occhiobello
so I have used this ROM for 3 days now and have had to clean flash it 3 times, it works smoothly but then out of nowhere it will lag a lot for a minute and the only option is to restart and when I restart it will result in a boot loop from where the only fix is to clean flash the ROM again, can anybody please help me out here? It's getting annoying. :(
Has the problem been solved? thank you
 

daniu

Senior Member
Feb 27, 2009
845
393
0
unfortunately I have to add one more case to this record ...
due to this problem I would like to copy app data from 2 apps (sms and whatsapp) to my new system. I made a copy of my /data partition in TWRP. Can someone tell me what I need to copy to where? My SMS program does not use the system SMS database so I hope that it is easier /possible at all ...
 

pbgapski

Senior Member
Jun 30, 2014
115
39
48
due to this problem I would like to copy app data from 2 apps (sms and whatsapp) to my new system. I made a copy of my /data partition in TWRP. Can someone tell me what I need to copy to where? My SMS program does not use the system SMS database so I hope that it is easier /possible at all ...
Here is what I do when I encounter the bootloop:
1. reboot into twrp
2. use the twrp file manager to go to /data/data/
3. take a look at your installed apps and choose what you want to keep
4. connect your phone to your desktop with a usb cable that has adb
5. write the full names of the apps into a file named apps.list
6. backup the data of your selected apps with this script:
Code:
#!/bin/bash                                                                                                                                                                                                                                                                                                                                                                          
mkdir -p apps                                                                                                                                                                              
for i in $(cat apps.list); do                                                                                                                                                              
        echo "backing up $i"                                                                                                                                                               
        adb pull -a /data/data/$i apps/                                                                                                                                                    
done
7. reset your phone or whatever, boot android and install your selected apps again
8. after all apps are installed, reboot to TWRP
9. restore the data of your loved apps running this script on your desktop:
Code:
#!/bin/bash                                                                                                                                                                                                                                                                                                                                                                          
set -e                                                                                                                                                                                                                                                                                                                                                                                
for i in $(cat apps.list); do                                                                                                                                                              
    echo "restoring $i"                                                                                                                                                                    
    userId=$(adb shell ls -ld /data/data/$i | grep $i | cut -d' ' -f6)                                                                                                                     
    groupId=$(adb shell ls -ld /data/data/$i | grep $i | cut -d' ' -f8)                                                                                                                    
    echo "ownership is $userId:$groupId"                                                                                                                                                   
    echo "pushing backup data"                                                                                                                                                             
    (cd apps && adb push $i /data/data/)                                                                                                                                                   
    adb shell chown -R $userId:$groupId /data/data/$i                                                                                                                                      
    adb shell restorecon -Rv /data/data/$i                                                                                                                                                 
done
This works for me and may be usefull for you. Good luck!
 
  • Like
Reactions: daniu

daniu

Senior Member
Feb 27, 2009
845
393
0
Here is what I do when I encounter the bootloop:
1. reboot into twrp
2. use the twrp file manager to go to /data/data/
3. take a look at your installed apps and choose what you want to keep
4. connect your phone to your desktop with a usb cable that has adb
5. write the full names of the apps into a file named apps.list
6. backup the data of your selected apps with this script:
Code:
#!/bin/bash                                                                                                                                                                                                                                                                                                                                                                          
mkdir -p apps                                                                                                                                                                              
for i in $(cat apps.list); do                                                                                                                                                              
        echo "backing up $i"                                                                                                                                                               
        adb pull -a /data/data/$i apps/                                                                                                                                                    
done
7. reset your phone or whatever, boot android and install your selected apps again
8. after all apps are installed, reboot to TWRP
9. restore the data of your loved apps running this script on your desktop:
Code:
#!/bin/bash                                                                                                                                                                                                                                                                                                                                                                          
set -e                                                                                                                                                                                                                                                                                                                                                                                
for i in $(cat apps.list); do                                                                                                                                                              
    echo "restoring $i"                                                                                                                                                                    
    userId=$(adb shell ls -ld /data/data/$i | grep $i | cut -d' ' -f6)                                                                                                                     
    groupId=$(adb shell ls -ld /data/data/$i | grep $i | cut -d' ' -f8)                                                                                                                    
    echo "ownership is $userId:$groupId"                                                                                                                                                   
    echo "pushing backup data"                                                                                                                                                             
    (cd apps && adb push $i /data/data/)                                                                                                                                                   
    adb shell chown -R $userId:$groupId /data/data/$i                                                                                                                                      
    adb shell restorecon -Rv /data/data/$i                                                                                                                                                 
done
This works for me and may be usefull for you. Good luck!
I don't really get why you do not do all this in twrp but it is great - I will try it tonight. If I understand correctly I need to install the app properly first, I cannot just copy all necessary data to somewhere ...

I guess for the 2 apps I need I will probably do all that manually
 

pbgapski

Senior Member
Jun 30, 2014
115
39
48
I don't really get why you do not do all this in twrp but it is great - I will try it tonight. If I understand correctly I need to install the app properly first, I cannot just copy all necessary data to somewhere ...
This is all in TWRP, so it works even without root; I use the PC and adb so the process can be automated. And you have to reinstall the app to learn the user id it was given.
 

daniu

Senior Member
Feb 27, 2009
845
393
0
My phone just told me that there is a new build 7.02 - 19/06/15

Did anybody test it already? Is there a changelog somewhere more detailed than that:

====================
06-15-2019
====================
* packages/apps/Snap/ ceb4b7412 Snap: allow to disable image stabilization per device
* vendor/rr/ 51b75177 Merge pull request #124 from itsHardStyl3r/pie-md5sum 5f06600f resurrection: Fix md5 checksum files creation
 

fuady7

Senior Member
Nov 19, 2018
74
15
8
Changelog:
====================
06-15-2019
====================


* packages/apps/Snap/
ceb4b7412 Snap: allow to disable image stabilization per device

* vendor/rr/
51b75177 Merge pull request #124 from itsHardStyl3r/pie-md5sum
5f06600f resurrection: Fix md5 checksum files creation
.
.
.
.
.
Btw, how about lag problem? Is it already fixed?
@AlexZorzi
 

AlexZorzi

Senior Member
Feb 25, 2019
66
105
43
verona
Changelog:
====================
06-15-2019
====================


* packages/apps/Snap/
ceb4b7412 Snap: allow to disable image stabilization per device

* vendor/rr/
51b75177 Merge pull request #124 from itsHardStyl3r/pie-md5sum
5f06600f resurrection: Fix md5 checksum files creation
.
.
.
.
.
Btw, how about lag problem? Is it already fixed?
@AlexZorzi
Should be better now but not totally fixed