├── .gitattributes ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── ReadMe.txt ├── assets ├── .gitkeep ├── 2023-02-26_16-00-21.png ├── 2023-02-26_20-59-33.png ├── 2023-02-26_21-00-29.png ├── Screenshot_20230226-130051.png ├── Screenshot_Folders_databackup_20220420-224223.png └── Screenshot_inside_databackup_20220420-224252.png ├── changelog.md ├── customize.sh ├── module.json ├── module.prop └── system └── bin └── data_backup.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/2023-02-26_16-00-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/2023-02-26_16-00-21.png -------------------------------------------------------------------------------- /assets/2023-02-26_20-59-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/2023-02-26_20-59-33.png -------------------------------------------------------------------------------- /assets/2023-02-26_21-00-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/2023-02-26_21-00-29.png -------------------------------------------------------------------------------- /assets/Screenshot_20230226-130051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/Screenshot_20230226-130051.png -------------------------------------------------------------------------------- /assets/Screenshot_Folders_databackup_20220420-224223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/Screenshot_Folders_databackup_20220420-224223.png -------------------------------------------------------------------------------- /assets/Screenshot_inside_databackup_20220420-224252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/assets/Screenshot_inside_databackup_20220420-224252.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/customize.sh -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/module.json -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/module.prop -------------------------------------------------------------------------------- /system/bin/data_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziandzivan/data_backup/HEAD/system/bin/data_backup.sh --------------------------------------------------------------------------------