├── .github ├── FUNDING.yml ├── actions │ ├── preparing │ │ └── action.yml │ ├── re-run │ │ └── action.yml │ └── release │ │ └── action.yml └── workflows │ ├── ci.yml │ └── manual-patch.yml ├── LICENSE ├── README.md ├── docs ├── Frequently Asked Questions.md └── image │ ├── Banner.png │ ├── FAQ │ ├── patching-app-1.png │ ├── patching-app-2.png │ ├── patching-app-3.png │ └── patching-app-4.png │ └── Readme.png └── src ├── _ks.keystore ├── build ├── Anddea-Revanced-Extended-Beta.sh ├── Anddea-Revanced-Extended.sh ├── BiliRoamingM.sh ├── Dropped-Patches-Revanced.sh ├── Piko.sh ├── Revanced-Beta.sh ├── Revanced-Experiment.sh ├── Revanced-Extended-Android-5.sh ├── Revanced-Extended-Android-6-7.sh ├── Revanced-Extended-Beta.sh ├── Revanced-Extended.sh ├── Revanced.sh └── utils.sh ├── etc ├── cf_warp.sh ├── ci.sh └── connection.sh ├── ks.keystore ├── options ├── BiliRoamingM.json ├── anddea.json ├── indrastorms.json ├── revanced-extended-android-5.json ├── revanced-extended-android-6-7.json └── revanced-extended.json └── patches ├── Duolingo ├── exclude-patches └── include-patches ├── GoogleNews ├── exclude-patches └── include-patches ├── Photomath ├── exclude-patches └── include-patches ├── Spotjfy-anddea ├── exclude-patches └── include-patches ├── Spotjfy-revanced ├── exclude-patches └── include-patches ├── bilibili-BiliRoamingM ├── exclude-patches └── include-patches ├── facebook ├── exclude-patches └── include-patches ├── fx-file-explorer-indrastorms ├── exclude-patches └── include-patches ├── gg-photos ├── exclude-patches └── include-patches ├── instagram-revanced-experiments ├── exclude-patches └── include-patches ├── instagram ├── exclude-patches └── include-patches ├── lightroom ├── exclude-patches └── include-patches ├── messenger ├── exclude-patches └── include-patches ├── nova-launcher-indrastorms ├── exclude-patches └── include-patches ├── pixiv ├── exclude-patches └── include-patches ├── rar ├── exclude-patches └── include-patches ├── reddit-anddea ├── exclude-patches └── include-patches ├── reddit-rve ├── exclude-patches └── include-patches ├── reddit ├── exclude-patches └── include-patches ├── soundcloud ├── exclude-patches └── include-patches ├── strava ├── exclude-patches └── include-patches ├── tasker-indrastorms ├── exclude-patches └── include-patches ├── telegram-revanced-experiments ├── exclude-patches └── include-patches ├── tiktok ├── exclude-patches └── include-patches ├── tumblr ├── exclude-patches └── include-patches ├── twitch ├── exclude-patches └── include-patches ├── twitter-piko ├── exclude-patches └── include-patches ├── twitter ├── exclude-patches └── include-patches ├── youtube-music-revanced-extended ├── exclude-patches └── include-patches ├── youtube-music-revanced ├── exclude-patches └── include-patches ├── youtube-music-rve-anddea ├── exclude-patches └── include-patches ├── youtube-revanced-extended-5 ├── exclude-patches └── include-patches ├── youtube-revanced-extended-6-7 ├── exclude-patches └── include-patches ├── youtube-revanced-extended ├── exclude-patches └── include-patches ├── youtube-revanced ├── exclude-patches └── include-patches └── youtube-rve-anddea ├── exclude-patches └── include-patches /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ReVanced 2 | -------------------------------------------------------------------------------- /.github/actions/preparing/action.yml: -------------------------------------------------------------------------------- 1 | name: Preparing to patch 2 | runs: 3 | using: "composite" 4 | steps: 5 | - name: Set up jdk 6 | uses: actions/setup-java@v4.5.0 7 | with: 8 | distribution: 'zulu' 9 | java-version: '17' 10 | # - name: Setup Cloudflare Warp 11 | # shell: bash 12 | # run: bash src/etc/cf_warp.sh 13 | -------------------------------------------------------------------------------- /.github/actions/re-run/action.yml: -------------------------------------------------------------------------------- 1 | name: Re-run workflow if github connection not stable 2 | runs: 3 | using: "composite" 4 | steps: 5 | - name: Re-run workflow if github connection not stable 6 | uses: actions/github-script@v7 7 | with: 8 | script: | 9 | const maxRetries = ${{ env.max_retries }}; 10 | let retryCount = Number('${{ env.retry_count }}'); 11 | const orgInput = '${{ env.org_event_input }}' || '${{ env.org_input }}'; 12 | if (retryCount < maxRetries) { 13 | retryCount += 1; 14 | await github.rest.actions.createWorkflowDispatch({ 15 | owner: context.repo.owner, 16 | repo: context.repo.repo, 17 | workflow_id: "manual-patch.yml", 18 | ref: context.ref, 19 | inputs: { 20 | 'retry_count': String(retryCount), 21 | 'org': orgInput 22 | } 23 | }); 24 | } -------------------------------------------------------------------------------- /.github/actions/release/action.yml: -------------------------------------------------------------------------------- 1 | name: Releasing APK files 2 | runs: 3 | using: "composite" 4 | steps: 5 | - name: Generate release info 6 | shell: bash 7 | run: | 8 | echo " 9 | **This repository is not like any other repository. It does not create new releases; it only releases new files.** 10 | **Forget about scrolling whole release page find files. Just read [Readme.md](../main/README.md#microg-revanced) file and select apps you want download.** 11 | **Change log** :point_down: 12 | [Revanced](https://github.com/revanced/revanced-patches/releases) 13 | [Revanced Extended](https://github.com/inotia00/revanced-patches/releases) 14 | [Revanced Extended anddea](https://github.com/anddea/revanced-patches/releases) 15 | [Revanced Extended for Android 6 & 7](https://github.com/kitadai31/revanced-patches-android6-7/releases) 16 | [Revanced Extended For Android 5:](https://github.com/d4n3436/revanced-patches-android5/releases) 17 | "> ${{ github.workspace }}-CHANGELOG.txt 18 | - name: Release 19 | uses: ncipollo/release-action@v1.14.0 20 | with: 21 | artifacts: | 22 | ./release/*.apk 23 | name: Revanced & Revanced Extended 24 | tag: all 25 | bodyFile: ${{ github.workspace }}-CHANGELOG.txt 26 | allowUpdates: true 27 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Check new patch 2 | permissions: write-all 3 | on: 4 | schedule: 5 | - cron: "0 9 * * *" 6 | workflow_dispatch: 7 | inputs: 8 | retry_count: 9 | description: 'Do not change value below' 10 | required: false 11 | default: '1' 12 | jobs: 13 | check: 14 | name: Check new patch 15 | runs-on: ubuntu-latest 16 | env: 17 | repository: ${{ github.repository }} 18 | steps: 19 | - name: Checkout 20 | uses: actions/checkout@v4.1.1 21 | - name: Check github connection 22 | id: check-gh 23 | run: bash src/etc/connection.sh 24 | - name: Check new patch ReVanced 25 | id: check-rv 26 | if: steps.check-gh.outputs.internet_error == '0' 27 | run: bash src/etc/ci.sh ReVanced/revanced-patches latest youtube-revanced.apk 28 | - name: Check new patch ReVanced Beta 29 | id: check-rv-beta 30 | if: steps.check-gh.outputs.internet_error == '0' 31 | run: bash src/etc/ci.sh ReVanced/revanced-patches prerelease youtube-beta-revanced.apk 32 | - name: Check new patch Spotjfy 33 | id: check-spotjfy 34 | if: steps.check-gh.outputs.internet_error == '0' 35 | run: bash src/etc/ci.sh ReVanced/revanced-patches latest spotjfy-arm64-v8a-revanced.apk 36 | - name: Check new patch Revanced Extended forked by Anddea Stable Version 37 | id: check-rve-anddea-stable 38 | if: steps.check-gh.outputs.internet_error == '0' 39 | run: bash src/etc/ci.sh anddea/revanced-patches latest youtube-stable-anddea.apk 40 | - name: Check new patch Revanced Extended forked by Anddea Beta Version 41 | id: check-rve-anddea-beta 42 | if: steps.check-gh.outputs.internet_error == '0' 43 | run: bash src/etc/ci.sh anddea/revanced-patches prerelease youtube-beta-anddea.apk 44 | - name: Check new patch Revanced Extended 45 | id: check-rve 46 | if: steps.check-gh.outputs.internet_error == '0' 47 | run: bash src/etc/ci.sh inotia00/revanced-patches latest youtube-revanced-extended.apk 48 | - name: Check new patch Revanced Extended Beta 49 | id: check-rve-beta 50 | if: steps.check-gh.outputs.internet_error == '0' 51 | run: bash src/etc/ci.sh inotia00/revanced-patches prerelease youtube-beta-revanced-extended.apk 52 | - name: Check new patch Twitter Piko Stable 53 | id: check-twitter-piko-stable 54 | if: steps.check-gh.outputs.internet_error == '0' 55 | run: bash src/etc/ci.sh crimera/piko latest twitter-stable-piko.apk 56 | - name: Check new patch Twitter Piko Beta 57 | id: check-twitter-piko-beta 58 | if: steps.check-gh.outputs.internet_error == '0' 59 | run: bash src/etc/ci.sh crimera/piko prerelease twitter-beta-piko.apk 60 | - name: Check new patch Revanced For Android 6 & 7 61 | id: check-rve67 62 | if: steps.check-gh.outputs.internet_error == '0' 63 | run: bash src/etc/ci.sh kitadai31/revanced-patches-android6-7 latest youtube-revanced-extended-android-6-7.apk 64 | - name: Check new patch Revanced For Android 5 65 | id: check-rve5 66 | if: steps.check-gh.outputs.internet_error == '0' 67 | run: bash src/etc/ci.sh d4n3436/revanced-patches-android5 latest youtube-revanced-extended-android-5.apk 68 | - name: Check new patch BiliRoamingM 69 | id: check-BiliRoamingM 70 | if: steps.check-gh.outputs.internet_error == '0' 71 | run: bash src/etc/ci.sh sakarie9/BiliRoamingM latest bilibili-BiliRoamingM.apk 72 | - name: Check new patch Revanced Experiments 73 | id: check-Revanced-Experiments 74 | if: steps.check-gh.outputs.internet_error == '0' 75 | run: bash src/etc/ci.sh Aunali321/ReVancedExperiments latest telegram-revanced-experiments.apk 76 | - name: Re-run workflow if github connection not stable 77 | if: always() && steps.check-rv.outcome == 'skipped' && env.retry_count < env.max_retries 78 | uses: actions/github-script@v7 79 | with: 80 | script: | 81 | const maxRetries = ${{ env.max_retries }}; 82 | let retryCount = ${{ env.retry_count }}; 83 | if (retryCount < maxRetries) { 84 | retryCount += 1; 85 | await github.rest.actions.createWorkflowDispatch({ 86 | owner: context.repo.owner, 87 | repo: context.repo.repo, 88 | workflow_id: "ci.yml", 89 | ref: context.ref, 90 | inputs: { 91 | 'retry_count': String(retryCount) 92 | } 93 | }); 94 | } 95 | env: 96 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 97 | retry_count: ${{ github.event.inputs.retry_count }} 98 | max_retries: 3 99 | outputs: 100 | check_rv: ${{ steps.check-rv.outputs.new_patch }} 101 | check_rv_beta: ${{ steps.check-rv-beta.outputs.new_patch }} 102 | check_spotjfy: ${{ steps.check-spotjfy.outputs.new_patch }} 103 | check_rve_anddea_stable: ${{ steps.check-rve-anddea-stable.outputs.new_patch }} 104 | check_rve_anddea_beta: ${{ steps.check-rve-anddea-beta.outputs.new_patch }} 105 | check_rve: ${{ steps.check-rve.outputs.new_patch }} 106 | check_rve_beta: ${{ steps.check-rve-beta.outputs.new_patch }} 107 | check_twitter_piko_stable: ${{ steps.check-twitter-piko-stable.outputs.new_patch }} 108 | check_twitter_piko_beta: ${{ steps.check-twitter-piko-beta.outputs.new_patch }} 109 | check_rve67: ${{ steps.check-rve67.outputs.new_patch }} 110 | check_rve5: ${{ steps.check-rve5.outputs.new_patch }} 111 | check_BiliRoamingM: ${{ steps.check-BiliRoamingM.outputs.new_patch }} 112 | check_Revanced_Experiments: ${{ steps.check-Revanced-Experiments.outputs.new_patch }} 113 | 114 | Patch-Revanced: 115 | name: Patch Revanced Stable 116 | needs: check 117 | if: ${{ needs.check.outputs.check_rv == 1 }} 118 | uses: ./.github/workflows/manual-patch.yml 119 | with: 120 | org: "Revanced" 121 | Patch-Revanced-Beta: 122 | name: Patch Revanced Beta 123 | needs: check 124 | if: ${{ needs.check.outputs.check_rv_beta == 1 }} 125 | uses: ./.github/workflows/manual-patch.yml 126 | with: 127 | org: "Revanced Beta" 128 | Patch-Spotjfy: 129 | name: Patch Spotjfy 130 | needs: check 131 | if: ${{ needs.check.outputs.check_spotjfy == 1 }} 132 | uses: ./.github/workflows/manual-patch.yml 133 | with: 134 | org: "Spotjfy" 135 | Patch-RVE-anddea-stable: 136 | name: Patch RVX Anddea Stable 137 | needs: check 138 | if: ${{ needs.check.outputs.check_rve_anddea_stable == 1 }} 139 | uses: ./.github/workflows/manual-patch.yml 140 | with: 141 | org: "RVE-anddea-stable" 142 | Patch-RVE-anddea-beta: 143 | name: Patch RVX Anddea Beta 144 | needs: check 145 | if: ${{ needs.check.outputs.check_rve_anddea_beta == 1 }} 146 | uses: ./.github/workflows/manual-patch.yml 147 | with: 148 | org: "RVE-anddea-beta" 149 | Patch-Revanced-Extended: 150 | name: Patch Revanced Extended 151 | needs: check 152 | if: ${{ needs.check.outputs.check_rve == 1 }} 153 | uses: ./.github/workflows/manual-patch.yml 154 | with: 155 | org: "Revanced Extended" 156 | Patch-Revanced-Extended-Beta: 157 | name: Patch Revanced Extended Beta 158 | needs: check 159 | if: ${{ needs.check.outputs.check_rve_beta == 1 }} 160 | uses: ./.github/workflows/manual-patch.yml 161 | with: 162 | org: "Revanced Extended Beta" 163 | Patch-Twitter-Piko-Stable: 164 | name: Patch Twitter Piko Stable 165 | needs: check 166 | if: ${{ needs.check.outputs.check_twitter_piko_stable == 1 }} 167 | uses: ./.github/workflows/manual-patch.yml 168 | with: 169 | org: "Twitter Piko Stable" 170 | Patch-Twitter-Piko-Beta: 171 | name: Patch Twitter Piko Beta 172 | needs: check 173 | if: ${{ needs.check.outputs.check_twitter_piko_beta == 1 }} 174 | uses: ./.github/workflows/manual-patch.yml 175 | with: 176 | org: "Twitter Piko Beta" 177 | Patch-Revanced-Extended-For-Android-6-7: 178 | name: Patch RVX Android 6 & 7 179 | needs: check 180 | if: ${{ needs.check.outputs.check_rve67 == 1 }} 181 | uses: ./.github/workflows/manual-patch.yml 182 | with: 183 | org: "Revanced Extended Android 6,7" 184 | Patch-Revanced-Extended-For-Android-5: 185 | name: Patch RVX Android 5 186 | needs: check 187 | if: ${{ needs.check.outputs.check_rve5 == 1 }} 188 | uses: ./.github/workflows/manual-patch.yml 189 | with: 190 | org: "Revanced Extended Android 5" 191 | Patch-BiliRoamingM: 192 | name: Patch BiliRoamingM 193 | needs: check 194 | if: ${{ needs.check.outputs.check_BiliRoamingM == 1 }} 195 | uses: ./.github/workflows/manual-patch.yml 196 | with: 197 | org: "BiliRoamingM" 198 | Patch-Revanced-Experiments: 199 | name: Patch Revanced Experiments 200 | needs: check 201 | if: ${{ needs.check.outputs.check_Revanced_Experiments == 1 }} 202 | uses: ./.github/workflows/manual-patch.yml 203 | with: 204 | org: "Revanced Experiments" 205 | -------------------------------------------------------------------------------- /.github/workflows/manual-patch.yml: -------------------------------------------------------------------------------- 1 | name: Manual Patch 2 | permissions: write-all 3 | env: 4 | repository: ${{ github.repository }} 5 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 6 | org_input: ${{ inputs.org }} 7 | org_event_input: ${{ github.event.inputs.org }} 8 | on: 9 | workflow_dispatch: 10 | inputs: 11 | org: 12 | description: 'Which "Revanced" do you want to patch?' 13 | required: true 14 | default: 'Revanced' 15 | type: choice 16 | options: 17 | - 'Revanced' 18 | - 'Revanced Beta' 19 | - 'Revanced Extended' 20 | - 'Revanced Extended Beta' 21 | - 'RVE-anddea-stable' 22 | - 'RVE-anddea-beta' 23 | - 'Twitter Piko Stable' 24 | - 'Twitter Piko Beta' 25 | - 'Revanced Extended Android 6,7' 26 | - 'Revanced Extended Android 5' 27 | - 'BiliRoamingM' 28 | - 'Dropped Patches - indrastorms' 29 | - 'Revanced Experiments' 30 | workflow_call: 31 | inputs: 32 | org: 33 | required: true 34 | type: string 35 | jobs: 36 | patch_rv: 37 | name: Patch Revanced Stable 38 | if: ${{ github.event.inputs.org == 'Revanced' || inputs.org == 'Revanced' }} 39 | runs-on: ubuntu-latest 40 | strategy: 41 | matrix: 42 | run: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] 43 | steps: 44 | - name: Checkout 45 | uses: actions/checkout@v4.2.2 46 | - name: Preparing to patch 47 | uses: ./.github/actions/preparing 48 | - name: Check github connection 49 | id: check-gh-rv 50 | run: bash src/etc/connection.sh 51 | - name: Patch apk 52 | id: patch-rv 53 | if: steps.check-gh-rv.outputs.internet_error == '0' 54 | run: bash src/build/Revanced.sh ${{ matrix.run }} 55 | - name: Releasing APK files 56 | id: release-rv 57 | if: steps.check-gh-rv.outputs.internet_error == '0' 58 | uses: ./.github/actions/release 59 | patch_rv_beta: 60 | name: Patch Revanced Beta 61 | if: ${{ github.event.inputs.org == 'Revanced Beta' || inputs.org == 'Revanced Beta' }} 62 | runs-on: ubuntu-latest 63 | strategy: 64 | matrix: 65 | run: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] 66 | steps: 67 | - name: Checkout 68 | uses: actions/checkout@v4.2.2 69 | - name: Preparing to patch 70 | uses: ./.github/actions/preparing 71 | - name: Check github connection 72 | id: check-gh-rvb 73 | run: bash src/etc/connection.sh 74 | - name: Patch apk 75 | id: patch-rvb 76 | if: steps.check-gh-rvb.outputs.internet_error == '0' 77 | run: bash src/build/Revanced-Beta.sh ${{ matrix.run }} 78 | - name: Releasing APK files 79 | id: release-rvb 80 | if: steps.check-gh-rvb.outputs.internet_error == '0' 81 | uses: ./.github/actions/release 82 | patch_rve_anddea_stable: 83 | name: Patch RVX Anddea Stable 84 | if: ${{ github.event.inputs.org == 'RVE-anddea-stable' || inputs.org == 'RVE-anddea-stable' }} 85 | runs-on: ubuntu-latest 86 | container: 87 | image: ubuntu:20.04 88 | options: --user root 89 | steps: 90 | - name: Checkout 91 | uses: actions/checkout@v4.2.2 92 | - name: Preparing to patch 93 | uses: ./.github/actions/preparing 94 | - name: Install library 95 | run: | 96 | apt-get update 97 | apt-get install -y curl jq wget unzip 98 | - name: Check github connection 99 | id: check-gh-rve-anddea-stable 100 | run: bash src/etc/connection.sh 101 | - name: Patch apk 102 | id: patch-rve-anddea 103 | if: steps.check-gh-rve-anddea-stable.outputs.internet_error == '0' 104 | run: bash src/build/Anddea-Revanced-Extended.sh 105 | - name: Cache 106 | uses: actions/upload-artifact@v4 107 | with: 108 | name: Cache_anddea_stable 109 | path: | 110 | ./release/*.apk 111 | release_rve_anddea_stable: 112 | name: Release RVX Anddea Stable 113 | needs: patch_rve_anddea_stable 114 | runs-on: ubuntu-latest 115 | steps: 116 | - name: Checkout 117 | uses: actions/checkout@v2 118 | - name: Cache 119 | uses: actions/download-artifact@v4 120 | with: 121 | name: Cache_anddea_stable 122 | path: ./release 123 | - name: Releasing APK files 124 | uses: ./.github/actions/release 125 | patch_rve_anddea_beta: 126 | name: Patch RVX Anddea Beta version 127 | if: ${{ github.event.inputs.org == 'RVE-anddea-beta' || inputs.org == 'RVE-anddea-beta' }} 128 | runs-on: ubuntu-latest 129 | container: 130 | image: ubuntu:20.04 131 | options: --user root 132 | steps: 133 | - name: Checkout 134 | uses: actions/checkout@v4.2.2 135 | - name: Preparing to patch 136 | uses: ./.github/actions/preparing 137 | - name: Install library 138 | run: | 139 | apt-get update 140 | apt-get install -y curl jq wget unzip 141 | - name: Check github connection 142 | id: check-gh-rve-anddea-beta 143 | run: bash src/etc/connection.sh 144 | - name: Patch apk 145 | id: patch-rve-anddea-beta 146 | if: steps.check-gh-rve-anddea-beta.outputs.internet_error == '0' 147 | run: bash src/build/Anddea-Revanced-Extended-Beta.sh 148 | - name: Cache 149 | uses: actions/upload-artifact@v4 150 | with: 151 | name: Cache_anddea_beta 152 | path: | 153 | ./release/*.apk 154 | release_rve_anddea_beta: 155 | name: Release RVX Anddea Beta 156 | needs: patch_rve_anddea_beta 157 | runs-on: ubuntu-latest 158 | steps: 159 | - name: Checkout 160 | uses: actions/checkout@v2 161 | - name: Cache 162 | uses: actions/download-artifact@v4 163 | with: 164 | name: Cache_anddea_beta 165 | path: ./release 166 | - name: Releasing APK files 167 | uses: ./.github/actions/release 168 | patch_rve: 169 | name: Patch Revanced Extended Stable 170 | if: ${{ github.event.inputs.org == 'Revanced Extended' || inputs.org == 'Revanced Extended' }} 171 | runs-on: ubuntu-latest 172 | container: 173 | image: ubuntu:20.04 174 | options: --user root 175 | steps: 176 | - name: Checkout 177 | uses: actions/checkout@v2 178 | - name: Preparing to patch 179 | uses: ./.github/actions/preparing 180 | - name: Install library 181 | run: | 182 | apt-get update 183 | apt-get install -y curl jq wget unzip 184 | - name: Check github connection 185 | id: check-gh-rve 186 | run: bash src/etc/connection.sh 187 | - name: Patch apk 188 | id: patch-rve 189 | if: steps.check-gh-rve.outputs.internet_error == '0' 190 | run: bash src/build/Revanced-Extended.sh 191 | - name: Cache 192 | uses: actions/upload-artifact@v4 193 | with: 194 | name: Cache_rve 195 | path: | 196 | ./release/*.apk 197 | release_rve: 198 | name: Release Revanced Extended Stable 199 | needs: patch_rve 200 | runs-on: ubuntu-latest 201 | steps: 202 | - name: Checkout 203 | uses: actions/checkout@v2 204 | - name: Cache 205 | uses: actions/download-artifact@v4 206 | with: 207 | name: Cache_rve 208 | path: ./release 209 | - name: Releasing APK files 210 | uses: ./.github/actions/release 211 | patch_rve_beta: 212 | name: Patch Revanced Extended Beta 213 | if: ${{ github.event.inputs.org == 'Revanced Extended Beta' || inputs.org == 'Revanced Extended Beta' }} 214 | runs-on: ubuntu-latest 215 | container: 216 | image: ubuntu:20.04 217 | options: --user root 218 | steps: 219 | - name: Checkout 220 | uses: actions/checkout@v4.2.2 221 | - name: Preparing to patch 222 | uses: ./.github/actions/preparing 223 | - name: Install library 224 | run: | 225 | apt-get update 226 | apt-get install -y curl jq wget unzip 227 | - name: Check github connection 228 | id: check-gh-rve-beta 229 | run: bash src/etc/connection.sh 230 | - name: Patch apk 231 | id: patch-rve-beta 232 | if: steps.check-gh-rve-beta.outputs.internet_error == '0' 233 | run: bash src/build/Revanced-Extended-Beta.sh 234 | - name: Cache 235 | uses: actions/upload-artifact@v4 236 | with: 237 | name: Cache_rve_beta 238 | path: | 239 | ./release/*.apk 240 | release_rve_beta: 241 | name: Release Revanced Extended Beta 242 | needs: patch_rve_beta 243 | runs-on: ubuntu-latest 244 | steps: 245 | - name: Checkout 246 | uses: actions/checkout@v2 247 | - name: Cache 248 | uses: actions/download-artifact@v4 249 | with: 250 | name: Cache_rve_beta 251 | path: ./release 252 | - name: Releasing APK files 253 | uses: ./.github/actions/release 254 | patch_twitter_piko_stable: 255 | name: Patch Twitter Piko Stable 256 | if: ${{ github.event.inputs.org == 'Twitter Piko Stable' || inputs.org == 'Twitter Piko Stable' }} 257 | runs-on: ubuntu-latest 258 | steps: 259 | - name: Checkout 260 | uses: actions/checkout@v4.2.2 261 | - name: Preparing to patch 262 | uses: ./.github/actions/preparing 263 | - name: Check github connection 264 | id: check-gh-piko-stable 265 | run: bash src/etc/connection.sh 266 | - name: Patch apk 267 | id: patch-piko-stable 268 | if: steps.check-gh-piko-stable.outputs.internet_error == '0' 269 | run: bash src/build/Piko.sh latest 270 | - name: Releasing APK files 271 | id: release-piko-stable 272 | if: steps.check-gh-piko-stable.outputs.internet_error == '0' 273 | uses: ./.github/actions/release 274 | patch_twitter_piko_beta: 275 | name: Patch Twitter Piko Beta 276 | if: ${{ github.event.inputs.org == 'Twitter Piko Beta' || inputs.org == 'Twitter Piko Beta' }} 277 | runs-on: ubuntu-latest 278 | steps: 279 | - name: Checkout 280 | uses: actions/checkout@v4.2.2 281 | - name: Preparing to patch 282 | uses: ./.github/actions/preparing 283 | - name: Check github connection 284 | id: check-gh-piko-beta 285 | run: bash src/etc/connection.sh 286 | - name: Patch apk 287 | id: patch-piko-beta 288 | if: steps.check-gh-piko-beta.outputs.internet_error == '0' 289 | run: bash src/build/Piko.sh prerelease 290 | - name: Releasing APK files 291 | id: release-piko-beta 292 | if: steps.check-gh-piko-beta.outputs.internet_error == '0' 293 | uses: ./.github/actions/release 294 | patch_rve67: 295 | name: Patch RVX Android 6,7 296 | if: ${{ github.event.inputs.org == 'Revanced Extended Android 6,7' || inputs.org == 'Revanced Extended Android 6,7' }} 297 | runs-on: ubuntu-latest 298 | steps: 299 | - name: Checkout 300 | uses: actions/checkout@v4.2.2 301 | - name: Preparing to patch 302 | uses: ./.github/actions/preparing 303 | - name: Check github connection 304 | id: check-gh-rve67 305 | run: bash src/etc/connection.sh 306 | - name: Patch apk 307 | id: patch-rve67 308 | if: steps.check-gh-rve67.outputs.internet_error == '0' 309 | run: bash src/build/Revanced-Extended-Android-6-7.sh 310 | - name: Releasing APK files 311 | id: release-rve67 312 | if: steps.check-gh-rve67.outputs.internet_error == '0' 313 | uses: ./.github/actions/release 314 | patch_rve5: 315 | name: Patch RVX Android 5 316 | if: ${{ github.event.inputs.org == 'Revanced Extended Android 5' || inputs.org == 'Revanced Extended Android 5' }} 317 | runs-on: ubuntu-latest 318 | steps: 319 | - name: Checkout 320 | uses: actions/checkout@v4.2.2 321 | - name: Preparing to patch 322 | uses: ./.github/actions/preparing 323 | - name: Check github connection 324 | id: check-gh-rve5 325 | run: bash src/etc/connection.sh 326 | - name: Patch apk 327 | id: patch-rve5 328 | if: steps.check-gh-rve5.outputs.internet_error == '0' 329 | run: bash src/build/Revanced-Extended-Android-5.sh 330 | - name: Releasing APK files 331 | id: release-rve5 332 | if: steps.check-gh-rve5.outputs.internet_error == '0' 333 | uses: ./.github/actions/release 334 | patch_BiliRoamingM: 335 | name: Patch BiliRoamingM 336 | if: ${{ github.event.inputs.org == 'BiliRoamingM' || inputs.org == 'BiliRoamingM' }} 337 | runs-on: ubuntu-latest 338 | steps: 339 | - name: Checkout 340 | uses: actions/checkout@v4.1.1 341 | - name: Preparing to patch 342 | uses: ./.github/actions/preparing 343 | - name: Check github connection 344 | id: check-gh-BiliRoamingM 345 | run: bash src/etc/connection.sh 346 | - name: Patch apk 347 | id: patch-BiliRoamingM 348 | if: steps.check-gh-BiliRoamingM.outputs.internet_error == '0' 349 | run: bash src/build/BiliRoamingM.sh 350 | - name: Releasing APK files 351 | id: release-BiliRoamingM 352 | if: steps.check-gh-BiliRoamingM.outputs.internet_error == '0' 353 | uses: ./.github/actions/release 354 | patch_Dropped_Patches: 355 | name: Dropped Patches Revanced - indrastorms 356 | if: ${{ github.event.inputs.org == 'Dropped Patches - indrastorms' || inputs.org == 'Dropped Patches - indrastorms' }} 357 | runs-on: ubuntu-latest 358 | steps: 359 | - name: Checkout 360 | uses: actions/checkout@v4.2.2 361 | - name: Preparing to patch 362 | uses: ./.github/actions/preparing 363 | - name: Check github connection 364 | id: check-gh-Dropped-Patches-indrastorms 365 | run: bash src/etc/connection.sh 366 | - name: Patch apk 367 | id: patch-Dropped-Patches-indrastorms 368 | if: steps.check-gh-Dropped-Patches-indrastorms.outputs.internet_error == '0' 369 | run: bash src/build/Dropped-Patches-Revanced.sh 370 | - name: Releasing APK files 371 | id: release-Dropped-Patches-indrastorms 372 | if: steps.check-gh-Dropped-Patches-indrastorms.outputs.internet_error == '0' 373 | uses: ./.github/actions/release 374 | patch_rv_experiments: 375 | name: Patch Revanced Experiments 376 | if: ${{ github.event.inputs.org == 'Revanced Experiments' || inputs.org == 'Revanced Experiments' }} 377 | runs-on: ubuntu-latest 378 | steps: 379 | - name: Checkout 380 | uses: actions/checkout@v4.2.2 381 | - name: Preparing to patch 382 | uses: ./.github/actions/preparing 383 | - name: Check github connection 384 | id: check-gh-rv-experiments 385 | run: bash src/etc/connection.sh 386 | - name: Patch apk 387 | id: patch-rv-experiments 388 | if: steps.check-gh-rv-experiments.outputs.internet_error == '0' 389 | run: bash src/build/Revanced-Experiment.sh 390 | - name: Releasing APK files 391 | id: release-rv-experiments 392 | if: steps.check-gh-rv-experiments.outputs.internet_error == '0' 393 | uses: ./.github/actions/release 394 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](../main/docs/image/Banner.png#center) 2 | 3 |

