mirror of
https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root.git
synced 2025-12-06 08:07:40 +00:00
30 lines
966 B
Bash
30 lines
966 B
Bash
#!/bin/bash
|
|
# Revanced Extended for android 5
|
|
source src/build/utils.sh
|
|
|
|
#################################################
|
|
|
|
# Download requirements
|
|
dl_gh "revanced-patches-android5 revanced-integrations" "d4n3436" "latest"
|
|
dl_gh "revanced-cli" "revanced" "v3.1.1"
|
|
|
|
#################################################
|
|
|
|
# Patch YouTube Extended:
|
|
get_patches_key "youtube-revanced-extended-5"
|
|
version="16.40.36"
|
|
get_apk "youtube" "youtube" "google-inc/youtube/youtube"
|
|
patch "youtube" "revanced-extended-android-5"
|
|
|
|
#################################################
|
|
|
|
# Split architecture:
|
|
rm -f revanced-cli* revanced-patches*.jar patches.json
|
|
dl_gh "revanced-cli" "inotia00" "latest"
|
|
dl_gh "revanced-patches" "inotia00" "latest"
|
|
# Split architecture Youtube:
|
|
for i in {0..3}; do
|
|
_split_arch "youtube-revanced-extended-android-5" "youtube-${archs[i]}-revanced-extended-android-5" "$(_gen_rip_libs ${_libs[i]})"
|
|
done
|
|
|
|
################################################# |