├── .github └── FUNDING.yml ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── YT-Amoled ├── YT-MaterialYou ├── addon └── VolumeKey-Selector.zip ├── customize.sh ├── dynmount.sh ├── module.prop ├── post-fs-data.sh ├── releases ├── YT-Changelog.md └── YT-Update.json └── uninstall.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/README.md -------------------------------------------------------------------------------- /YT-Amoled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/YT-Amoled -------------------------------------------------------------------------------- /YT-MaterialYou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/YT-MaterialYou -------------------------------------------------------------------------------- /addon/VolumeKey-Selector.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/addon/VolumeKey-Selector.zip -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/customize.sh -------------------------------------------------------------------------------- /dynmount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/dynmount.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /releases/YT-Changelog.md: -------------------------------------------------------------------------------- 1 | ### 18.46.40 2 | 3 | 1. YouTube ReVanced app has been updated. 4 | 5 | -------------------------------------------------------------------------------- /releases/YT-Update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/releases/YT-Update.json -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RabehX/YT-ReVanced-Module/HEAD/uninstall.sh --------------------------------------------------------------------------------