4 | They are open-source scripts for patching various apps like YouTube, YouTube Music... However, they are very difficult to use for most users. That's why I created this repository to provide an easier way. 5 |

6 |
7 | 8 | [![Image of https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root](https://github.com/FiorenMas/View-Counter/blob/main/repos/Revanced-And-Revanced-Extended-Non-Root_609906498/svg/count.svg)](https://github.com/FiorenMas/View-Counter) 9 | [![Image of https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/actions](https://img.shields.io/github/actions/workflow/status/fiorenmas/Revanced-And-Revanced-Extended-Non-Root/ci.yml)](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/actions) 10 | [![](https://img.shields.io/badge/Telegram-2CA5E0)](https://t.me/fiorenmas) 11 | 12 |
13 | 14 | --- 15 | 16 | > [!NOTE] 17 | > ## Backup Telegram channel: 18 | > ### [https://t.me/fiorenmas](https://t.me/fiorenmas) 19 | 20 | ## ⚙️ How does this repository work? 21 | Simply, all you need to do is choose the app you want to use from the options below: 'Revanced' or 'Revanced Extended'. Then, select your phone's CPU architecture. If you don't know what your phone's CPU architecture is, choose All Architectures. That's all there is to it. 22 | 23 | > [!NOTE] 24 | > If you want to use the YouTube, YouTube Music or Google Photos app, you need to download and install [MicroG](https://github.com/ReVanced/GmsCore/releases). 25 | > 26 | > If you are an advanced user and you want to use custom patches for patching apps, you should read the [Wiki](../main/docs/Frequently%20Asked%20Questions.md#q-how-do-i-use-this-repository-for-patching-my-own-app). 27 | > 28 | > This repository is not like any other repository. It does not create new releases; it only releases new files. 29 | > 30 | > All the code is open-source, clearly, and the APK files used for patching are downloaded from a trusted site, so it is totally safe for you to use. 31 | --- 32 |

33 | Download 34 |

35 | 36 | > [!IMPORTANT] 37 | > Beta versions mean using dev patches, not using beta apk files. Beta version have the same package name as Stable version, so installing them will overwrite Stable version. 38 | > 39 | > License owned by creator. If you like any modded app, please support the original author. 40 | > 41 | --- 42 | 43 | ## [MicroG ReVanced:](https://github.com/ReVanced/GmsCore) 44 | 45 | [![Release](https://img.shields.io/github/v/release/ReVanced/GmsCore?label=All-arch&style=for-the-badge)](https://github.com/ReVanced/GmsCore/releases) 46 | 47 | --- 48 | 49 | [![YouTube](https://img.shields.io/badge/YouTube-%23FF0000.svg?style=for-the-badge&logo=YouTube&logoColor=white)](https://play.google.com/store/apps/details?id=com.google.android.youtube) 50 | 51 | ### [Revanced:](https://github.com/revanced/revanced-patches) 52 | 53 | | [Stable version](https://github.com/ReVanced/revanced-patches/releases/latest) | [Beta version](https://github.com/ReVanced/revanced-patches/releases) | 54 | | ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | 55 | | [All Architectures](../../releases/download/all/youtube-revanced.apk) | [All Architectures](../../releases/download/all/youtube-beta-revanced.apk) | 56 | | [Arm64-v8a](../../releases/download/all/youtube-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/youtube-beta-arm64-v8a-revanced.apk) | 57 | | [Armeabi-v7a](../../releases/download/all/youtube-armeabi-v7a-revanced.apk) | [Armeabi-v7a](../../releases/download/all/youtube-beta-armeabi-v7a-revanced.apk) | 58 | | [x86](../../releases/download/all/youtube-x86-revanced.apk) | [x86](../../releases/download/all/youtube-beta-x86-revanced.apk) | 59 | | [x86_64](../../releases/download/all/youtube-x86_64-revanced.apk) | [x86_64](../../releases/download/all/youtube-beta-x86_64-revanced.apk) | 60 | 61 |
62 | Lite version 63 | 64 | **A lite version is a version with unnecessary things removed. For example, it might only have an English interface and remove unused screen DPI from split APKs** 65 | 66 | | [Stable version](https://github.com/ReVanced/revanced-patches/releases/latest) | [Beta version](https://github.com/ReVanced/revanced-patches/releases) | 67 | | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | 68 | | [Arm64-v8a](../../releases/download/all/youtube-lite-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/youtube-lite-beta-arm64-v8a-revanced.apk) | 69 | | [Armeabi-v7a](../../releases/download/all/youtube-lite-armeabi-v7a-revanced.apk) | [Armeabi-v7a](../../releases/download/all/youtube-lite-beta-armeabi-v7a-revanced.apk) | 70 | 71 |
72 | 73 | ### [Revanced Extended:](https://github.com/inotia00/revanced-patches/) 74 | 75 | | [Stable version](https://github.com/inotia00/revanced-patches/releases/latest) | [Beta version](https://github.com/inotia00/revanced-patches/releases) | 76 | | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- | 77 | | [All Architectures](../../releases/download/all/youtube-revanced-extended.apk) | [All Architectures](../../releases/download/all/youtube-beta-revanced-extended.apk) | 78 | | [Arm64-v8a](../../releases/download/all/youtube-arm64-v8a-revanced-extended.apk) | [Arm64-v8a](../../releases/download/all/youtube-beta-arm64-v8a-revanced-extended.apk) | 79 | | [Armeabi-v7a](../../releases/download/all/youtube-armeabi-v7a-revanced-extended.apk) | [Armeabi-v7a](../../releases/download/all/youtube-beta-armeabi-v7a-revanced-extended.apk) | 80 | | [x86](../../releases/download/all/youtube-x86-revanced-extended.apk) | [x86](../../releases/download/all/youtube-beta-x86-revanced-extended.apk) | 81 | | [x86_64](../../releases/download/all/youtube-x86_64-revanced-extended.apk) | [x86_64](../../releases/download/all/youtube-beta-x86_64-revanced-extended.apk) | 82 | 83 |
84 | Lite version 85 | 86 | **A lite version is a version with unnecessary things removed. For example, it might only have an English interface and remove unused screen DPI from split APKs** 87 | 88 | | [Stable version](https://github.com/inotia00/revanced-patches/releases/latest) | [Beta version](https://github.com/inotia00/revanced-patches/releases) | 89 | | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | 90 | | [Arm64-v8a](../../releases/download/all/youtube-lite-arm64-v8a-revanced-extended.apk) | [Arm64-v8a](../../releases/download/all/youtube-lite-beta-arm64-v8a-revanced-extended.apk) | 91 | | [Armeabi-v7a](../../releases/download/all/youtube-lite-armeabi-v7a-revanced-extended.apk) | [Armeabi-v7a](../../releases/download/all/youtube-lite-beta-armeabi-v7a-revanced-extended.apk) | 92 | 93 |
94 | 95 | ### [Revanced Extended forked by anddea:](https://github.com/anddea/revanced-patches) 96 | 97 | | [Stable version](https://github.com/anddea/revanced-patches/releases/latest) | [Beta version](https://github.com/anddea/revanced-patches/releases) | 98 | | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | 99 | | [All Architectures](../../releases/download/all/youtube-stable-anddea.apk) | [All Architectures](../../releases/download/all/youtube-beta-anddea.apk) | 100 | | [Arm64-v8a](../../releases/download/all/youtube-stable-arm64-v8a-anddea.apk) | [Arm64-v8a](../../releases/download/all/youtube-beta-arm64-v8a-anddea.apk) | 101 | | [Armeabi-v7a](../../releases/download/all/youtube-stable-armeabi-v7a-anddea.apk) | [Armeabi-v7a](../../releases/download/all/youtube-beta-armeabi-v7a-anddea.apk) | 102 | | [x86](../../releases/download/all/youtube-stable-x86-anddea.apk) | [x86](../../releases/download/all/youtube-beta-x86-anddea.apk) | 103 | | [x86_64](../../releases/download/all/youtube-stable-x86_64-anddea.apk) | [x86_64](../../releases/download/all/youtube-beta-x86_64-anddea.apk) | 104 | 105 |
106 | Lite version 107 | 108 | **A lite version is a version with unnecessary things removed. For example, it might only have an English interface and remove unused screen DPI from split APKs** 109 | 110 | | [Stable version](https://github.com/anddea/revanced-patches/releases/latest) | [Beta version](https://github.com/anddea/revanced-patches/releases) | 111 | | -------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | 112 | | [Arm64-v8a](../../releases/download/all/youtube-lite-arm64-v8a-anddea.apk) | [Arm64-v8a](../../releases/download/all/youtube-lite-beta-arm64-v8a-anddea.apk) | 113 | | [Armeabi-v7a](../../releases/download/all/youtube-lite-armeabi-v7a-anddea.apk) | [Armeabi-v7a](../../releases/download/all/youtube-lite-beta-armeabi-v7a-anddea.apk) | 114 | 115 |
116 | 117 | ### [Revanced Extended For Android 6 & 7:](https://github.com/kitadai31/revanced-patches-android6-7/tree/revanced-extended) 118 | 119 | **Please read [Instruction](https://github.com/kitadai31/revanced-patches-android6-7/tree/revanced-extended?tab=readme-ov-file#however-a-workaround-exists) before use** 120 | 121 | [All Architectures](../../releases/download/all/youtube-revanced-extended-android-6-7.apk) 122 | 123 | [Arm64-v8a](../../releases/download/all/youtube-arm64-v8a-revanced-extended-android-6-7.apk) 124 | 125 | [Armeabi-v7a](../../releases/download/all/youtube-armeabi-v7a-revanced-extended-android-6-7.apk) 126 | 127 | [x86](../../releases/download/all/youtube-x86-revanced-extended-android-6-7.apk) 128 | 129 | [x86_64](../../releases/download/all/youtube-x86_64-revanced-extended-android-6-7.apk) 130 | 131 | 132 | ### [Revanced Extended For Android 5:](https://github.com/d4n3436/revanced-patches-android5) 133 | 134 | [All Architectures](../../releases/download/all/youtube-revanced-extended-android-5.apk) 135 | 136 | [Arm64-v8a](../../releases/download/all/youtube-arm64-v8a-revanced-extended-android-5.apk) 137 | 138 | [Armeabi-v7a](../../releases/download/all/youtube-armeabi-v7a-revanced-extended-android-5.apk) 139 | 140 | [x86](../../releases/download/all/youtube-x86-revanced-extended-android-5.apk) 141 | 142 | [x86_64](../../releases/download/all/youtube-x86_64-revanced-extended-android-5.apk) 143 | 144 | --- 145 | 146 | [![YouTube Music](https://img.shields.io/badge/YouTube_Music-FF0000?style=for-the-badge&logo=youtube-music&logoColor=white)](https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.music) 147 | 148 | ### [Revanced:](https://github.com/revanced/revanced-patches) 149 | 150 | | [Stable version](https://github.com/ReVanced/revanced-patches/releases/latest) | [Beta version](https://github.com/ReVanced/revanced-patches/releases) | 151 | | --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | 152 | | [Arm64-v8a](../../releases/download/all/youtube-music-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/youtube-music-beta-arm64-v8a-revanced.apk) | 153 | | [Armeabi-v7a](../../releases/download/all/youtube-music-armeabi-v7a-revanced.apk) | [Armeabi-v7a](../../releases/download/all/youtube-music-beta-armeabi-v7a-revanced.apk) | 154 | | [x86](../../releases/download/all/youtube-music-x86-revanced.apk) | [x86](../../releases/download/all/youtube-music-beta-x86-revanced.apk) | 155 | | [x86_64](../../releases/download/all/youtube-music-x86_64-revanced.apk) | [x86_64](../../releases/download/all/youtube-music-beta-x86_64-revanced.apk) | 156 | 157 | ### [Revanced Extended:](https://github.com/inotia00/revanced-patches/) 158 | 159 | | [Stable version](https://github.com/inotia00/revanced-patches/releases/latest) | [Beta version](https://github.com/inotia00/revanced-patches/releases) | 160 | | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- | 161 | | [Arm64-v8a](../../releases/download/all/youtube-music-arm64-v8a-revanced-extended.apk) | [Arm64-v8a](../../releases/download/all/youtube-music-beta-arm64-v8a-revanced-extended.apk) | 162 | | [Armeabi-v7a](../../releases/download/all/youtube-music-armeabi-v7a-revanced-extended.apk) | [Armeabi-v7a](../../releases/download/all/youtube-music-beta-armeabi-v7a-revanced-extended.apk) | 163 | | [x86](../../releases/download/all/youtube-music-x86-revanced-extended.apk) | [x86](../../releases/download/all/youtube-music-beta-x86-revanced-extended.apk) | 164 | | [x86_64](../../releases/download/all/youtube-music-x86_64-revanced-extended.apk) | [x86_64](../../releases/download/all/youtube-music-beta-x86_64-revanced-extended.apk) | 165 | 166 | ### [Revanced Extended forked by anddea:](https://github.com/anddea/revanced-patches) 167 | 168 | | [Stable version](https://github.com/anddea/revanced-patches/releases/latest) | [Beta version](https://github.com/anddea/revanced-patches/releases) | 169 | | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | 170 | | [Arm64-v8a](../../releases/download/all/youtube-music-stable-arm64-v8a-anddea.apk) | [Arm64-v8a](../../releases/download/all/youtube-music-beta-arm64-v8a-anddea.apk) | 171 | | [Armeabi-v7a](../../releases/download/all/youtube-music-stable-armeabi-v7a-anddea.apk) | [Armeabi-v7a](../../releases/download/all/youtube-music-beta-armeabi-v7a-anddea.apk) | 172 | | [x86](../../releases/download/all/youtube-music-stable-x86-anddea.apk) | [x86](../../releases/download/all/youtube-music-beta-x86-anddea.apk) | 173 | | [x86_64](../../releases/download/all/youtube-music-stable-x86_64-anddea.apk) | [x86_64](../../releases/download/all/youtube-music-beta-x86_64-anddea.apk) | 174 | 175 | --- 176 | 177 | [![Facebook](https://img.shields.io/badge/Facebook-%231877F2.svg?style=for-the-badge&logo=Facebook&logoColor=white)](https://play.google.com/store/apps/details?id=com.facebook.katana&hl) 178 | 179 | **You have to remove the Messenger app before you install the Facebook ReVanced** 180 | 181 | ### [Revanced:](https://github.com/revanced/revanced-patches) 182 | 183 | | Stable version | Beta version | 184 | | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | 185 | |[Arm64-v8a & Android 11+](../../releases/download/all/facebook-arm64-v8a-revanced.apk) | [Arm64-v8a & Android 11+](../../releases/download/all/facebook-arm64-v8a-beta-revanced.apk) | 186 | 187 | --- 188 | 189 | [![Twitter](https://img.shields.io/badge/Twitter-%231DA1F2.svg?style=for-the-badge&logo=Twitter&logoColor=white)](https://play.google.com/store/apps/details?id=com.twitter.android) 190 | 191 | ### [Piko:](https://github.com/crimera/piko) 192 | 193 | 👉 [Offical author download link](https://github.com/crimera/twitter-apk/releases) 194 | 195 | | [Stable version](https://github.com/crimera/piko/releases/latest) | [Beta version](https://github.com/crimera/piko/releases/) | 196 | | -------------------------------------------------------------------------- | -------------------------------------------------------------------------| 197 | | [All Architectures](../../releases/download/all/twitter-stable-piko.apk) | [All Architectures](../../releases/download/all/twitter-beta-piko.apk) | 198 | | [Arm64-v8a](../../releases/download/all/twitter-arm64-v8a-stable-piko.apk) | [Arm64-v8a](../../releases/download/all/twitter-arm64-v8a-beta-piko.apk) | 199 | 200 | --- 201 | 202 | [![Instagram](https://img.shields.io/badge/Instagram-%23E4405F.svg?style=for-the-badge&logo=Instagram&logoColor=white)](https://play.google.com/store/apps/details?id=com.instagram.android) 203 | 204 | ### [Revanced:](https://github.com/revanced/revanced-patches) 205 | 206 | | Stable version | Beta version | 207 | | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | 208 | | [Arm64-v8a](../../releases/download/all/instagram-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/instagram-arm64-v8a-beta-revanced.apk) | 209 | 210 | ### [Revanced Experiments:](https://github.com/Aunali321/ReVancedExperiments) 211 | 212 | [Arm64-v8a](../../releases/download/all/instagram-arm64-v8a-revanced-experiments.apk) 213 | 214 | --- 215 | 216 | ### [Google Photos:](https://play.google.com/store/apps/details?id=com.google.android.apps.photos) 217 | 218 | ### [Revanced:](https://github.com/revanced/revanced-patches) 219 | 220 | | Stable version | Beta version | 221 | | ----------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | 222 | | [Arm64-v8a](../../releases/download/all/gg-photos-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/gg-photos-arm64-v8a-beta-revanced.apk) | 223 | | [armeabi-v7a](../../releases/download/all/gg-photos-armeabi-v7a-revanced.apk) | [armeabi-v7a](../../releases/download/all/gg-photos-armeabi-v7a-beta-revanced.apk) | 224 | 225 | --- 226 | 227 | [![Messenger](https://img.shields.io/badge/Messenger-00B2FF?style=for-the-badge&logo=messenger&logoColor=white)](https://play.google.com/store/apps/details?id=com.facebook.orca) 228 | 229 | ### [Revanced:](https://github.com/revanced/revanced-patches) 230 | 231 | | Stable version | Beta version | 232 | | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | 233 | | [Arm64-v8a](../../releases/download/all/messenger-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/messenger-arm64-v8a-beta-revanced.apk) | 234 | 235 | --- 236 | 237 | ### [Spotjfy:](https://www.google.com/search?q=Spotjfy) 238 | 239 | ### [Revanced](https://github.com/revanced/revanced-patches) 240 | 241 | | Stable version | Beta version | 242 | | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | 243 | | [Arm64-v8a](../../releases/download/all/spotjfy-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/spotjfy-beta-arm64-v8a-revanced.apk) | 244 | 245 | ### [Revanced Extended forked by anddea:](https://github.com/anddea/revanced-patches) 246 | | Stable version | Beta version | 247 | | ------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | 248 | | [Arm64-v8a](../../releases/download/all/spotjfy-arm64-v8a-anddea.apk) | [Arm64-v8a](../../releases/download/all/spotjfy-beta-arm64-v8a-anddea.apk) | 249 | 250 | --- 251 | 252 | [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://play.google.com/store/apps/details?id=org.telegram.messenger) 253 | 254 | ### [Revanced Experiments:](https://github.com/Aunali321/ReVancedExperiments) 255 | 256 | CH play version: 257 | 258 | [Arm64-v8a](../../releases/download/all/telegram-revanced-experiments.apk) 259 | 260 | Web version: 261 | 262 | [All Architectures](../../releases/download/all/telegram-web-version-revanced-experiments.apk) 263 | 264 | --- 265 | 266 | [![TikTok](https://img.shields.io/badge/TikTok-%23000000.svg?style=for-the-badge&logo=TikTok&logoColor=white)](https://play.google.com/store/apps/details?id=com.ss.android.ugc.trill) 267 | 268 | ### [Revanced:](https://github.com/revanced/revanced-patches) 269 | 270 | | Stable version | Beta version | 271 | | ---------------------------------------------------------------------- | ------------------------------------------------------------------------- | 272 | | [All Architectures](../../releases/download/all/tiktok-revanced.apk) | [All Architectures](../../releases/download/all/tiktok-beta-revanced.apk) | 273 | 274 | --- 275 | 276 | [![Twitch](https://img.shields.io/badge/Twitch-%239146FF.svg?style=for-the-badge&logo=Twitch&logoColor=white)](https://play.google.com/store/apps/details?id=tv.twitch.android.app) 277 | 278 | ### [Revanced:](https://github.com/revanced/revanced-patches) 279 | 280 | | Stable version | Beta version | 281 | | ---------------------------------------------------------------------- | --------------------------------------------------------------------------- | 282 | | [All Architectures](../../releases/download/all/twitch-revanced.apk) | [All Architectures](../../releases/download/all/twitch-beta-revanced.apk) | 283 | 284 | --- 285 | 286 | [![Reddit](https://img.shields.io/badge/Reddit-%23FF4500.svg?style=for-the-badge&logo=Reddit&logoColor=white)](https://play.google.com/store/apps/details?id=com.reddit.frontpage) 287 | 288 | ### [Revanced Extended:](https://github.com/inotia00/revanced-patches/) 289 | 290 | | Stable version | Beta version | 291 | | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | 292 | | [All Architectures](../../releases/download/all/reddit-revanced-extended.apk) | [All Architectures](../../releases/download/all/reddit-beta-revanced-extended.apk) | 293 | | [Arm64-v8a](../../releases/download/all/reddit-arm64-v8a-revanced-extended.apk) | [Arm64-v8a](../../releases/download/all/reddit-arm64-v8a-beta-revanced-extended.apk) | 294 | 295 | --- 296 | 297 | [![Lightroom](https://img.shields.io/badge/Adobe%20Lightroom-31A8FF.svg?style=for-the-badge&logo=Adobe%20Lightroom&logoColor=white)](https://play.google.com/store/apps/details?id=com.adobe.lrmobile) 298 | 299 | ### [Revanced:](https://github.com/revanced/revanced-patches) 300 | 301 | | Stable version | Beta version | 302 | | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------- | 303 | | [Arm64-v8a](../../releases/download/all/lightroom-revanced.apk) | [Arm64-v8a](../../releases/download/all/lightroom-beta-revanced.apk) | 304 | 305 | --- 306 | 307 | [![Tumblr](https://img.shields.io/badge/Tumblr-%2336465D.svg?style=for-the-badge&logo=Tumblr&logoColor=white)](https://play.google.com/store/apps/details?id=com.tumblr) 308 | 309 | ### [Revanced:](https://github.com/revanced/revanced-patches) 310 | 311 | | Stable version | Beta version | 312 | | ---------------------------------------------------------------------- | --------------------------------------------------------------------------- | 313 | | [All Architectures](../../releases/download/all/tumblr-revanced.apk) | [All Architectures](../../releases/download/all/tumblr-beta-revanced.apk) | 314 | | [Arm64-v8a](../../releases/download/all/tumblr-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/tumblr-arm64-v8a-beta-revanced.apk) | 315 | 316 | --- 317 | 318 | [![SoundCloud](https://img.shields.io/badge/soundcloud-FF5500?style=for-the-badge&logo=soundcloud&logoColor=white)](https://play.google.com/store/apps/details?id=com.soundcloud.android) 319 | 320 | ### [Revanced:](https://github.com/revanced/revanced-patches) 321 | 322 | | Stable version | Beta version | 323 | | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | 324 | | [All Architectures](../../releases/download/all/soundcloud-revanced.apk) | [All Architectures](../../releases/download/all/soundcloud-beta-revanced.apk) | 325 | | [Arm64-v8a](../../releases/download/all/soundcloud-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/soundcloud-arm64-v8a-beta-revanced.apk) | 326 | 327 | --- 328 | 329 | [![Duolingo](https://img.shields.io/badge/Duolingo-%234DC730.svg?style=for-the-badge&logo=Duolingo&logoColor=white)](https://play.google.com/store/apps/details?id=com.duolingo) 330 | 331 | ### [Revanced:](https://github.com/revanced/revanced-patches) 332 | 333 | | Stable version | Beta version | 334 | | ------------------------------------------------------------------------ | --------------------------------------------------------------------------- | 335 | | [All Architectures](../../releases/download/all/duolingo-revanced.apk) | [All Architectures](../../releases/download/all/duolingo-beta-revanced.apk) | 336 | 337 | --- 338 | 339 | ### [Google News:](play.google.com/store/apps/details?id=com.google.android.apps.magazines) 340 | 341 | ### [Revanced:](https://github.com/revanced/revanced-patches) 342 | 343 | | Stable version | Beta version | 344 | | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | 345 | | [Arm64-v8a](../../releases/download/all/googlenews-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/googlenews-beta-arm64-v8a-revanced.apk) | 346 | 347 | --- 348 | 349 | ### [Photomath:](https://play.google.com/store/apps/details?id=com.microblink.photomath) 350 | 351 | ### [Revanced:](https://github.com/revanced/revanced-patches) 352 | 353 | | Stable version | Beta version | 354 | | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | 355 | | [All Architectures](../../releases/download/all/photomath-revanced.apk) | [All Architectures](../../releases/download/all/photomath-beta-revanced.apk) | 356 | 357 | --- 358 | 359 | ### [RAR:](https://play.google.com/store/apps/details?id=com.rarlab.rar) 360 | 361 | ### [Revanced:](https://github.com/revanced/revanced-patches) 362 | 363 | | Stable version | Beta version | 364 | | ----------------------------------------------------------------- | ---------------------------------------------------------------------- | 365 | | [All Architectures](../../releases/download/all/rar-revanced.apk) | [All Architectures](../../releases/download/all/rar-beta-revanced.apk) | 366 | 367 | --- 368 | 369 | ### [Strava:](https://play.google.com/store/apps/details?id=com.strava) 370 | 371 | ### [Revanced:](https://github.com/revanced/revanced-patches) 372 | 373 | | Stable version | Beta version | 374 | | ---------------------------------------------------------------------- | --------------------------------------------------------------------------- | 375 | | [Arm64-v8a](../../releases/download/all/strava-arm64-v8a-revanced.apk) | [Arm64-v8a](../../releases/download/all/strava-beta-arm64-v8a-revanced.apk) | 376 | 377 | --- 378 | 379 | ### [Pixiv:](https://play.google.com/store/apps/details?id=jp.pxv.android) 380 | 381 | ### [Revanced:](https://github.com/revanced/revanced-patches) 382 | 383 | | Stable version | Beta version | 384 | | ------------------------------------------------------------------- | ------------------------------------------------------------------------ | 385 | | [All Architectures](../../releases/download/all/pixiv-revanced.apk) | [All Architectures](../../releases/download/all/pixiv-beta-revanced.apk) | 386 | 387 | --- 388 | 389 | ### [Bilbili: (Chinese only)](https://play.google.com/store/apps/details?id=com.bilibili.app.in) 390 | 391 | ### [BiliRoamingM:](https://github.com/sakarie9/BiliRoamingM/) 392 | 393 | [All Architectures](../../releases/download/all/bilibili-BiliRoamingM.apk ) 394 | 395 | [Arm64-v8a](../../releases/download/all/bilibili-arm64-v8a-BiliRoamingM.apk ) 396 | 397 | --- 398 | 399 | ### [Nova Launcher:](https://play.google.com/store/apps/details?id=com.teslacoilsw.launcher) 400 | 401 | ### [Dropped Patches by indrastorms:](https://github.com/indrastorms/Dropped-Patches) 402 | 403 | [All Architectures](../../releases/download/all/nova-launcher-indrastorms.apk) 404 | 405 | --- 406 | 407 | ### [Tasker:](https://play.google.com/store/apps/details?id=net.dinglisch.android.taskerm) 408 | 409 | ### [Dropped Patches by indrastorms:](https://github.com/indrastorms/Dropped-Patches) 410 | 411 | [All Architectures](../../releases/download/all/tasker-indrastorms.apk) 412 | 413 | --- 414 | 415 | ### [FX File Explorer:](https://play.google.com/store/apps/details?id=nextapp.fx) 416 | 417 | ### [Dropped Patches by indrastorms:](https://github.com/indrastorms/Dropped-Patches) 418 | 419 | [All Architectures](../../releases/download/all/fx-file-explorer-indrastorms.apk) 420 | 421 | --- 422 | 423 | ### ⚠️ Library, resources using in this repository: 424 | 425 |
426 | Revanced 427 | 428 | [Patches](https://github.com/revanced/revanced-patches) - [GPL-3.0](https://github.com/revanced/revanced-patches/blob/main/LICENSE) 429 | 430 | [Integrations](https://github.com/revanced/revanced-integrations) - [GPL-3.0](https://github.com/revanced/revanced-integrations/blob/main/LICENSE) 431 | 432 | [CLI](https://github.com/revanced/revanced-cli) - [GPL-3.0](https://github.com/revanced/revanced-cli/blob/main/LICENSE) 433 | 434 | [GmsCore](https://github.com/ReVanced/GmsCore) - [GPL-3.0](https://github.com/revanced/revanced-cli/blob/main/LICENSE) 435 | 436 |
437 | 438 |
439 | inotia00 440 | 441 | [Patches](https://github.com/inotia00/revanced-patches) - [GPL-3.0](https://github.com/inotia00/revanced-patches/blob/revanced-extended/LICENSE) 442 | 443 | [Integrations](https://github.com/inotia00/revanced-integrations) - [GPL-3.0](https://github.com/inotia00/revanced-integrations/blob/main/LICENSE) 444 | 445 | [CLI](https://github.com/inotia00/revanced-cli) - [GPL-3.0](https://github.com/inotia00/revanced-cli/blob/main/LICENSE) 446 | 447 |
448 | 449 |
450 | anddea 451 | 452 | [Patches](https://github.com/anddea/revanced-patches) - [GPL-3.0](https://github.com/anddea/revanced-patches/blob/main/LICENSE) 453 | 454 | [Integrations](https://github.com/anddea/revanced-integrations) - [GPL-3.0](https://github.com/anddea/revanced-integrations/blob/main/LICENSE) 455 | 456 |
457 | 458 | 459 | 460 |
461 | crimera 462 | 463 | [Patches](https://github.com/crimera/piko) - [GPL-3.0](https://github.com/crimera/piko/blob/main/LICENSE) 464 | 465 | [Integrations](https://github.com/crimera/revanced-integrations) - [GPL-3.0](https://github.com/crimera/revanced-integrations/blob/main/LICENSE) 466 | 467 |
468 | 469 |
470 | kitadai31 471 | 472 | [Patches](https://github.com/kitadai31/revanced-patches-android6-7) - [GPL-3.0](https://github.com/kitadai31/revanced-patches-android6-7/blob/revanced-extended/LICENSE) 473 | 474 | [Integrations](https://github.com/kitadai31/revanced-integrations) - [GPL-3.0](https://github.com/kitadai31/revanced-integrations/blob/revanced-extended/LICENSE) 475 | 476 |
477 | 478 |
479 | d4n3436 480 | 481 | [Patches](https://github.com/d4n3436/revanced-patches-android5) - [GPL-3.0](https://github.com/d4n3436/revanced-patches-android5/blob/revanced-extended/LICENSE) 482 | 483 | [Integrations](https://github.com/d4n3436/revanced-integrations) - [GPL-3.0](https://github.com/d4n3436/revanced-integrations/blob/revanced-extended/LICENSE) 484 | 485 |
486 | 487 |
488 | BiliRoamingM 489 | 490 | [Patches & Integrations](https://github.com/sakarie9/BiliRoamingM) - [GPL-3.0](https://github.com/sakarie9/BiliRoamingM/blob/main/LICENSE) 491 | 492 |
493 | 494 |
495 | indrastorms 496 | 497 | [Patches](https://github.com/indrastorms/Dropped-Patches) - [GPL-3.0](https://github.com/indrastorms/Dropped-Patches/blob/main/LICENSE) 498 | 499 |
500 | 501 |
502 | Aunali321 503 | 504 | [Patches](https://github.com/Aunali321/ReVancedExperiments) - [GPL-3.0](https://github.com/Aunali321/ReVancedExperiments/blob/main/LICENSE) 505 | 506 |
507 | 508 | [Markdown Badges](https://github.com/Ileriayo/markdown-badges) - [MIT](https://github.com/Ileriayo/markdown-badges/blob/master/LICENSE) 509 | 510 | [pup](https://github.com/ericchiang/pup) - [MIT](https://github.com/ericchiang/pup/blob/master/LICENSE) 511 | 512 | [APKEditor](https://github.com/REAndroid/APKEditor) - [Apache-2.0](https://github.com/REAndroid/APKEditor/blob/master/LICENSE) 513 | 514 | --- 515 | 516 | ### ⚠️ Inspired by: 517 | 518 | [@luxysiv](https://github.com/luxysiv/yt-revanced-nonroot) - [GPL-3.0](https://github.com/luxysiv/revanced-nonroot/blob/main/LICENSE) 519 | 520 | [revanced-build-template](https://github.com/n0k0m3/revanced-build-template) - [GPL-3.0](https://github.com/n0k0m3/revanced-build-template/blob/main/LICENSE) 521 | 522 | [revanced-magisk-module](https://github.com/j-hc/revanced-magisk-module) - [GPL-3.0](https://github.com/j-hc/revanced-magisk-module/blob/main/LICENSE) 523 | -------------------------------------------------------------------------------- /docs/Frequently Asked Questions.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | Frequently Asked Questions 4 |
5 |

6 | 7 | ### Q: I'm facing a playback issue (Video stop loading after start 10-30s). How can I fix it? 8 | 9 | The issue might be that your Android OS is preventing MicroG (GMS Core) from running in the background. Follow these instructions to resolve the problem. 10 | 11 | [https://dontkillmyapp.com/](https://dontkillmyapp.com/) 12 | 13 | --- 14 | 15 | ### Q: How do I use this repository for patching my own app? 16 | 17 | You should [fork](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/fork) the repository, and then go to the `Action` tab 18 | ![Click Action](../docs/image/FAQ/patching-app-1.png) 19 | 20 | Click "I understand my workflows, go ahead and enable them" 21 | ![Click "I understand my workflows, go ahead and enable them"](../docs/image/FAQ/patching-app-2.png) 22 | 23 | Follow these steps to run the workflow for Manual Patch apps! 24 | ![](../docs/image/FAQ/patching-app-3.png) 25 | 26 | And then go to Readme click download your patched apps! 27 | 28 | --- 29 | 30 | ### Q: I want to use custom patches for patching my apps. How can I do it? 31 | 32 | You should open the folder `Revanced-And-Revanced-Extended-Non-Root/src/patches/`. It contains a lot of folders that are named after the apps you’re patching. Each folder has two files: exclude-patches and include-patches. Edit these files with the patches you like, putting one patch per line, following the patches list here: 33 | 34 | * For Revanced: https://github.com/revanced/revanced-patches 35 | * For Revanced Extended: https://github.com/inotia00/revanced-patches/tree/revanced-extended 36 | * For Revanced Extended Android 6 & 7: https://github.com/kitadai31/revanced-patches-android6-7/tree/revanced-extended 37 | 38 | --- 39 | 40 | ### Q: I want to use a custom file options.json. How can I do it? 41 | 42 | You should open the folder [Revanced-And-Revanced-Extended-Non-Root/src/options/](../src/options). It contains files revanced-extended.json, anddea.json... edit those file the same as you would options.json 43 | 44 | Revanced alias no longer use options.json anymore use directly `Revanced-And-Revanced-Extended-Non-Root/src/patches/` instead. 45 | 46 | The options separate with patches name with `|` 47 | 48 | Example Youtube apps include patches: 49 | 50 | `Custom branding|-OappName="YouTube ReVanced" -OiconPath=ReVanced*Logo` 51 | 52 | --- 53 | 54 | ### Q: I am facing errors using your apps, what do I do? 55 | 56 | I’m so sorry about this, but my repository only patches apps from “scripts” by other devs. I can’t fix errors when apps face errors, so if you get errors, please make an issue in [Revanced](https://github.com/revanced/revanced-patches), [Revanced Extended](https://github.com/inotia00/revanced-patches/tree/revanced-extended) or [Revanced Extended Android 6 & 7](https://github.com/kitadai31/revanced-patches-android6-7/tree/revanced-extended) repositories. 57 | 58 | --- 59 | 60 | ### Q: How do I know these apps are safe to use? 61 | 62 | You can rest assured that it’s safe because my code is 100% open-source and uses GitHub Actions to patch the apps. The apk files used for patching are downloaded from the trusted site “APKMirror”. 63 | 64 | ---- 65 | -------------------------------------------------------------------------------- /docs/image/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/Banner.png -------------------------------------------------------------------------------- /docs/image/FAQ/patching-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/FAQ/patching-app-1.png -------------------------------------------------------------------------------- /docs/image/FAQ/patching-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/FAQ/patching-app-2.png -------------------------------------------------------------------------------- /docs/image/FAQ/patching-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/FAQ/patching-app-3.png -------------------------------------------------------------------------------- /docs/image/FAQ/patching-app-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/FAQ/patching-app-4.png -------------------------------------------------------------------------------- /docs/image/Readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/docs/image/Readme.png -------------------------------------------------------------------------------- /src/_ks.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/_ks.keystore -------------------------------------------------------------------------------- /src/build/Anddea-Revanced-Extended-Beta.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended forked by Anddea build 3 | source src/build/utils.sh 4 | # Download requirements 5 | dl_gh "revanced-patches" "anddea" "prerelease" 6 | dl_gh "revanced-cli" "inotia00" "latest" 7 | 8 | # Patch YouTube: 9 | get_patches_key "youtube-rve-anddea" 10 | get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 11 | split_editor "youtube-beta" "youtube-beta" 12 | patch "youtube-beta" "anddea" "inotia" 13 | # Patch Youtube Arm64-v8a 14 | get_patches_key "youtube-rve-anddea" 15 | split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 16 | patch "youtube-beta-arm64-v8a" "anddea" "inotia" 17 | # Patch Youtube Armeabi-v7a 18 | get_patches_key "youtube-rve-anddea" 19 | split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 20 | patch "youtube-beta-armeabi-v7a" "anddea" "inotia" 21 | # Patch Youtube x86 22 | get_patches_key "youtube-rve-anddea" 23 | split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 24 | patch "youtube-beta-x86" "anddea" "inotia" 25 | # Patch Youtube x86_64 26 | get_patches_key "youtube-rve-anddea" 27 | split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 28 | patch "youtube-beta-x86_64" "anddea" "inotia" 29 | # Patch YouTube: 30 | #get_patches_key "youtube-rve-anddea" 31 | #get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" 32 | #patch "youtube-beta" "anddea" "inotia" 33 | # Split architecture Youtube: 34 | #get_patches_key "youtube-rve-anddea" 35 | #for i in {0..3}; do 36 | #split_arch "youtube-beta" "anddea" "$(gen_rip_libs ${libs[i]})" 37 | #done 38 | 39 | # Patch YouTube Music Extended: 40 | # Arm64-v8a 41 | get_patches_key "youtube-music-rve-anddea" 42 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 43 | patch "youtube-music-beta-arm64-v8a" "anddea" "inotia" 44 | # Armeabi-v7a 45 | get_patches_key "youtube-music-rve-anddea" 46 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 47 | patch "youtube-music-beta-armeabi-v7a" "anddea" "inotia" 48 | # x86_64 49 | get_patches_key "youtube-music-rve-anddea" 50 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 51 | patch "youtube-music-beta-x86_64" "anddea" "inotia" 52 | # x86 53 | get_patches_key "youtube-music-rve-anddea" 54 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 55 | patch "youtube-music-beta-x86" "anddea" "inotia" 56 | 57 | # Patch Spotjfy Arm64-v8a 58 | get_patches_key "Spotjfy-anddea" 59 | j="i" 60 | version="9.0.44.478" #https://github.com/ReVanced/revanced-patches/issues/4958#issuecomment-2883387940 61 | get_apkpure "com.spot"$j"fy.music" "spotjfy-beta-arm64-v8a" "spot"$j"fy-music-and-podcasts-for-android/com.spot"$j"fy.music" 62 | patch "spotjfy-beta-arm64-v8a" "anddea" 63 | 64 | # Patch YouTube Lite Arm64-v8a: 65 | get_patches_key "youtube-rve-anddea" 66 | split_editor "youtube-beta" "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi" 67 | patch "youtube-lite-beta-arm64-v8a" "anddea" "inotia" 68 | # Patch YouTube Lite Armeabi-v7a: 69 | get_patches_key "youtube-rve-anddea" 70 | split_editor "youtube-beta" "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi" 71 | patch "youtube-lite-beta-armeabi-v7a" "anddea" "inotia" 72 | -------------------------------------------------------------------------------- /src/build/Anddea-Revanced-Extended.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended forked by Anddea build 3 | source src/build/utils.sh 4 | # Download requirements 5 | dl_gh "revanced-patches" "anddea" "latest" 6 | dl_gh "revanced-cli" "inotia00" "latest" 7 | 8 | # Patch YouTube: 9 | get_patches_key "youtube-rve-anddea" 10 | get_apk "com.google.android.youtube" "youtube-stable" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 11 | split_editor "youtube-stable" "youtube-stable" 12 | patch "youtube-stable" "anddea" "inotia" 13 | # Patch Youtube Arm64-v8a 14 | get_patches_key "youtube-rve-anddea" 15 | split_editor "youtube-stable" "youtube-stable-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 16 | patch "youtube-stable-arm64-v8a" "anddea" "inotia" 17 | # Patch Youtube Armeabi-v7a 18 | get_patches_key "youtube-rve-anddea" 19 | split_editor "youtube-stable" "youtube-stable-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 20 | patch "youtube-stable-armeabi-v7a" "anddea" "inotia" 21 | # Patch Youtube x86 22 | get_patches_key "youtube-rve-anddea" 23 | split_editor "youtube-stable" "youtube-stable-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 24 | patch "youtube-stable-x86" "anddea" "inotia" 25 | # Patch Youtube x86_64 26 | get_patches_key "youtube-rve-anddea" 27 | split_editor "youtube-stable" "youtube-stable-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 28 | patch "youtube-stable-x86_64" "anddea" "inotia" 29 | # Patch YouTube: 30 | #get_patches_key "youtube-rve-anddea" 31 | #get_apk "com.google.android.youtube" "youtube-stable" "youtube" "google-inc/youtube/youtube" 32 | #patch "youtube-stable" "anddea" "inotia" 33 | # Split architecture Youtube: 34 | #get_patches_key "youtube-rve-anddea" 35 | #for i in {0..3}; do 36 | # split_arch "youtube-stable" "anddea" "$(gen_rip_libs ${libs[i]})" 37 | #done 38 | 39 | # Patch YouTube Music: 40 | # Arm64-v8a 41 | get_patches_key "youtube-music-rve-anddea" 42 | get_apk "com.google.android.apps.youtube.music" "youtube-music-stable-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 43 | patch "youtube-music-stable-arm64-v8a" "anddea" "inotia" 44 | # Armeabi-v7a 45 | get_patches_key "youtube-music-rve-anddea" 46 | get_apk "com.google.android.apps.youtube.music" "youtube-music-stable-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 47 | patch "youtube-music-stable-armeabi-v7a" "anddea" "inotia" 48 | # x86_64 49 | get_patches_key "youtube-music-rve-anddea" 50 | get_apk "com.google.android.apps.youtube.music" "youtube-music-stable-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 51 | patch "youtube-music-stable-x86_64" "anddea" "inotia" 52 | # x86 53 | get_patches_key "youtube-music-rve-anddea" 54 | get_apk "com.google.android.apps.youtube.music" "youtube-music-stable-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 55 | patch "youtube-music-stable-x86" "anddea" "inotia" 56 | 57 | # Patch Spotjfy Arm64-v8a 58 | get_patches_key "Spotjfy-anddea" 59 | j="i" 60 | version="9.0.44.478" #https://github.com/ReVanced/revanced-patches/issues/4958#issuecomment-2883387940 61 | get_apkpure "com.spot"$j"fy.music" "spotjfy-arm64-v8a" "spot"$j"fy-music-and-podcasts-for-android/com.spot"$j"fy.music" 62 | patch "spotjfy-arm64-v8a" "anddea" 63 | 64 | # Patch YouTube Lite Arm64-v8a: 65 | get_patches_key "youtube-rve-anddea" 66 | split_editor "youtube-stable" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi" 67 | patch "youtube-lite-arm64-v8a" "anddea" "inotia" 68 | # Patch YouTube Lite Armeabi-v7a: 69 | get_patches_key "youtube-rve-anddea" 70 | split_editor "youtube-stable" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi" 71 | patch "youtube-lite-armeabi-v7a" "anddea" "inotia" 72 | -------------------------------------------------------------------------------- /src/build/BiliRoamingM.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # BiliRoamingM build for chinese only 3 | source ./src/build/utils.sh 4 | ################################################# 5 | # Download requirements 6 | dl_gh "revanced-cli" "revanced" "v4.6.0" 7 | dl_gh "BiliRoamingM" "sakarie9" "latest" 8 | ################################################# 9 | # Patch bilibili: 10 | get_patches_key "bilibili-BiliRoamingM" 11 | get_apk "com.bilibili.app.in" "bilibili" "bilibili" "bilibili/bilibili/bilibili" "Bundle_extract" 12 | split_editor "bilibili" "bilibili" 13 | patch "bilibili" "BiliRoamingM" 14 | # Patch bilibili Arm64-v8a: 15 | get_patches_key "bilibili-BiliRoamingM" 16 | split_editor "bilibili" "bilibili-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 17 | patch "bilibili-arm64-v8a" "BiliRoamingM" -------------------------------------------------------------------------------- /src/build/Dropped-Patches-Revanced.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Dropped Patches by indrastorms 3 | source ./src/build/utils.sh 4 | 5 | ################################################# 6 | 7 | # Download requirements 8 | dl_gh "Dropped-Patches" "indrastorms" "v1.4.2" 9 | dl_gh "revanced-integrations" "revanced" "v1.8.0" 10 | dl_gh "revanced-cli" "revanced" "v4.6.0" 11 | 12 | ################################################# 13 | 14 | # Patch Tasker: 15 | get_patches_key "tasker-indrastorms" 16 | get_apk "net.dinglisch.android.taskerm" "tasker" "tasker" "joaomgcd/tasker/tasker" 17 | patch "tasker" "indrastorms" 18 | 19 | ################################################# 20 | 21 | #Patch Nova Launcher: 22 | get_patches_key "nova-launcher-indrastorms" 23 | get_apk "com.teslacoilsw.launcher" "nova-launcher" "nova-launcher" "teslacoil-software/nova-launcher/nova-launcher" 24 | patch "nova-launcher" "indrastorms" 25 | 26 | ################################################# 27 | 28 | #Patch FX File Explorer: 29 | get_patches_key "fx-file-explorer-indrastorms" 30 | get_apk "nextapp.fx" "fx-file-explorer" "fx-file-explorer" "nextapp-inc/fx-file-explorer/fx-file-explorer" 31 | patch "fx-file-explorer" "indrastorms" 32 | 33 | ################################################# -------------------------------------------------------------------------------- /src/build/Piko.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Twitter Piko 3 | source src/build/utils.sh 4 | 5 | # Patch Twitter Piko: 6 | patch_piko () { 7 | dl_gh "revanced-cli" "revanced" "v4.6.0" 8 | get_patches_key "twitter-piko" 9 | local v apk_name 10 | if [[ "$1" == "latest" ]]; then 11 | v="latest" apk_name="stable" 12 | else 13 | v="prerelease" apk_name="beta" 14 | fi 15 | dl_gh "piko revanced-integrations" "crimera" "$v" 16 | version="10.86.0-release.0" #https://t.me/pikopatches/16/29916 17 | get_apk "com.twitter.android" "twitter-$apk_name" "twitter" "x-corp/twitter/x-previously-twitter" "Bundle_extract" 18 | split_editor "twitter-$apk_name" "twitter-$apk_name" 19 | patch "twitter-$apk_name" "piko" 20 | # Patch Twitter Piko Arm64-v8a: 21 | get_patches_key "twitter-piko" 22 | split_editor "twitter-$apk_name" "twitter-arm64-v8a-$apk_name" "exclude" "plit_config.armeabi_v7a split_config.x86 split_config.x86_64 split_config.mdpi split_config.hdpi split_config.xhdpi split_config.xxhdpi split_config.tvdpi" 23 | patch "twitter-arm64-v8a-$apk_name" "piko" 24 | } 25 | patch_piko $1 26 | -------------------------------------------------------------------------------- /src/build/Revanced-Beta.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced build 3 | source ./src/build/utils.sh 4 | # Download requirements 5 | revanced_dl(){ 6 | dl_gh "revanced-patches" "revanced" "prerelease" 7 | dl_gh "revanced-cli" "revanced" "latest" 8 | } 9 | 1() { 10 | revanced_dl 11 | # Patch YouTube: 12 | get_patches_key "youtube-revanced" 13 | get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 14 | split_editor "youtube-beta" "youtube-beta" 15 | patch "youtube-beta" "revanced" 16 | # Patch Youtube Arm64-v8a 17 | get_patches_key "youtube-revanced" 18 | split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 19 | patch "youtube-beta-arm64-v8a" "revanced" 20 | # Patch Youtube Armeabi-v7a 21 | get_patches_key "youtube-revanced" 22 | split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 23 | patch "youtube-beta-armeabi-v7a" "revanced" 24 | # Patch Youtube x86 25 | get_patches_key "youtube-revanced" 26 | split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 27 | patch "youtube-beta-x86" "revanced" 28 | # Patch Youtube x86_64 29 | get_patches_key "youtube-revanced" 30 | split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 31 | patch "youtube-beta-x86_64" "revanced" 32 | } 33 | 2() { 34 | revanced_dl 35 | # Patch Messenger: 36 | # Arm64-v8a 37 | get_patches_key "messenger" 38 | lock_version="1" 39 | get_apk "com.facebook.orca" "messenger-arm64-v8a-beta" "messenger" "facebook-2/messenger/facebook-messenger" "arm64-v8a" "nodpi" 40 | patch "messenger-arm64-v8a-beta" "revanced" 41 | # Patch Facebook: 42 | # Arm64-v8a 43 | get_patches_key "facebook" 44 | version="490.0.0.63.82" #Force this version because only patch in this version 45 | get_apk "com.facebook.katana" "facebook-arm64-v8a-beta" "facebook" "facebook-2/facebook/facebook" "arm64-v8a" "nodpi" "Android 11+" 46 | patch "facebook-arm64-v8a-beta" "revanced" 47 | } 48 | 3() { 49 | revanced_dl 50 | # Patch Google photos: 51 | # Arm64-v8a 52 | get_patches_key "gg-photos" 53 | get_apk "com.google.android.apps.photos" "gg-photos-arm64-v8a-beta" "photos" "google-inc/photos/google-photos" "arm64-v8a" "nodpi" 54 | patch "gg-photos-arm64-v8a-beta" "revanced" 55 | # Armeabi-v7a 56 | get_patches_key "gg-photos" 57 | get_apk "com.google.android.apps.photos" "gg-photos-armeabi-v7a-beta" "photos" "google-inc/photos/google-photos" "armeabi-v7a" "nodpi" 58 | patch "gg-photos-armeabi-v7a-beta" "revanced" 59 | } 60 | 4() { 61 | revanced_dl 62 | # Patch Tiktok: 63 | get_patches_key "tiktok" 64 | url="https://tiktok.en.uptodown.com/android/download/1026195874-x" #Use uptodown because apkmirror ban tiktok in US lead github action can't download apk file 65 | url="https://dw.uptodown.com/dwn/$(req "$url" - | $pup -p --charset utf-8 'button#detail-download-button attr{data-url}')" 66 | req "$url" "tiktok-beta.apk" 67 | patch "tiktok-beta" "revanced" 68 | # Patch Instagram: 69 | # Arm64-v8a 70 | get_patches_key "instagram" 71 | get_apk "com.instagram.android" "instagram-arm64-v8a-beta" "instagram-instagram" "instagram/instagram-instagram/instagram" "arm64-v8a" "nodpi" 72 | patch "instagram-arm64-v8a-beta" "revanced" 73 | } 74 | 5() { 75 | revanced_dl 76 | # Patch Pixiv: 77 | get_patches_key "pixiv" 78 | version="6.134.1" #https://github.com/ReVanced/revanced-patches/issues/4477 79 | get_apk "jp.pxv.android" "pixiv-beta" "pixiv" "pixiv-inc/pixiv/pixiv" 80 | patch "pixiv-beta" "revanced" 81 | # Patch Twitch: 82 | get_patches_key "twitch" 83 | #get_apk "tv.twitch.android.app" "twitch-beta" "twitch" "twitch-interactive-inc/twitch/twitch" "Bundle_extract" 84 | #split_editor "twitch-beta" "twitch-beta" 85 | version="19.1.0" #https://github.com/orgs/ReVanced/discussions/1135#discussioncomment-11797007 86 | get_apk "tv.twitch.android.app" "twitch-beta" "twitch" "twitch-interactive-inc/twitch/twitch" 87 | patch "twitch-beta" "revanced" 88 | # Patch Twitch Arm64-v8a: 89 | #get_patches_key "twitch" 90 | #split_editor "twitch-beta" "twitch-arm64-v8a-beta" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 91 | #patch "twitch-arm64-v8a-beta" "revanced" 92 | } 93 | 6() { 94 | revanced_dl 95 | # Patch Tumblr: 96 | get_patches_key "tumblr" 97 | get_apk "com.tumblr" "tumblr-beta" "tumblr" "tumblr-inc/tumblr/tumblr-fandom-art-chaos" "Bundle_extract" 98 | split_editor "tumblr-beta" "tumblr-beta" 99 | patch "tumblr-beta" "revanced" 100 | # Patch Tumblr Arm64-v8a: 101 | get_patches_key "tumblr" 102 | split_editor "tumblr-beta" "tumblr-arm64-v8a-beta" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 103 | patch "tumblr-arm64-v8a-beta" "revanced" 104 | # Patch SoundCloud: 105 | get_patches_key "soundcloud" 106 | get_apk "com.soundcloud.android" "soundcloud-beta" "soundcloud-soundcloud" "soundcloud/soundcloud-soundcloud/soundcloud-play-music-songs" "Bundle_extract" 107 | split_editor "soundcloud-beta" "soundcloud-beta" 108 | patch "soundcloud-beta" "revanced" 109 | # Patch SoundCloud Arm64-v8a: 110 | get_patches_key "soundcloud" 111 | split_editor "soundcloud-beta" "soundcloud-arm64-v8a-beta" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 112 | patch "soundcloud-arm64-v8a-beta" "revanced" 113 | } 114 | 7() { 115 | revanced_dl 116 | # Patch Lightroom: 117 | get_patches_key "lightroom" 118 | url="https://adobe-lightroom-mobile.en.uptodown.com/android/download/1033600808" #Use uptodown because apkmirror always ask pass Cloudflare on this app 119 | url="https://dw.uptodown.com/dwn/$(req "$url" - | $pup -p --charset utf-8 'button#detail-download-button attr{data-url}')" 120 | req "$url" "lightroom-beta.apk" 121 | patch "lightroom-beta" "revanced" 122 | # Patch RAR: 123 | get_patches_key "rar" 124 | get_apk "com.rarlab.rar" "rar-beta" "rar" "rarlab-published-by-win-rar-gmbh/rar/rar" "Bundle" 125 | patch "rar-beta" "revanced" 126 | } 127 | 8() { 128 | revanced_dl 129 | get_apk "com.google.android.youtube" "youtube-lite-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 130 | # Patch YouTube Lite Arm64-v8a: 131 | get_patches_key "youtube-revanced" 132 | split_editor "youtube-lite-beta" "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xxxhdpi" 133 | patch "youtube-lite-beta-arm64-v8a" "revanced" 134 | # Patch YouTube Lite Armeabi-v7a: 135 | get_patches_key "youtube-revanced" 136 | split_editor "youtube-lite-beta" "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xxxhdpi" 137 | patch "youtube-lite-beta-armeabi-v7a" "revanced" 138 | } 139 | 9() { 140 | revanced_dl 141 | # Patch YouTube Music: 142 | # Arm64-v8a 143 | get_patches_key "youtube-music-revanced" 144 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 145 | patch "youtube-music-beta-arm64-v8a" "revanced" 146 | # Armeabi-v7a 147 | get_patches_key "youtube-music-revanced" 148 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 149 | patch "youtube-music-beta-armeabi-v7a" "revanced" 150 | # x86_64 151 | get_patches_key "youtube-music-revanced" 152 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 153 | patch "youtube-music-beta-x86_64" "revanced" 154 | # x86 155 | get_patches_key "youtube-music-revanced" 156 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 157 | patch "youtube-music-beta-x86" "revanced" 158 | } 159 | 10() { 160 | revanced_dl 161 | # Patch Duolingo 162 | get_patches_key "Duolingo" 163 | lock_version="1" 164 | get_apk "com.duolingo" "duolingo-beta" "duolingo-duolingo" "duolingo/duolingo-duolingo/duolingo-language-lessons" "Bundle" 165 | patch "duolingo-beta" "revanced" 166 | # Patch Google News Arm64-v8a 167 | get_patches_key "GoogleNews" 168 | get_apk "com.google.android.apps.magazines" "googlenews-beta" "google-news" "google-inc/google-news/google-news" "Bundle_extract" 169 | split_editor "googlenews-beta" "googlenews-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 170 | patch "googlenews-beta-arm64-v8a" "revanced" 171 | } 172 | 11() { 173 | revanced_dl 174 | # Patch Photomath 175 | get_patches_key "Photomath" 176 | get_apk "com.microblink.photomath" "photomath-beta" "photomath" "google-inc/photomath/photomath" "Bundle" "Bundle_extract" 177 | split_editor "photomath-beta" "photomath-beta" 178 | patch "photomath-beta" "revanced" 179 | # Patch Strava: 180 | get_patches_key "strava" 181 | get_apkpure "com.strava" "strava-beta-arm64-v8a" "strava-run-hike-2025-health/com.strava" "Bundle" 182 | patch "strava-beta-arm64-v8a" "revanced" 183 | } 184 | 12() { 185 | revanced_dl 186 | # Patch Spotjfy Arm64-v8a 187 | get_patches_key "Spotjfy-revanced" 188 | j="i" 189 | version="9.0.44.478" #https://github.com/ReVanced/revanced-patches/issues/4958#issuecomment-2883387940 190 | get_apkpure "com.spot"$j"fy.music" "spotjfy-beta-arm64-v8a" "spot"$j"fy-music-and-podcasts-for-android/com.spot"$j"fy.music" 191 | patch "spotjfy-beta-arm64-v8a" "revanced" 192 | } 193 | case "$1" in 194 | 1) 195 | 1 196 | ;; 197 | 2) 198 | 2 199 | ;; 200 | 3) 201 | 3 202 | ;; 203 | 4) 204 | 4 205 | ;; 206 | 5) 207 | 5 208 | ;; 209 | 6) 210 | 6 211 | ;; 212 | 7) 213 | 7 214 | ;; 215 | 8) 216 | 8 217 | ;; 218 | 9) 219 | 9 220 | ;; 221 | 10) 222 | 10 223 | ;; 224 | 11) 225 | 11 226 | ;; 227 | 12) 228 | 12 229 | ;; 230 | esac 231 | -------------------------------------------------------------------------------- /src/build/Revanced-Experiment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ReVanced Experiments build 3 | source src/build/utils.sh 4 | 5 | ################################################# 6 | 7 | # Download requirements 8 | dl_gh "ReVancedExperiments" "Aunali321" "latest" 9 | dl_gh "revanced-cli" "revanced" "latest" 10 | 11 | ################################################# 12 | 13 | # Patch Telegram CH Play Version: 14 | get_patches_key "telegram-revanced-experiments" 15 | get_apk "org.telegram.messenger" "telegram" "telegram" "telegram-fz-llc/telegram/telegram" "arm64-v8a" "nodpi" 16 | patch "telegram" "revanced-experiments" 17 | 18 | # Patch Telegram Web Version: 19 | get_patches_key "telegram-revanced-experiments" 20 | get_apk "org.telegram.messenger" "telegram-web-version" "telegram-web-version" "telegram-fz-llc/telegram-web-version/telegram-web-version" 21 | patch "telegram-web-version" "revanced-experiments" 22 | 23 | # Patch Instagram: 24 | get_patches_key "instagram-revanced-experiments" 25 | get_apk "com.instagram.android" "instagram-arm64-v8a" "instagram-instagram" "instagram/instagram-instagram/instagram-instagram" "arm64-v8a" "nodpi" 26 | patch "instagram-arm64-v8a" "revanced-experiments" -------------------------------------------------------------------------------- /src/build/Revanced-Extended-Android-5.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended for android 5 3 | source src/build/utils.sh 4 | 5 | # Download requirements 6 | dl_gh "revanced-patches-android5 revanced-integrations" "d4n3436" "latest" 7 | dl_gh "revanced-cli" "revanced" "v3.1.1" 8 | 9 | # Patch YouTube Extended for android 5: 10 | get_patches_key "youtube-revanced-extended-5" 11 | version="16.40.36" 12 | get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 13 | split_editor "youtube" "youtube" 14 | patch "youtube" "revanced-extended-android-5" 15 | # Patch Youtube Arm64-v8a 16 | get_patches_key "youtube-revanced-extended-5" 17 | split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 18 | patch "youtube-arm64-v8a" "revanced-extended-android-5" 19 | # Patch Youtube Armeabi-v7a 20 | get_patches_key "youtube-revanced-extended-5" 21 | split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 22 | patch "youtube-armeabi-v7a" "revanced-extended-android-5" 23 | # Patch Youtube x86 24 | get_patches_key "youtube-revanced-extended-5" 25 | split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 26 | patch "youtube-x86" "revanced-extended-android-5" 27 | # Patch Youtube x86_64 28 | get_patches_key "youtube-revanced-extended-5" 29 | split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 30 | patch "youtube-x86_64" "revanced-extended-android-5" 31 | -------------------------------------------------------------------------------- /src/build/Revanced-Extended-Android-6-7.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended for android 6 & 7 build 3 | source src/build/utils.sh 4 | 5 | # Download requirements 6 | dl_gh "revanced-patches-android6-7" "kitadai31" "latest" 7 | dl_gh "revanced-cli" "inotia00" "latest" 8 | # Patch YouTube Extended for android 6 & 7: 9 | get_patches_key "youtube-revanced-extended-6-7" 10 | version="17.34.36" 11 | get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 12 | split_editor "youtube" "youtube" 13 | patch "youtube" "revanced-extended-android-6-7" "inotia" 14 | # Patch Youtube Arm64-v8a 15 | get_patches_key "youtube-revanced-extended-6-7" 16 | split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 17 | patch "youtube-arm64-v8a" "revanced-extended-android-6-7" "inotia" 18 | # Patch Youtube Armeabi-v7a 19 | get_patches_key "youtube-revanced-extended-6-7" 20 | split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 21 | patch "youtube-armeabi-v7a" "revanced-extended-android-6-7" "inotia" 22 | # Patch Youtube x86 23 | get_patches_key "youtube-revanced-extended-6-7" 24 | split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 25 | patch "youtube-x86" "revanced-extended-android-6-7" "inotia" 26 | # Patch Youtube x86_64 27 | get_patches_key "youtube-revanced-extended-6-7" 28 | split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 29 | patch "youtube-x86_64" "revanced-extended-android-6-7" "inotia" 30 | -------------------------------------------------------------------------------- /src/build/Revanced-Extended-Beta.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended build 3 | source src/build/utils.sh 4 | 5 | # Download requirements 6 | dl_gh "revanced-patches revanced-cli" "inotia00" "prerelease" 7 | 8 | # Patch YouTube: 9 | get_patches_key "youtube-revanced-extended" 10 | get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 11 | split_editor "youtube-beta" "youtube-beta" 12 | patch "youtube-beta" "revanced-extended" "inotia" 13 | # Patch Youtube Arm64-v8a 14 | get_patches_key "youtube-revanced-extended" 15 | split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 16 | patch "youtube-beta-arm64-v8a" "revanced-extended" "inotia" 17 | # Patch Youtube Armeabi-v7a 18 | get_patches_key "youtube-revanced-extended" 19 | split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 20 | patch "youtube-beta-armeabi-v7a" "revanced-extended" "inotia" 21 | # Patch Youtube x86 22 | get_patches_key "youtube-revanced-extended" 23 | split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 24 | patch "youtube-beta-x86" "revanced-extended" "inotia" 25 | # Patch Youtube x86_64 26 | get_patches_key "youtube-revanced-extended" 27 | split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 28 | patch "youtube-beta-x86_64" "revanced-extended" "inotia" 29 | # Patch YouTube: 30 | #get_patches_key "youtube-revanced-extended" 31 | #get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" 32 | #patch "youtube-beta" "revanced-extended" "inotia" 33 | # Split architecture Youtube: 34 | #get_patches_key "youtube-revanced-extended" 35 | #for i in {0..3}; do 36 | # split_arch "youtube-beta" "revanced-extended" "$(gen_rip_libs ${libs[i]})" 37 | #done 38 | 39 | # Patch YouTube Music Extended: 40 | # Arm64-v8a 41 | get_patches_key "youtube-music-revanced-extended" 42 | get_apk "com.google.android.apps.youtube.music" "youtube-beta-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 43 | patch "youtube-beta-music-arm64-v8a" "revanced-extended" "inotia" 44 | # Armeabi-v7a 45 | get_patches_key "youtube-music-revanced-extended" 46 | version="8.02.52" 47 | get_apk "com.google.android.apps.youtube.music" "youtube-beta-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 48 | patch "youtube-beta-music-armeabi-v7a" "revanced-extended" "inotia" 49 | # x86_64 50 | get_patches_key "youtube-music-revanced-extended" 51 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 52 | patch "youtube-music-beta-x86_64" "revanced-extended" "inotia" 53 | # x86 54 | get_patches_key "youtube-music-revanced-extended" 55 | get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 56 | patch "youtube-music-beta-x86" "revanced-extended" "inotia" 57 | 58 | # Patch Reddit: 59 | get_patches_key "reddit-rve" 60 | get_apk "com.reddit.frontpage" "reddit-beta" "reddit" "redditinc/reddit/reddit" "Bundle_extract" 61 | split_editor "reddit-beta" "reddit" 62 | patch "reddit-beta" "revanced-extended" "inotia" 63 | # Patch Arm64-v8a: 64 | split_editor "reddit-beta" "reddit-arm64-v8a-beta" "exclude" "split_config.armeabi_v7a split_config.x86_64 split_config.mdpi split_config.ldpi split_config.hdpi split_config.xhdpi split_config.xxhdpi split_config.tvdpi" 65 | get_patches_key "reddit-rve" 66 | patch "reddit-arm64-v8a-beta" "revanced-extended" "inotia" 67 | 68 | # Patch YouTube Lite Arm64-v8a: 69 | get_patches_key "youtube-revanced-extended" 70 | split_editor "youtube-beta" "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi" 71 | patch "youtube-lite-beta-arm64-v8a" "revanced-extended" "inotia" 72 | # Patch YouTube Lite Armeabi-v7a: 73 | get_patches_key "youtube-revanced-extended" 74 | split_editor "youtube-beta" "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi" 75 | patch "youtube-lite-beta-armeabi-v7a" "revanced-extended" "inotia" 76 | -------------------------------------------------------------------------------- /src/build/Revanced-Extended.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced Extended build 3 | source src/build/utils.sh 4 | 5 | # Download requirements 6 | dl_gh "revanced-patches revanced-cli" "inotia00" "latest" 7 | 8 | # Patch YouTube: 9 | get_patches_key "youtube-revanced-extended" 10 | get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 11 | split_editor "youtube" "youtube" 12 | patch "youtube" "revanced-extended" "inotia" 13 | # Patch Youtube Arm64-v8a 14 | get_patches_key "youtube-revanced-extended" 15 | split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 16 | patch "youtube-arm64-v8a" "revanced-extended" "inotia" 17 | # Patch Youtube Armeabi-v7a 18 | get_patches_key "youtube-revanced-extended" 19 | split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 20 | patch "youtube-armeabi-v7a" "revanced-extended" "inotia" 21 | # Patch Youtube x86 22 | get_patches_key "youtube-revanced-extended" 23 | split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 24 | patch "youtube-x86" "revanced-extended" "inotia" 25 | # Patch Youtube x86_64 26 | get_patches_key "youtube-revanced-extended" 27 | split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 28 | patch "youtube-x86_64" "revanced-extended" "inotia" 29 | # Patch YouTube: 30 | #get_patches_key "youtube-revanced-extended" 31 | #get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" 32 | #patch "youtube" "revanced-extended" "inotia" 33 | # Split architecture Youtube: 34 | #get_patches_key "youtube-revanced-extended" 35 | #for i in {0..3}; do 36 | # split_arch "youtube" "revanced-extended" "$(gen_rip_libs ${libs[i]})" 37 | #done 38 | 39 | # Patch YouTube Music Extended: 40 | # Arm64-v8a 41 | get_patches_key "youtube-music-revanced-extended" 42 | get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 43 | patch "youtube-music-arm64-v8a" "revanced-extended" "inotia" 44 | # Armeabi-v7a 45 | get_patches_key "youtube-music-revanced-extended" 46 | get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 47 | patch "youtube-music-armeabi-v7a" "revanced-extended" "inotia" 48 | # x86_64 49 | get_patches_key "youtube-music-revanced-extended" 50 | get_apk "com.google.android.apps.youtube.music" "youtube-music-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 51 | patch "youtube-music-x86_64" "revanced-extended" "inotia" 52 | # x86 53 | get_patches_key "youtube-music-revanced-extended" 54 | get_apk "com.google.android.apps.youtube.music" "youtube-music-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 55 | patch "youtube-music-x86" "revanced-extended" "inotia" 56 | 57 | # Patch Reddit: 58 | get_patches_key "reddit-rve" 59 | get_apk "com.reddit.frontpage" "reddit" "reddit" "redditinc/reddit/reddit" "Bundle_extract" 60 | split_editor "reddit" "reddit" 61 | patch "reddit" "revanced-extended" "inotia" 62 | # Patch Arm64-v8a: 63 | split_editor "reddit" "reddit-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86_64 split_config.mdpi split_config.ldpi split_config.hdpi split_config.xhdpi split_config.xxhdpi split_config.tvdpi" 64 | get_patches_key "reddit-rve" 65 | patch "reddit-arm64-v8a" "revanced-extended" "inotia" 66 | 67 | # Patch YouTube Lite Arm64-v8a: 68 | get_patches_key "youtube-revanced-extended" 69 | split_editor "youtube" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi" 70 | patch "youtube-lite-arm64-v8a" "revanced-extended" "inotia" 71 | # Patch YouTube Lite Armeabi-v7a: 72 | get_patches_key "youtube-revanced-extended" 73 | split_editor "youtube" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi" 74 | patch "youtube-lite-armeabi-v7a" "revanced-extended" "inotia" 75 | -------------------------------------------------------------------------------- /src/build/Revanced.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Revanced build 3 | source ./src/build/utils.sh 4 | # Download requirements 5 | revanced_dl(){ 6 | dl_gh "revanced-patches revanced-cli" "revanced" "latest" 7 | } 8 | 1() { 9 | revanced_dl 10 | # Patch YouTube: 11 | get_patches_key "youtube-revanced" 12 | get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 13 | split_editor "youtube" "youtube" 14 | patch "youtube" "revanced" 15 | # Patch Youtube Arm64-v8a 16 | get_patches_key "youtube-revanced" 17 | split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 18 | patch "youtube-arm64-v8a" "revanced" 19 | # Patch Youtube Armeabi-v7a 20 | get_patches_key "youtube-revanced" 21 | split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64" 22 | patch "youtube-armeabi-v7a" "revanced" 23 | # Patch Youtube x86 24 | get_patches_key "youtube-revanced" 25 | split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64" 26 | patch "youtube-x86" "revanced" 27 | # Patch Youtube x86_64 28 | get_patches_key "youtube-revanced" 29 | split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86" 30 | patch "youtube-x86_64" "revanced" 31 | } 32 | 2() { 33 | revanced_dl 34 | # Patch Messenger: 35 | # Arm64-v8a 36 | get_patches_key "messenger" 37 | lock_version="1" 38 | get_apk "com.facebook.orca" "messenger-arm64-v8a" "messenger" "facebook-2/messenger/facebook-messenger" "arm64-v8a" "nodpi" 39 | patch "messenger-arm64-v8a" "revanced" 40 | # Patch Facebook: 41 | # Arm64-v8a 42 | get_patches_key "facebook" 43 | get_apk "com.facebook.katana" "facebook-arm64-v8a" "facebook" "facebook-2/facebook/facebook" "arm64-v8a" "nodpi" "Android 11+" 44 | patch "facebook-arm64-v8a" "revanced" 45 | } 46 | 3() { 47 | revanced_dl 48 | # Patch Google photos: 49 | # Arm64-v8a 50 | get_patches_key "gg-photos" 51 | get_apk "com.google.android.apps.photos" "gg-photos-arm64-v8a" "photos" "google-inc/photos/google-photos" "arm64-v8a" "nodpi" 52 | patch "gg-photos-arm64-v8a" "revanced" 53 | # Armeabi-v7a 54 | get_patches_key "gg-photos" 55 | get_apk "com.google.android.apps.photos" "gg-photos-armeabi-v7a" "photos" "google-inc/photos/google-photos" "armeabi-v7a" "nodpi" 56 | patch "gg-photos-armeabi-v7a" "revanced" 57 | } 58 | 4() { 59 | revanced_dl 60 | # Patch Tiktok: 61 | get_patches_key "tiktok" 62 | url="https://tiktok.en.uptodown.com/android/download/1026195874-x" #Use uptodown because apkmirror ban tiktok in US lead github action can't download apk file 63 | url="https://dw.uptodown.com/dwn/$(req "$url" - | $pup -p --charset utf-8 'button#detail-download-button attr{data-url}')" 64 | req "$url" "tiktok.apk" 65 | patch "tiktok" "revanced" 66 | # Patch Instagram: 67 | # Arm64-v8a 68 | get_patches_key "instagram" 69 | get_apk "com.instagram.android" "instagram-arm64-v8a" "instagram-instagram" "instagram/instagram-instagram/instagram" "arm64-v8a" "nodpi" 70 | patch "instagram-arm64-v8a" "revanced" 71 | } 72 | 5() { 73 | revanced_dl 74 | # Patch Pixiv: 75 | get_patches_key "pixiv" 76 | version="6.134.1" #https://github.com/ReVanced/revanced-patches/issues/4477 77 | get_apk "jp.pxv.android" "pixiv" "pixiv" "pixiv-inc/pixiv/pixiv" 78 | patch "pixiv" "revanced" 79 | # Patch Twitch: 80 | get_patches_key "twitch" 81 | #get_apk "tv.twitch.android.app" "twitch" "twitch" "twitch-interactive-inc/twitch/twitch" "Bundle_extract" 82 | #split_editor "twitch" "twitch" 83 | version="19.1.0" #https://github.com/orgs/ReVanced/discussions/1135#discussioncomment-11797007 84 | get_apk "tv.twitch.android.app" "twitch" "twitch" "twitch-interactive-inc/twitch/twitch" 85 | patch "twitch" "revanced" 86 | # Patch Twitch Arm64-v8a: 87 | #get_patches_key "twitch" 88 | #split_editor "twitch" "twitch-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 89 | #patch "twitch-arm64-v8a" "revanced" 90 | } 91 | 6() { 92 | revanced_dl 93 | # Patch Tumblr: 94 | get_patches_key "tumblr" 95 | get_apk "com.tumblr" "tumblr" "tumblr" "tumblr-inc/tumblr/tumblr-fandom-art-chaos" "Bundle_extract" 96 | split_editor "tumblr" "tumblr" 97 | patch "tumblr" "revanced" 98 | # Patch Tumblr Arm64-v8a: 99 | get_patches_key "tumblr" 100 | split_editor "tumblr" "tumblr-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 101 | patch "tumblr-arm64-v8a" "revanced" 102 | # Patch SoundCloud: 103 | get_patches_key "soundcloud" 104 | get_apk "com.soundcloud.android" "soundcloud" "soundcloud-soundcloud" "soundcloud/soundcloud-soundcloud/soundcloud-play-music-songs" "Bundle_extract" 105 | split_editor "soundcloud" "soundcloud" 106 | patch "soundcloud" "revanced" 107 | # Patch SoundCloud Arm64-v8a: 108 | get_patches_key "soundcloud" 109 | split_editor "soundcloud" "soundcloud-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 110 | patch "soundcloud-arm64-v8a" "revanced" 111 | } 112 | 7() { 113 | revanced_dl 114 | # Patch RAR: 115 | get_patches_key "rar" 116 | get_apk "com.rarlab.rar" "rar" "rar" "rarlab-published-by-win-rar-gmbh/rar/rar" "Bundle" 117 | patch "rar" "revanced" 118 | # Patch Lightroom: 119 | #get_patches_key "lightroom" 120 | #version="10.0.2" 121 | #get_apk "com.adobe.lrmobile" "lightroom" "lightroom" "adobe/lightroom/lightroom" 122 | #patch "lightroom" "revanced" 123 | } 124 | 8() { 125 | revanced_dl 126 | get_apk "com.google.android.youtube" "youtube-lite" "youtube" "google-inc/youtube/youtube" "Bundle_extract" 127 | # Patch YouTube Lite Arm64-v8a: 128 | get_patches_key "youtube-revanced" 129 | split_editor "youtube-lite" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xxxhdpi" 130 | patch "youtube-lite-arm64-v8a" "revanced" 131 | # Patch YouTube Lite Armeabi-v7a: 132 | get_patches_key "youtube-revanced" 133 | split_editor "youtube-lite" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xxxhdpi" 134 | patch "youtube-lite-armeabi-v7a" "revanced" 135 | } 136 | 9() { 137 | revanced_dl 138 | # Patch YouTube Music: 139 | # Arm64-v8a 140 | get_patches_key "youtube-music-revanced" 141 | get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a" 142 | patch "youtube-music-arm64-v8a" "revanced" 143 | # Armeabi-v7a 144 | get_patches_key "youtube-music-revanced" 145 | get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a" 146 | patch "youtube-music-armeabi-v7a" "revanced" 147 | # x86_64 148 | get_patches_key "youtube-music-revanced" 149 | get_apk "com.google.android.apps.youtube.music" "youtube-music-x86_64" "youtube-music" "google-inc/youtube-music/youtube-music" "x86_64" 150 | patch "youtube-music-x86_64" "revanced" 151 | # x86 152 | get_patches_key "youtube-music-revanced" 153 | get_apk "com.google.android.apps.youtube.music" "youtube-music-x86" "youtube-music" "google-inc/youtube-music/youtube-music" "x86" 154 | patch "youtube-music-x86" "revanced" 155 | } 156 | 10() { 157 | revanced_dl 158 | # Patch Duolingo 159 | get_patches_key "Duolingo" 160 | lock_version="1" 161 | get_apk "com.duolingo" "duolingo" "duolingo-duolingo" "duolingo/duolingo-duolingo/duolingo-language-lessons" "Bundle" 162 | patch "duolingo" "revanced" 163 | # Patch Google News Arm64-v8a 164 | get_patches_key "GoogleNews" 165 | get_apk "com.google.android.apps.magazines" "googlenews" "google-news" "google-inc/google-news/google-news" "Bundle_extract" 166 | split_editor "googlenews" "googlenews-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64" 167 | patch "googlenews-arm64-v8a" "revanced" 168 | } 169 | 11() { 170 | revanced_dl 171 | # Patch Photomath 172 | get_patches_key "Photomath" 173 | get_apk "com.microblink.photomath" "photomath" "photomath" "google-inc/photomath/photomath" "Bundle" "Bundle_extract" 174 | split_editor "photomath" "photomath" 175 | patch "photomath" "revanced" 176 | # Patch Strava: 177 | get_patches_key "strava" 178 | get_apkpure "com.strava" "strava-arm64-v8a" "strava-run-hike-2025-health/com.strava" "Bundle" 179 | patch "strava-arm64-v8a" "revanced" 180 | } 181 | 12() { 182 | revanced_dl 183 | # Patch Spotjfy Arm64-v8a 184 | get_patches_key "Spotjfy-revanced" 185 | j="i" 186 | version="9.0.44.478" #https://github.com/ReVanced/revanced-patches/issues/4958#issuecomment-2883387940 187 | get_apkpure "com.spot"$j"fy.music" "spotjfy-arm64-v8a" "spot"$j"fy-music-and-podcasts-for-android/com.spot"$j"fy.music" 188 | patch "spotjfy-arm64-v8a" "revanced" 189 | } 190 | case "$1" in 191 | 1) 192 | 1 193 | ;; 194 | 2) 195 | 2 196 | ;; 197 | 3) 198 | 3 199 | ;; 200 | 4) 201 | 4 202 | ;; 203 | 5) 204 | 5 205 | ;; 206 | 6) 207 | 6 208 | ;; 209 | 7) 210 | 7 211 | ;; 212 | 8) 213 | 8 214 | ;; 215 | 9) 216 | 9 217 | ;; 218 | 10) 219 | 10 220 | ;; 221 | 11) 222 | 11 223 | ;; 224 | 12) 225 | 12 226 | ;; 227 | esac 228 | -------------------------------------------------------------------------------- /src/build/utils.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mkdir ./release ./download 4 | 5 | #Setup pup for download apk files 6 | wget -q -O ./pup.zip https://github.com/ericchiang/pup/releases/download/v0.4.0/pup_v0.4.0_linux_amd64.zip 7 | unzip "./pup.zip" -d "./" > /dev/null 2>&1 8 | pup="./pup" 9 | #Setup APKEditor for install combine split apks 10 | wget -q -O ./APKEditor.jar https://github.com/REAndroid/APKEditor/releases/download/V1.4.2/APKEditor-1.4.2.jar 11 | APKEditor="./APKEditor.jar" 12 | 13 | ################################################# 14 | 15 | # Colored output logs 16 | green_log() { 17 | echo -e "\e[32m$1\e[0m" 18 | } 19 | red_log() { 20 | echo -e "\e[31m$1\e[0m" 21 | } 22 | 23 | ################################################# 24 | 25 | # Download Github assets requirement: 26 | dl_gh() { 27 | if [ $3 == "prerelease" ]; then 28 | local repo=$1 29 | for repo in $1 ; do 30 | local owner=$2 tag=$3 found=0 assets=0 31 | releases=$(wget -qO- "https://api.github.com/repos/$owner/$repo/releases") 32 | while read -r line; do 33 | if [[ $line == *"\"tag_name\":"* ]]; then 34 | tag_name=$(echo $line | cut -d '"' -f 4) 35 | if [ "$tag" == "latest" ] || [ "$tag" == "prerelease" ]; then 36 | found=1 37 | else 38 | found=0 39 | fi 40 | fi 41 | if [[ $line == *"\"prerelease\":"* ]]; then 42 | prerelease=$(echo $line | cut -d ' ' -f 2 | tr -d ',') 43 | if [ "$tag" == "prerelease" ] && [ "$prerelease" == "true" ] ; then 44 | found=1 45 | elif [ "$tag" == "prerelease" ] && [ "$prerelease" == "false" ]; then 46 | found=1 47 | fi 48 | fi 49 | if [[ $line == *"\"assets\":"* ]]; then 50 | if [ $found -eq 1 ]; then 51 | assets=1 52 | fi 53 | fi 54 | if [[ $line == *"\"browser_download_url\":"* ]]; then 55 | if [ $assets -eq 1 ]; then 56 | url=$(echo $line | cut -d '"' -f 4) 57 | if [[ $url != *.asc ]]; then 58 | name=$(basename "$url") 59 | wget -q -O "$name" "$url" 60 | green_log "[+] Downloading $name from $owner" 61 | fi 62 | fi 63 | fi 64 | if [[ $line == *"],"* ]]; then 65 | if [ $assets -eq 1 ]; then 66 | assets=0 67 | break 68 | fi 69 | fi 70 | done <<< "$releases" 71 | done 72 | else 73 | for repo in $1 ; do 74 | tags=$( [ "$3" == "latest" ] && echo "latest" || echo "tags/$3" ) 75 | wget -qO- "https://api.github.com/repos/$2/$repo/releases/$tags" \ 76 | | jq -r '.assets[] | "\(.browser_download_url) \(.name)"' \ 77 | | while read -r url names; do 78 | if [[ $url != *.asc ]]; then 79 | green_log "[+] Downloading $names from $2" 80 | wget -q -O "$names" $url 81 | fi 82 | done 83 | done 84 | fi 85 | } 86 | 87 | ################################################# 88 | 89 | # Get patches list: 90 | get_patches_key() { 91 | excludePatches="" 92 | includePatches="" 93 | excludeLinesFound=false 94 | includeLinesFound=false 95 | sed -i 's/\r$//' src/patches/$1/include-patches 96 | sed -i 's/\r$//' src/patches/$1/exclude-patches 97 | if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then 98 | num=${BASH_REMATCH[1]} 99 | if [ $num -ge 5 ]; then 100 | while IFS= read -r line1; do 101 | excludePatches+=" -d \"$line1\"" 102 | excludeLinesFound=true 103 | done < src/patches/$1/exclude-patches 104 | while IFS= read -r line2; do 105 | if [[ "$line2" == *"|"* ]]; then 106 | patch_name="${line2%%|*}" 107 | options="${line2#*|}" 108 | includePatches+=" -e \"${patch_name}\" ${options}" 109 | else 110 | includePatches+=" -e \"$line2\"" 111 | fi 112 | includeLinesFound=true 113 | done < src/patches/$1/include-patches 114 | else 115 | while IFS= read -r line1; do 116 | excludePatches+=" -e \"$line1\"" 117 | excludeLinesFound=true 118 | done < src/patches/$1/exclude-patches 119 | 120 | while IFS= read -r line2; do 121 | includePatches+=" -i \"$line2\"" 122 | includeLinesFound=true 123 | done < src/patches/$1/include-patches 124 | fi 125 | fi 126 | if [ "$excludeLinesFound" = false ]; then 127 | excludePatches="" 128 | fi 129 | if [ "$includeLinesFound" = false ]; then 130 | includePatches="" 131 | fi 132 | export excludePatches 133 | export includePatches 134 | } 135 | 136 | ################################################# 137 | 138 | # Download apks files from APKMirror: 139 | _req() { 140 | if [ "$2" = "-" ]; then 141 | wget -nv -O "$2" --header="User-Agent: Mozilla/5.0 (Android 14; Mobile; rv:134.0) Gecko/134.0 Firefox/134.0" --header="Content-Type: application/octet-stream" --header="Accept-Language: en-US,en;q=0.9" --header="Connection: keep-alive" --header="Upgrade-Insecure-Requests: 1" --header="Cache-Control: max-age=0" --header="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8" --keep-session-cookies --timeout=30 "$1" || rm -f "$2" 142 | else 143 | wget -nv -O "./download/$2" --header="User-Agent: Mozilla/5.0 (Android 14; Mobile; rv:134.0) Gecko/134.0 Firefox/134.0" --header="Content-Type: application/octet-stream" --header="Accept-Language: en-US,en;q=0.9" --header="Connection: keep-alive" --header="Upgrade-Insecure-Requests: 1" --header="Cache-Control: max-age=0" --header="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8" --keep-session-cookies --timeout=30 "$1" || rm -f "./download/$2" 144 | fi 145 | } 146 | req() { 147 | _req "$1" "$2" 148 | } 149 | dl_apk() { 150 | local url=$1 regexp=$2 output=$3 151 | if [[ -z "$4" ]] || [[ $4 == "Bundle" ]] || [[ $4 == "Bundle_extract" ]]; then 152 | url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/.*]*href=\"\([^\"]*\)\".*${regexp}.*/\1/p")" 153 | else 154 | url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/href=\"/@/g; s;.*${regexp}.*;\1;p")" 155 | fi 156 | url="https://www.apkmirror.com$(req "$url" - | grep -oP 'class="[^"]*downloadButton[^"]*".*?href="\K[^"]+')" 157 | url="https://www.apkmirror.com$(req "$url" - | grep -oP 'id="download-link".*?href="\K[^"]+')" 158 | #url="https://www.apkmirror.com$(req "$url" - | $pup -p --charset utf-8 'a.downloadButton attr{href}')" 159 | #url="https://www.apkmirror.com$(req "$url" - | $pup -p --charset utf-8 'a#download-link attr{href}')" 160 | if [[ "$url" == "https://www.apkmirror.com" ]]; then 161 | exit 0 162 | fi 163 | req "$url" "$output" 164 | } 165 | get_apk() { 166 | if [[ -z $5 ]]; then 167 | url_regexp='APK<\/span>' 168 | elif [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then 169 | url_regexp='BUNDLE<\/span>' 170 | else 171 | case $5 in 172 | arm64-v8a) url_regexp='arm64-v8a'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; 173 | armeabi-v7a) url_regexp='armeabi-v7a'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; 174 | x86) url_regexp='x86'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; 175 | x86_64) url_regexp='x86_64'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; 176 | *) url_regexp='$5'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; 177 | esac 178 | fi 179 | if [ -z "$version" ] && [ "$lock_version" != "1" ]; then 180 | if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then 181 | num=${BASH_REMATCH[1]} 182 | if [ $num -ge 5 ]; then 183 | version=$(java -jar *cli*.jar list-patches --with-packages --with-versions *.rvp | awk -v pkg="$1" 'BEGIN { found = 0 } /^Index:/ { found = 0 } /Package name: / { if ($3 == pkg) { found = 1 } } /Compatible versions:/ { if (found) { getline; latest_version = $1; while (getline && $1 ~ /^[0-9]+\./) { latest_version = $1 } print latest_version; exit } }') 184 | else 185 | version=$(jq -r '[.. | objects | select(.name == "'$1'" and .versions != null) | .versions[]] | reverse | .[0] // ""' *.json | uniq) 186 | fi 187 | fi 188 | fi 189 | export version="$version" 190 | if [[ -n "$version" ]]; then 191 | version=$(echo "$version" | tr -d ' ' | sed 's/\./-/g') 192 | green_log "[+] Downloading $3 version: $version $5 $6 $7" 193 | if [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then 194 | local base_apk="$2.apkm" 195 | else 196 | local base_apk="$2.apk" 197 | fi 198 | local dl_url=$(dl_apk "https://www.apkmirror.com/apk/$4-$version-release/" \ 199 | "$url_regexp" \ 200 | "$base_apk" \ 201 | "$5") 202 | if [[ -f "./download/$base_apk" ]]; then 203 | green_log "[+] Successfully downloaded $2" 204 | else 205 | red_log "[-] Failed to download $2" 206 | exit 1 207 | fi 208 | if [[ $5 == "Bundle" ]]; then 209 | green_log "[+] Merge splits apk to standalone apk" 210 | java -jar $APKEditor m -i ./download/$2.apkm -o ./download/$2.apk > /dev/null 2>&1 211 | elif [[ $5 == "Bundle_extract" ]]; then 212 | unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .apkm)" > /dev/null 2>&1 213 | fi 214 | return 0 215 | fi 216 | local attempt=0 217 | while [ $attempt -lt 10 ]; do 218 | if [[ -z $version ]] || [ $attempt -ne 0 ]; then 219 | local upload_tail="?$([[ $3 = duolingo ]] && echo devcategory= || echo appcategory=)" 220 | version=$(req "https://www.apkmirror.com/uploads/$upload_tail$3" - | \ 221 | $pup 'div.widget_appmanager_recentpostswidget h5 a.fontBlack text{}' | \ 222 | grep -Evi 'alpha|beta' | \ 223 | grep -oPi '\b\d+(\.\d+)+(?:\-\w+)?(?:\.\d+)?(?:\.\w+)?\b' | \ 224 | sed -n "$((attempt + 1))p") 225 | fi 226 | version=$(echo "$version" | tr -d ' ' | sed 's/\./-/g') 227 | green_log "[+] Downloading $3 version: $version $5 $6 $7" 228 | if [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then 229 | local base_apk="$2.apkm" 230 | else 231 | local base_apk="$2.apk" 232 | fi 233 | local dl_url=$(dl_apk "https://www.apkmirror.com/apk/$4-$version-release/" \ 234 | "$url_regexp" \ 235 | "$base_apk" \ 236 | "$5") 237 | if [[ -f "./download/$base_apk" ]]; then 238 | green_log "[+] Successfully downloaded $2" 239 | break 240 | else 241 | ((attempt++)) 242 | red_log "[-] Failed to download $2, trying another version" 243 | unset version 244 | fi 245 | done 246 | 247 | if [ $attempt -eq 10 ]; then 248 | red_log "[-] No more versions to try. Failed download" 249 | return 1 250 | fi 251 | if [[ $5 == "Bundle" ]]; then 252 | green_log "[+] Merge splits apk to standalone apk" 253 | java -jar $APKEditor m -i ./download/$2.apkm -o ./download/$2.apk > /dev/null 2>&1 254 | elif [[ $5 == "Bundle_extract" ]]; then 255 | unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .apkm)" > /dev/null 2>&1 256 | fi 257 | } 258 | get_apkpure() { 259 | if [ -z "$version" ] && [ "$lock_version" != "1" ]; then 260 | if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then 261 | num=${BASH_REMATCH[1]} 262 | if [ $num -ge 5 ]; then 263 | version=$(java -jar *cli*.jar list-patches --with-packages --with-versions *.rvp | awk -v pkg="$1" 'BEGIN { found = 0 } /^Index:/ { found = 0 } /Package name: / { if ($3 == pkg) { found = 1 } } /Compatible versions:/ { if (found) { getline; latest_version = $1; while (getline && $1 ~ /^[0-9]+\./) { latest_version = $1 } print latest_version; exit } }') 264 | else 265 | version=$(jq -r '[.. | objects | select(.name == "'$1'" and .versions != null) | .versions[]] | reverse | .[0] // ""' *.json | uniq) 266 | fi 267 | fi 268 | fi 269 | export version="$version" 270 | if [[ $4 == "Bundle" ]] || [[ $4 == "Bundle_extract" ]]; then 271 | local base_apk="$2.xapk" 272 | else 273 | local base_apk="$2.apk" 274 | fi 275 | if [[ -n "$version" ]]; then 276 | url="https://apkpure.com/$3/downloading/$version" 277 | else 278 | url="https://apkpure.com/$3/downloading/" 279 | version="$(req "$url" - | awk -F'Download APK | \\(' '/

/{print $2}')" 280 | fi 281 | green_log "[+] Downloading $2 version: $version $4" 282 | url="$(req "$url" - | grep -oP ']+id="download_link"[^>]+href="\Khttps://[^"]+')" 283 | req "$url" "$base_apk" 284 | if [[ -f "./download/$base_apk" ]]; then 285 | green_log "[+] Successfully downloaded $2" 286 | else 287 | red_log "[-] Failed to download $2" 288 | exit 1 289 | fi 290 | if [[ $4 == "Bundle" ]]; then 291 | green_log "[+] Merge splits apk to standalone apk" 292 | java -jar $APKEditor m -i ./download/$2.xapk -o ./download/$2.apk > /dev/null 2>&1 293 | elif [[ $4 == "Bundle_extract" ]]; then 294 | unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .xapk)" > /dev/null 2>&1 295 | fi 296 | } 297 | 298 | ################################################# 299 | 300 | # Patching apps with Revanced CLI: 301 | patch() { 302 | green_log "[+] Patching $1:" 303 | if [ -f "./download/$1.apk" ]; then 304 | local p b m ks a pu opt force 305 | if [ "$3" = inotia ]; then 306 | p="patch " b="-p *.rvp" m="" a="" ks="_ks" pu="--purge=true" opt="--legacy-options=./src/options/$2.json" force=" --force" 307 | echo "Patching with Revanced-cli inotia" 308 | else 309 | if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then 310 | num=${BASH_REMATCH[1]} 311 | if [ $num -ge 5 ]; then 312 | p="patch " b="-p *.rvp" m="" a="" ks="ks" pu="--purge=true" opt="" force=" --force" 313 | echo "Patching with Revanced-cli version 5+" 314 | elif [ $num -eq 4 ]; then 315 | p="patch " b="--patch-bundle *patch*.jar" m="--merge *integration*.apk " a="" ks="ks" pu="--purge=true" opt="--options=./src/options/$2.json " 316 | echo "Patching with Revanced-cli version 4" 317 | elif [ $num -eq 3 ]; then 318 | p="patch " b="--patch-bundle *patch*.jar" m="--merge *integration*.apk " a="" ks="_ks" pu="--purge=true" opt="--options=./src/options/$2.json " 319 | echo "Patching with Revanced-cli version 3" 320 | elif [ $num -eq 2 ]; then 321 | p="" b="--bundle *patch*.jar" m="--merge *integration*.apk " a="--apk " ks="_ks" pu="--clean" opt="--options=./src/options/$2.json " 322 | echo "Patching with Revanced-cli version 2" 323 | fi 324 | fi 325 | fi 326 | if [ "$3" = inotia ]; then 327 | unset CI GITHUB_ACTION GITHUB_ACTIONS GITHUB_ACTOR GITHUB_ENV GITHUB_EVENT_NAME GITHUB_EVENT_PATH GITHUB_HEAD_REF GITHUB_JOB GITHUB_REF GITHUB_REPOSITORY GITHUB_RUN_ID GITHUB_RUN_NUMBER GITHUB_SHA GITHUB_WORKFLOW GITHUB_WORKSPACE RUN_ID RUN_NUMBER 328 | fi 329 | eval java -jar *cli*.jar $p$b $m$opt --out=./release/$1-$2.apk$excludePatches$includePatches --keystore=./src/$ks.keystore $pu$force $a./download/$1.apk 330 | unset version 331 | unset lock_version 332 | unset excludePatches 333 | unset includePatches 334 | else 335 | red_log "[-] Not found $1.apk" 336 | exit 1 337 | fi 338 | } 339 | 340 | ################################################# 341 | 342 | split_editor() { 343 | if [[ -z "$3" || -z "$4" ]]; then 344 | green_log "[+] Merge splits apk to standalone apk" 345 | java -jar $APKEditor m -i "./download/$1" -o "./download/$1.apk" > /dev/null 2>&1 346 | return 0 347 | fi 348 | IFS=' ' read -r -a include_files <<< "$4" 349 | mkdir -p "./download/$2" 350 | for file in "./download/$1"/*.apk; do 351 | filename=$(basename "$file") 352 | basename_no_ext="${filename%.apk}" 353 | if [[ "$filename" == "base.apk" ]]; then 354 | cp -f "$file" "./download/$2/" > /dev/null 2>&1 355 | continue 356 | fi 357 | if [[ "$3" == "include" ]]; then 358 | if [[ " ${include_files[*]} " =~ " ${basename_no_ext} " ]]; then 359 | cp -f "$file" "./download/$2/" > /dev/null 2>&1 360 | fi 361 | elif [[ "$3" == "exclude" ]]; then 362 | if [[ ! " ${include_files[*]} " =~ " ${basename_no_ext} " ]]; then 363 | cp -f "$file" "./download/$2/" > /dev/null 2>&1 364 | fi 365 | fi 366 | done 367 | 368 | green_log "[+] Merge splits apk to standalone apk" 369 | java -jar $APKEditor m -i ./download/$2 -o ./download/$2.apk > /dev/null 2>&1 370 | } 371 | 372 | ################################################# 373 | 374 | # Split architectures using Revanced CLI, created by inotia00 375 | archs=("arm64-v8a" "armeabi-v7a" "x86_64" "x86") 376 | libs=("armeabi-v7a x86_64 x86" "arm64-v8a x86_64 x86" "armeabi-v7a arm64-v8a x86" "armeabi-v7a arm64-v8a x86_64") 377 | gen_rip_libs() { 378 | for lib in $@; do 379 | echo -n "--rip-lib "$lib" " 380 | done 381 | } 382 | split_arch() { 383 | green_log "[+] Splitting $1 to ${archs[i]}:" 384 | if [ -f "./download/$1.apk" ]; then 385 | unset CI GITHUB_ACTION GITHUB_ACTIONS GITHUB_ACTOR GITHUB_ENV GITHUB_EVENT_NAME GITHUB_EVENT_PATH GITHUB_HEAD_REF GITHUB_JOB GITHUB_REF GITHUB_REPOSITORY GITHUB_RUN_ID GITHUB_RUN_NUMBER GITHUB_SHA GITHUB_WORKFLOW GITHUB_WORKSPACE RUN_ID RUN_NUMBER 386 | eval java -jar revanced-cli*.jar patch \ 387 | -p *.rvp \ 388 | $3 \ 389 | --keystore=./src/_ks.keystore --force \ 390 | --legacy-options=./src/options/$2.json $excludePatches$includePatches \ 391 | --out=./release/$1-${archs[i]}-$2.apk\ 392 | ./download/$1.apk 393 | else 394 | red_log "[-] Not found $1.apk" 395 | exit 1 396 | fi 397 | } 398 | -------------------------------------------------------------------------------- /src/etc/cf_warp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Setup Cloudflare warp for bypass cloudflare anti ddos APKMirror: 4 | curl -fsSL https://pkg.cloudflareclient.com/pubkey.gpg | sudo gpg --yes --dearmor --output /usr/share/keyrings/cloudflare-warp-archive-keyring.gpg 5 | echo "deb [signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyring.gpg] https://pkg.cloudflareclient.com/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/cloudflare-client.list 6 | sudo apt-get update && sudo apt-get install cloudflare-warp -y 7 | sudo systemctl enable --now warp-svc.service 8 | warp-cli --accept-tos registration new 9 | warp-cli --accept-tos mode warp 10 | warp-cli --accept-tos connect 11 | sleep 3 12 | output=$(wget -qO- https://www.cloudflare.com/cdn-cgi/trace | awk -F'=' '/ip|colo|warp/ {printf "%s: %s\n", $1, $2}') 13 | echo "$output" 14 | warp=$(echo "$output" | awk -F':' '/warp/ {print $2}') 15 | if [ "$warp" = " on" ]; then 16 | echo -e "\e[32m[+] Successful install Cloudflare Warp\e[0m" 17 | else 18 | echo -e "\e[31m[-] Can't install Cloudflare Warp\e[0m" 19 | fi 20 | -------------------------------------------------------------------------------- /src/etc/ci.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Check new patch: 4 | get_date() { 5 | json=$(wget -qO- "https://api.github.com/repos/$1/releases") 6 | case "$2" in 7 | latest) 8 | updated_at=$(echo "$json" | jq -r 'first(.[] | select(.prerelease == false) | .assets[] | select(.name | test("'$3'")) | .updated_at)') 9 | ;; 10 | prerelease) 11 | updated_at=$(echo "$json" | jq -r 'first(.[] | select(.prerelease == true) | .assets[] | select(.name | test("'$3'")) | .updated_at)') 12 | ;; 13 | *) 14 | updated_at=$(echo "$json" | jq -r 'first(.[] | select(.tag_name == "'$2'") | .assets[] | select(.name | test("'$3'")) | .updated_at)') 15 | ;; 16 | esac 17 | echo "$updated_at" 18 | } 19 | 20 | checker(){ 21 | local date1 date2 date1_sec date1_sec repo=$1 ur_repo=$repository check=$3 22 | date1=$(get_date "$repo" "$2" "^(.*\\\.jar|.*\\\.rvp)$") 23 | date2=$(get_date "$ur_repo" "all" "$check") 24 | date1_sec=$(date -d "$date1" +%s) 25 | date2_sec=$(date -d "$date2" +%s) 26 | if [ -z "$date2" ] || [ "$date1_sec" -gt "$date2_sec" ]; then 27 | echo "new_patch=1" >> $GITHUB_OUTPUT 28 | echo -e "\e[32mNew patch, building...\e[0m" 29 | elif [ "$date1_sec" -lt "$date2_sec" ]; then 30 | echo "new_patch=0" >> $GITHUB_OUTPUT 31 | echo -e "\e[32mOld patch, not build.\e[0m" 32 | fi 33 | } 34 | checker $1 $2 $3 -------------------------------------------------------------------------------- /src/etc/connection.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Check github connection stable or not: 4 | check_connection() { 5 | wget -q $(curl -s "https://api.github.com/repos/revanced/revanced-patches/releases/tags/v4.17.0" | jq -r '.assets[] | select(.name == "patches.json") | .browser_download_url') || rm -f "patches.json" 6 | if [ -f patches.json ]; then 7 | echo "internet_error=0" >> $GITHUB_OUTPUT 8 | echo -e "\e[32mGithub connection OK\e[0m" 9 | rm -f "patches.json" 10 | else 11 | echo "internet_error=1" >> $GITHUB_OUTPUT 12 | echo -e "\e[31mGithub connection not stable!\e[0m" 13 | fi 14 | } 15 | check_connection 16 | -------------------------------------------------------------------------------- /src/ks.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/ks.keystore -------------------------------------------------------------------------------- /src/options/BiliRoamingM.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/options/anddea.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "patchName" : "Custom branding name for YouTube", 4 | "options" : [ { 5 | "key" : "AppName", 6 | "value" : "RVX Anddea" 7 | } ] 8 | }, { 9 | "patchName" : "Custom branding name for YouTube Music", 10 | "options" : [ { 11 | "key" : "AppNameNotification", 12 | "value" : "RVX Music Anddea" 13 | }, { 14 | "key" : "AppNameLauncher", 15 | "value" : "RVX Music Anddea" 16 | } ] 17 | } 18 | ] -------------------------------------------------------------------------------- /src/options/indrastorms.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/options/revanced-extended-android-5.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "patchName" : "patch-options", 4 | "options" : [ { 5 | "key" : "YouTube_AppName", 6 | "value" : "RVX A5" 7 | }, { 8 | "key" : "YouTube_PackageName", 9 | "value" : "app.rvx.android.youtube" 10 | }, { 11 | "key" : "Custom_Speed_Arrays", 12 | "value" : "0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 3.0, 5.0" 13 | }, { 14 | "key" : "Overlay_Buttons_Icon", 15 | "value" : "new" 16 | }, { 17 | "key" : "darkThemeBackgroundColor", 18 | "value" : "@android:color/black" 19 | } ] 20 | } 21 | ] -------------------------------------------------------------------------------- /src/options/revanced-extended-android-6-7.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "patchName" : "patch-options", 4 | "options" : [ { 5 | "key" : "YouTube_AppName", 6 | "value" : "RVX A67" 7 | }, { 8 | "key" : "YouTube_PackageName", 9 | "value" : "app.rvx.android.youtube" 10 | }, { 11 | "key" : "Custom_Speed_Arrays", 12 | "value" : "0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 3.0, 5.0" 13 | }, { 14 | "key" : "Overlay_Buttons_Icon", 15 | "value" : "new" 16 | }, { 17 | "key" : "darkThemeBackgroundColor", 18 | "value" : "@android:color/black" 19 | } ] 20 | } 21 | ] -------------------------------------------------------------------------------- /src/options/revanced-extended.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "patchName" : "Spoof streaming data", 3 | "options" : [ { 4 | "key" : "useIOSClient", 5 | "value" : true 6 | } ] 7 | }] 8 | -------------------------------------------------------------------------------- /src/patches/Duolingo/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Duolingo/exclude-patches -------------------------------------------------------------------------------- /src/patches/Duolingo/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Duolingo/include-patches -------------------------------------------------------------------------------- /src/patches/GoogleNews/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/GoogleNews/exclude-patches -------------------------------------------------------------------------------- /src/patches/GoogleNews/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/GoogleNews/include-patches -------------------------------------------------------------------------------- /src/patches/Photomath/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Photomath/exclude-patches -------------------------------------------------------------------------------- /src/patches/Photomath/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Photomath/include-patches -------------------------------------------------------------------------------- /src/patches/Spotjfy-anddea/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Spotjfy-anddea/exclude-patches -------------------------------------------------------------------------------- /src/patches/Spotjfy-anddea/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Spotjfy-anddea/include-patches -------------------------------------------------------------------------------- /src/patches/Spotjfy-revanced/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Spotjfy-revanced/exclude-patches -------------------------------------------------------------------------------- /src/patches/Spotjfy-revanced/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/Spotjfy-revanced/include-patches -------------------------------------------------------------------------------- /src/patches/bilibili-BiliRoamingM/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/bilibili-BiliRoamingM/exclude-patches -------------------------------------------------------------------------------- /src/patches/bilibili-BiliRoamingM/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/bilibili-BiliRoamingM/include-patches -------------------------------------------------------------------------------- /src/patches/facebook/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/facebook/exclude-patches -------------------------------------------------------------------------------- /src/patches/facebook/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/facebook/include-patches -------------------------------------------------------------------------------- /src/patches/fx-file-explorer-indrastorms/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/fx-file-explorer-indrastorms/exclude-patches -------------------------------------------------------------------------------- /src/patches/fx-file-explorer-indrastorms/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/fx-file-explorer-indrastorms/include-patches -------------------------------------------------------------------------------- /src/patches/gg-photos/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/gg-photos/exclude-patches -------------------------------------------------------------------------------- /src/patches/gg-photos/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/gg-photos/include-patches -------------------------------------------------------------------------------- /src/patches/instagram-revanced-experiments/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/instagram-revanced-experiments/exclude-patches -------------------------------------------------------------------------------- /src/patches/instagram-revanced-experiments/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/instagram-revanced-experiments/include-patches -------------------------------------------------------------------------------- /src/patches/instagram/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/instagram/exclude-patches -------------------------------------------------------------------------------- /src/patches/instagram/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/instagram/include-patches -------------------------------------------------------------------------------- /src/patches/lightroom/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/lightroom/exclude-patches -------------------------------------------------------------------------------- /src/patches/lightroom/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/lightroom/include-patches -------------------------------------------------------------------------------- /src/patches/messenger/exclude-patches: -------------------------------------------------------------------------------- 1 | Disable switching emoji to sticker 2 | -------------------------------------------------------------------------------- /src/patches/messenger/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/messenger/include-patches -------------------------------------------------------------------------------- /src/patches/nova-launcher-indrastorms/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/nova-launcher-indrastorms/exclude-patches -------------------------------------------------------------------------------- /src/patches/nova-launcher-indrastorms/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/nova-launcher-indrastorms/include-patches -------------------------------------------------------------------------------- /src/patches/pixiv/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/pixiv/exclude-patches -------------------------------------------------------------------------------- /src/patches/pixiv/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/pixiv/include-patches -------------------------------------------------------------------------------- /src/patches/rar/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/rar/exclude-patches -------------------------------------------------------------------------------- /src/patches/rar/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/rar/include-patches -------------------------------------------------------------------------------- /src/patches/reddit-anddea/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit-anddea/exclude-patches -------------------------------------------------------------------------------- /src/patches/reddit-anddea/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit-anddea/include-patches -------------------------------------------------------------------------------- /src/patches/reddit-rve/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit-rve/exclude-patches -------------------------------------------------------------------------------- /src/patches/reddit-rve/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit-rve/include-patches -------------------------------------------------------------------------------- /src/patches/reddit/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit/exclude-patches -------------------------------------------------------------------------------- /src/patches/reddit/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/reddit/include-patches -------------------------------------------------------------------------------- /src/patches/soundcloud/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/soundcloud/exclude-patches -------------------------------------------------------------------------------- /src/patches/soundcloud/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/soundcloud/include-patches -------------------------------------------------------------------------------- /src/patches/strava/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/strava/exclude-patches -------------------------------------------------------------------------------- /src/patches/strava/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/strava/include-patches -------------------------------------------------------------------------------- /src/patches/tasker-indrastorms/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tasker-indrastorms/exclude-patches -------------------------------------------------------------------------------- /src/patches/tasker-indrastorms/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tasker-indrastorms/include-patches -------------------------------------------------------------------------------- /src/patches/telegram-revanced-experiments/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/telegram-revanced-experiments/exclude-patches -------------------------------------------------------------------------------- /src/patches/telegram-revanced-experiments/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/telegram-revanced-experiments/include-patches -------------------------------------------------------------------------------- /src/patches/tiktok/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tiktok/exclude-patches -------------------------------------------------------------------------------- /src/patches/tiktok/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tiktok/include-patches -------------------------------------------------------------------------------- /src/patches/tumblr/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tumblr/exclude-patches -------------------------------------------------------------------------------- /src/patches/tumblr/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/tumblr/include-patches -------------------------------------------------------------------------------- /src/patches/twitch/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitch/exclude-patches -------------------------------------------------------------------------------- /src/patches/twitch/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitch/include-patches -------------------------------------------------------------------------------- /src/patches/twitter-piko/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitter-piko/exclude-patches -------------------------------------------------------------------------------- /src/patches/twitter-piko/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitter-piko/include-patches -------------------------------------------------------------------------------- /src/patches/twitter/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitter/exclude-patches -------------------------------------------------------------------------------- /src/patches/twitter/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/twitter/include-patches -------------------------------------------------------------------------------- /src/patches/youtube-music-revanced-extended/exclude-patches: -------------------------------------------------------------------------------- 1 | Custom branding icon for YouTube Music 2 | -------------------------------------------------------------------------------- /src/patches/youtube-music-revanced-extended/include-patches: -------------------------------------------------------------------------------- 1 | Custom branding name for YouTube Music 2 | -------------------------------------------------------------------------------- /src/patches/youtube-music-revanced/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/youtube-music-revanced/exclude-patches -------------------------------------------------------------------------------- /src/patches/youtube-music-revanced/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/youtube-music-revanced/include-patches -------------------------------------------------------------------------------- /src/patches/youtube-music-rve-anddea/exclude-patches: -------------------------------------------------------------------------------- 1 | Custom branding icon for YouTube Music 2 | -------------------------------------------------------------------------------- /src/patches/youtube-music-rve-anddea/include-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/youtube-music-rve-anddea/include-patches -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended-5/exclude-patches: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended-5/include-patches: -------------------------------------------------------------------------------- 1 | Spoof app version 2 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended-6-7/exclude-patches: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended-6-7/include-patches: -------------------------------------------------------------------------------- 1 | Spoof app version 2 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended/exclude-patches: -------------------------------------------------------------------------------- 1 | Custom branding icon for YouTube 2 | Translations for YouTube 3 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced-extended/include-patches: -------------------------------------------------------------------------------- 1 | Custom branding name for YouTube 2 | Visual preferences icons 3 | -------------------------------------------------------------------------------- /src/patches/youtube-revanced/exclude-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/8db778ebdb30cc006982b2aa5828c285435ebadf/src/patches/youtube-revanced/exclude-patches -------------------------------------------------------------------------------- /src/patches/youtube-revanced/include-patches: -------------------------------------------------------------------------------- 1 | Custom branding|-OappName="YouTube ReVanced" 2 | -------------------------------------------------------------------------------- /src/patches/youtube-rve-anddea/exclude-patches: -------------------------------------------------------------------------------- 1 | Custom branding icon for YouTube 2 | Translations 3 | -------------------------------------------------------------------------------- /src/patches/youtube-rve-anddea/include-patches: -------------------------------------------------------------------------------- 1 | Custom branding name for YouTube 2 | Visual preferences icons 3 | --------------------------------------------------------------------------------