├── .DS_Store ├── .dockerignore ├── .env ├── .env.example ├── .env.my ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml ├── issue-branch.yml └── workflows │ ├── auto-release.yml │ ├── build-apk.yml │ ├── build-artifact.yml │ ├── delete-all-releases-and-tags.yml │ ├── delete-old-workflow-runs.yml │ ├── dockerhub-base.yml │ ├── dockerhub.yml │ ├── github-cleanup.yml │ ├── newapp-check.yml │ ├── pr-checks.yml │ ├── print-secrets.yml │ ├── scheduled-build.yml │ ├── telegram-uploader-custom.yml │ ├── update.yml │ └── virus-total-scan.yml ├── .gitignore ├── .hadolint.yaml ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .shellcheckrc ├── .trunk ├── .gitignore └── trunk.yaml ├── CNAME ├── Dockerfile ├── Dockerfile-base ├── LICENSE ├── README.md ├── TODOs.md ├── apks ├── README.md ├── additional-resources │ └── custom-icon-resources │ │ ├── custom-presets │ │ └── yt-legacy-style │ │ │ └── branding │ │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── default-presets │ │ ├── branding-music │ │ └── legacy │ │ │ └── launchericon │ │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ └── branding │ │ ├── mipmap-hdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png ├── latest-parsed-version.md ├── options.json ├── populate_client_id.sh └── revanced.keystore ├── changelog.json ├── changelog.md ├── check_resource_updates.py ├── docker-compose-local.yml ├── docker-compose.yml ├── entrypoint ├── main.py ├── pyproject.toml ├── readme-history ├── README-07-08-2023.md ├── README-07-10-2023.md ├── README-11-08-2023.md ├── README-12-06-2023.md ├── README-15-08-2024.md └── README-ORIGINAL.md ├── requirements.txt ├── scripts ├── __init__.py ├── prefered_apps.py └── status_check.py ├── src ├── __init__.py ├── app.py ├── config.py ├── downloader │ ├── __init__.py │ ├── apkmirror.py │ ├── apkmonk.py │ ├── apkpure.py │ ├── apksos.py │ ├── download.py │ ├── factory.py │ ├── github.py │ ├── google_drive.py │ ├── sources.py │ └── uptodown.py ├── exceptions.py ├── manager │ ├── __init__.py │ ├── github.py │ └── release_manager.py ├── parser.py ├── patches.py └── utils.py └── updates.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.env.example -------------------------------------------------------------------------------- /.env.my: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.env.my -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @nikhilbadyal 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/issue-branch.yml -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/auto-release.yml -------------------------------------------------------------------------------- /.github/workflows/build-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/build-apk.yml -------------------------------------------------------------------------------- /.github/workflows/build-artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/build-artifact.yml -------------------------------------------------------------------------------- /.github/workflows/delete-all-releases-and-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/delete-all-releases-and-tags.yml -------------------------------------------------------------------------------- /.github/workflows/delete-old-workflow-runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/delete-old-workflow-runs.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/dockerhub-base.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/github-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/github-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/newapp-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/newapp-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/print-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/print-secrets.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/scheduled-build.yml -------------------------------------------------------------------------------- /.github/workflows/telegram-uploader-custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/telegram-uploader-custom.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.github/workflows/virus-total-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.github/workflows/virus-total-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- 1 | *out 2 | *logs 3 | plugins 4 | user_trunk.yaml 5 | -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docker-py-revanced.nikhilbadyal.com 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/Dockerfile-base -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/README.md -------------------------------------------------------------------------------- /TODOs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/TODOs.md -------------------------------------------------------------------------------- /apks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/README.md -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/custom-presets/yt-legacy-style/branding/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/adaptiveproduct_youtube_music_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/adaptiveproduct_youtube_music_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/adaptiveproduct_youtube_music_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/adaptiveproduct_youtube_music_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-hdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/adaptiveproduct_youtube_music_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/adaptiveproduct_youtube_music_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/adaptiveproduct_youtube_music_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/adaptiveproduct_youtube_music_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-mdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/adaptiveproduct_youtube_music_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/adaptiveproduct_youtube_music_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/adaptiveproduct_youtube_music_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/adaptiveproduct_youtube_music_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/adaptiveproduct_youtube_music_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/adaptiveproduct_youtube_music_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/adaptiveproduct_youtube_music_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/adaptiveproduct_youtube_music_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/adaptiveproduct_youtube_music_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/adaptiveproduct_youtube_music_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/adaptiveproduct_youtube_music_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/adaptiveproduct_youtube_music_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding-music/legacy/launchericon/mipmap-xxxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_background_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_background_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_foreground_color_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/adaptiveproduct_youtube_foreground_color_108.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/additional-resources/custom-icon-resources/default-presets/branding/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apks/latest-parsed-version.md: -------------------------------------------------------------------------------- 1 | v5.0.1 2 | -------------------------------------------------------------------------------- /apks/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/options.json -------------------------------------------------------------------------------- /apks/populate_client_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/populate_client_id.sh -------------------------------------------------------------------------------- /apks/revanced.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/apks/revanced.keystore -------------------------------------------------------------------------------- /changelog.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check_resource_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/check_resource_updates.py -------------------------------------------------------------------------------- /docker-compose-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/docker-compose-local.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/entrypoint -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme-history/README-07-08-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-07-08-2023.md -------------------------------------------------------------------------------- /readme-history/README-07-10-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-07-10-2023.md -------------------------------------------------------------------------------- /readme-history/README-11-08-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-11-08-2023.md -------------------------------------------------------------------------------- /readme-history/README-12-06-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-12-06-2023.md -------------------------------------------------------------------------------- /readme-history/README-15-08-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-15-08-2024.md -------------------------------------------------------------------------------- /readme-history/README-ORIGINAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/readme-history/README-ORIGINAL.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | """Common utilities.""" 2 | -------------------------------------------------------------------------------- /scripts/prefered_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/scripts/prefered_apps.py -------------------------------------------------------------------------------- /scripts/status_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/scripts/status_check.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | """Main Source Code.""" 2 | -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/app.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/config.py -------------------------------------------------------------------------------- /src/downloader/__init__.py: -------------------------------------------------------------------------------- 1 | """Downloader files.""" 2 | -------------------------------------------------------------------------------- /src/downloader/apkmirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/apkmirror.py -------------------------------------------------------------------------------- /src/downloader/apkmonk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/apkmonk.py -------------------------------------------------------------------------------- /src/downloader/apkpure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/apkpure.py -------------------------------------------------------------------------------- /src/downloader/apksos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/apksos.py -------------------------------------------------------------------------------- /src/downloader/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/download.py -------------------------------------------------------------------------------- /src/downloader/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/factory.py -------------------------------------------------------------------------------- /src/downloader/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/github.py -------------------------------------------------------------------------------- /src/downloader/google_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/google_drive.py -------------------------------------------------------------------------------- /src/downloader/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/sources.py -------------------------------------------------------------------------------- /src/downloader/uptodown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/downloader/uptodown.py -------------------------------------------------------------------------------- /src/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/exceptions.py -------------------------------------------------------------------------------- /src/manager/__init__.py: -------------------------------------------------------------------------------- 1 | """Release patch resource manager.""" 2 | -------------------------------------------------------------------------------- /src/manager/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/manager/github.py -------------------------------------------------------------------------------- /src/manager/release_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/manager/release_manager.py -------------------------------------------------------------------------------- /src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/parser.py -------------------------------------------------------------------------------- /src/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/patches.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spacellary/ReVanced-Extended-Automated-Builder/HEAD/src/utils.py -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------