├── .github ├── FUNDING.yml └── workflows │ └── repo-activity.yml ├── LICENSE ├── README.md ├── image.png └── scripts └── update_repo_activity.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ReVanced 2 | -------------------------------------------------------------------------------- /.github/workflows/repo-activity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jman-Github/Awesome-ReVanced/HEAD/.github/workflows/repo-activity.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jman-Github/Awesome-ReVanced/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jman-Github/Awesome-ReVanced/HEAD/README.md -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jman-Github/Awesome-ReVanced/HEAD/image.png -------------------------------------------------------------------------------- /scripts/update_repo_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jman-Github/Awesome-ReVanced/HEAD/scripts/update_repo_activity.py --------------------------------------------------------------------------------