mirror of
https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root.git
synced 2025-12-06 16:17:40 +00:00
199 lines
5.4 KiB
Bash
199 lines
5.4 KiB
Bash
#!/bin/bash
|
|
|
|
mkdir ./release
|
|
|
|
#################################################
|
|
|
|
# Colored output logs
|
|
green_log() {
|
|
echo -e "\e[32m$1\e[0m"
|
|
}
|
|
red_log() {
|
|
echo -e "\e[31m$1\e[0m"
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Download Github assets requirement:
|
|
dl_gh() {
|
|
for repo in $1 ; do
|
|
wget -qO- "https://api.github.com/repos/$2/$repo/releases/$3" \
|
|
| jq -r '.assets[] | "\(.browser_download_url) \(.name)"' \
|
|
| while read -r url names; do
|
|
green_log "[+] Downloading $names from $2"
|
|
wget -q -O "$names" $url
|
|
done
|
|
done
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Get patches list:
|
|
get_patches_key() {
|
|
excludePatches=""
|
|
includePatches=""
|
|
while IFS= read -r line1; do
|
|
excludePatches+=" -e \"$line1\""
|
|
done < src/patches/$1/exclude-patches
|
|
export excludePatches
|
|
while IFS= read -r line2; do
|
|
includePatches+=" -i \"$line2\""
|
|
done < src/patches/$1/include-patches
|
|
export includePatches
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Find version supported:
|
|
get_ver() {
|
|
version=$(jq -r --arg patch_name "$1" --arg pkg_name "$2" '
|
|
.[]
|
|
| select(.name == $patch_name)
|
|
| .compatiblePackages[]
|
|
| select(.name == $pkg_name)
|
|
| .versions[-1]
|
|
' patches.json)
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Download apks files from APKMirror:
|
|
_req() {
|
|
if [ "$2" = - ]; then
|
|
wget -nv -O "$2" --header="$3" "$1"
|
|
else
|
|
local dlp
|
|
dlp="$(dirname "$2")/$(basename "$2")"
|
|
if [ -f "$dlp" ]; then
|
|
while [ -f "$dlp" ]; do sleep 1; done
|
|
return
|
|
fi
|
|
wget -nv -O "$dlp" --header="$3" "$1" || return 1
|
|
fi
|
|
}
|
|
req() {
|
|
_req "$1" "$2" "User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0"
|
|
}
|
|
|
|
dl_apk() {
|
|
local url=$1 regexp=$2 output=$3
|
|
url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/href=\"/@/g; s;.*${regexp}.*;\1;p")"
|
|
sleep 5
|
|
url="https://www.apkmirror.com$(req "$url" - | grep "downloadButton" | sed -n 's;.*href="\(.*key=[^"]*\)">.*;\1;p')"
|
|
sleep 5
|
|
url="https://www.apkmirror.com$(req "$url" - | grep "please click" | sed -n 's#.*href="\(.*key=[^"]*\)">.*#\1#;s#amp;##p')&forcebaseapk=true"
|
|
sleep 5
|
|
req "$url" "$output"
|
|
}
|
|
|
|
get_apk() {
|
|
if [[ -z $4 ]]; then
|
|
url_regexp='APK</span>[^@]*@\([^#]*\)'
|
|
else
|
|
case $4 in
|
|
arm64-v8a) url_regexp='arm64-v8a'"[^@]*$6"''"[^@]*$5"'</div>[^@]*@\([^"]*\)' ;;
|
|
armeabi-v7a) url_regexp='armeabi-v7a'"[^@]*$6"''"[^@]*$5"'</div>[^@]*@\([^"]*\)' ;;
|
|
x86) url_regexp='x86'"[^@]*$6"''"[^@]*$5"'</div>[^@]*@\([^"]*\)' ;;
|
|
x86_64) url_regexp='x86_64'"[^@]*$6"''"[^@]*$5"'</div>[^@]*@\([^"]*\)' ;;
|
|
*) return 1 ;;
|
|
esac
|
|
fi
|
|
export version="$version"
|
|
if [[ -z $version ]]; then
|
|
local list_vers v versions=()
|
|
list_vers=$(req "https://www.apkmirror.com/uploads/?appcategory=$2" -)
|
|
version=$(sed -n 's;.*Version:</span><span class="infoSlide-value">\(.*\) </span>.*;\1;p' <<<"$list_vers")
|
|
version=$(grep -iv "\(beta\|alpha\)" <<<"$version")
|
|
for v in $version; do
|
|
grep -iq "${v} \(beta\|alpha\)" <<<"$list_vers" || versions+=("$v")
|
|
done
|
|
version=$(head -1 <<<"$versions")
|
|
fi
|
|
green_log "[+] Downloading $2 version: $version $4 $5 $6"
|
|
local base_apk="$1.apk"
|
|
local dl_url=$(dl_apk "https://www.apkmirror.com/apk/$3-${version//./-}-release/" \
|
|
"$url_regexp" \
|
|
"$base_apk")
|
|
if [ -z "$1.apk" ]; then
|
|
red_log "[-] Failed to download $1"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Patching apps with Revanced CLI:
|
|
patch() {
|
|
green_log "[+] Patching $1:"
|
|
if [ -f "$1.apk" ]; then
|
|
local p b m ks a pu
|
|
if [ "$3" = inotia ]; then
|
|
p="patch " b="--patch-bundle" m="--merge" a="" ks="_ks"
|
|
echo "Patching with Revanced-cli inotia"
|
|
else
|
|
if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then
|
|
num=${BASH_REMATCH[1]}
|
|
if [ $num -ge 4 ]; then
|
|
p="patch " b="--patch-bundle" m="--merge" a="" ks="ks" pu="--purge=true"
|
|
echo "Patching with Revanced-cli version 4+"
|
|
elif [ $num -eq 3 ]; then
|
|
p="patch " b="--patch-bundle" m="--merge" a="" ks="_ks" pu="--purge=true"
|
|
echo "Patching with Revanced-cli version 3"
|
|
elif [ $num -eq 2 ]; then
|
|
p="" b="-b" m="-m" a="-a " ks="_ks" pu="--clean"
|
|
echo "Patching with Revanced-cli version 2"
|
|
fi
|
|
fi
|
|
fi
|
|
eval java -jar revanced-cli*.jar $p\
|
|
$b revanced-patches*.jar \
|
|
$m revanced-integrations*.apk\
|
|
$excludePatches\
|
|
$includePatches \
|
|
--options=./src/options/$2.json \
|
|
--out=./release/$1-$2.apk \
|
|
--keystore=./src/$ks.keystore \
|
|
$pu \
|
|
$a$1.apk
|
|
unset version
|
|
unset excludePatches
|
|
unset includePatches
|
|
else
|
|
red_log "[-] Not found $1.apk"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
#################################################
|
|
|
|
# Split architectures using Revanced CLI, created by j-hc or inotia00
|
|
archs=("arm64-v8a" "armeabi-v7a" "x86_64" "x86")
|
|
libs=("lib/armeabi-v7a lib/x86_64 lib/x86" "lib/arm64-v8a lib/x86_64 lib/x86" "lib/armeabi-v7a lib/arm64-v8a lib/x86" "lib/armeabi-v7a lib/arm64-v8a lib/x86_64")
|
|
gen_rip_libs() {
|
|
for lib in $@; do
|
|
echo -n "--rip-lib "$lib" "
|
|
done
|
|
}
|
|
split_arch() {
|
|
green_log "[+] Splitting $1 to ${archs[i]}:"
|
|
if [ -f "$1.apk" ]; then
|
|
eval java -jar revanced-cli*.jar patch \
|
|
--patch-bundle revanced-patches*.jar \
|
|
--merge revanced-integrations*.apk\
|
|
$excludePatches\
|
|
$includePatches \
|
|
--rip-lib res \
|
|
--rip-lib classes \
|
|
$3\
|
|
--options=./src/options/$2.json \
|
|
--keystore=./src/_ks.keystore \
|
|
--out=./release/$2.apk\
|
|
$1.apk
|
|
else
|
|
red_log "[-] Not found $1.apk"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
#################################################
|