#!/bin/bash mkdir ./release ./download #Setup pup for download apk files wget -q -O ./pup.zip https://github.com/ericchiang/pup/releases/download/v0.4.0/pup_v0.4.0_linux_amd64.zip unzip "./pup.zip" -d "./" > /dev/null 2>&1 pup="./pup" #Setup APKEditor for install combine split apks wget -q -O ./APKEditor.jar https://github.com/REAndroid/APKEditor/releases/download/V1.4.2/APKEditor-1.4.2.jar APKEditor="./APKEditor.jar" ################################################# # 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() { if [ $3 == "prerelease" ]; then local repo=$1 for repo in $1 ; do local owner=$2 tag=$3 found=0 assets=0 releases=$(wget -qO- "https://api.github.com/repos/$owner/$repo/releases") while read -r line; do if [[ $line == *"\"tag_name\":"* ]]; then tag_name=$(echo $line | cut -d '"' -f 4) if [ "$tag" == "latest" ] || [ "$tag" == "prerelease" ]; then found=1 else found=0 fi fi if [[ $line == *"\"prerelease\":"* ]]; then prerelease=$(echo $line | cut -d ' ' -f 2 | tr -d ',') if [ "$tag" == "prerelease" ] && [ "$prerelease" == "true" ] ; then found=1 elif [ "$tag" == "prerelease" ] && [ "$prerelease" == "false" ]; then found=1 fi fi if [[ $line == *"\"assets\":"* ]]; then if [ $found -eq 1 ]; then assets=1 fi fi if [[ $line == *"\"browser_download_url\":"* ]]; then if [ $assets -eq 1 ]; then url=$(echo $line | cut -d '"' -f 4) if [[ $url != *.asc ]]; then name=$(basename "$url") wget -q -O "$name" "$url" green_log "[+] Downloading $name from $owner" fi fi fi if [[ $line == *"],"* ]]; then if [ $assets -eq 1 ]; then assets=0 break fi fi done <<< "$releases" done else for repo in $1 ; do tags=$( [ "$3" == "latest" ] && echo "latest" || echo "tags/$3" ) wget -qO- "https://api.github.com/repos/$2/$repo/releases/$tags" \ | jq -r '.assets[] | "\(.browser_download_url) \(.name)"' \ | while read -r url names; do if [[ $url != *.asc ]]; then green_log "[+] Downloading $names from $2" wget -q -O "$names" $url fi done done fi } ################################################# # Get patches list: get_patches_key() { excludePatches="" includePatches="" excludeLinesFound=false includeLinesFound=false if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then num=${BASH_REMATCH[1]} if [ $num -ge 5 ]; then while IFS= read -r line1; do excludePatches+=" -d \"$line1\"" excludeLinesFound=true done < src/patches/$1/exclude-patches while IFS= read -r line2; do if [[ "$line2" == *"|"* ]]; then patch_name="${line2%%|*}" options="${line2#*|}" includePatches+=" -e \"${patch_name}\" ${options}" else includePatches+=" -e \"$line2\"" fi includeLinesFound=true done < src/patches/$1/include-patches else while IFS= read -r line1; do excludePatches+=" -e \"$line1\"" excludeLinesFound=true done < src/patches/$1/exclude-patches while IFS= read -r line2; do includePatches+=" -i \"$line2\"" includeLinesFound=true done < src/patches/$1/include-patches fi fi if [ "$excludeLinesFound" = false ]; then excludePatches="" fi if [ "$includeLinesFound" = false ]; then includePatches="" fi export excludePatches export includePatches } ################################################# # Download apks files from APKMirror: _req() { if [ "$2" = "-" ]; then 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" else 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" fi } req() { _req "$1" "$2" } dl_apk() { local url=$1 regexp=$2 output=$3 if [[ -z "$4" ]] || [[ $4 == "Bundle" ]] || [[ $4 == "Bundle_extract" ]]; then url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/.*]*href=\"\([^\"]*\)\".*${regexp}.*/\1/p")" else url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/href=\"/@/g; s;.*${regexp}.*;\1;p")" fi url="https://www.apkmirror.com$(req "$url" - | grep -oP 'class="[^"]*downloadButton[^"]*".*?href="\K[^"]+')" url="https://www.apkmirror.com$(req "$url" - | grep -oP 'id="download-link".*?href="\K[^"]+')" #url="https://www.apkmirror.com$(req "$url" - | $pup -p --charset utf-8 'a.downloadButton attr{href}')" #url="https://www.apkmirror.com$(req "$url" - | $pup -p --charset utf-8 'a#download-link attr{href}')" if [[ "$url" == "https://www.apkmirror.com" ]]; then exit 0 fi req "$url" "$output" } get_apk() { if [[ -z $5 ]]; then url_regexp='APK<\/span>' elif [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then url_regexp='BUNDLE<\/span>' else case $5 in arm64-v8a) url_regexp='arm64-v8a'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; armeabi-v7a) url_regexp='armeabi-v7a'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; x86) url_regexp='x86'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; x86_64) url_regexp='x86_64'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; *) url_regexp='$5'"[^@]*$7"''"[^@]*$6"'[^@]*@\([^"]*\)' ;; esac fi if [ -z "$version" ] && [ "$lock_version" != "1" ]; then if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then num=${BASH_REMATCH[1]} if [ $num -ge 5 ]; then 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 } }') else version=$(jq -r '[.. | objects | select(.name == "'$1'" and .versions != null) | .versions[]] | reverse | .[0] // ""' *.json | uniq) fi fi fi export version="$version" if [[ -n "$version" ]]; then version=$(echo "$version" | tr -d ' ' | sed 's/\./-/g') green_log "[+] Downloading $3 version: $version $5 $6 $7" if [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then local base_apk="$2.apkm" else local base_apk="$2.apk" fi local dl_url=$(dl_apk "https://www.apkmirror.com/apk/$4-$version-release/" \ "$url_regexp" \ "$base_apk" \ "$5") if [[ -f "./download/$base_apk" ]]; then green_log "[+] Successfully downloaded $2" else red_log "[-] Failed to download $2" exit 1 fi if [[ $5 == "Bundle" ]]; then green_log "[+] Merge splits apk to standalone apk" java -jar $APKEditor m -i ./download/$2.apkm -o ./download/$2.apk > /dev/null 2>&1 elif [[ $5 == "Bundle_extract" ]]; then unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .apkm)" > /dev/null 2>&1 fi return 0 fi local attempt=0 while [ $attempt -lt 10 ]; do if [[ -z $version ]] || [ $attempt -ne 0 ]; then local upload_tail="?$([[ $3 = duolingo ]] && echo devcategory= || echo appcategory=)" version=$(req "https://www.apkmirror.com/uploads/$upload_tail$3" - | \ $pup 'div.widget_appmanager_recentpostswidget h5 a.fontBlack text{}' | \ grep -Evi 'alpha|beta' | \ grep -oPi '\b\d+(\.\d+)+(?:\-\w+)?(?:\.\d+)?(?:\.\w+)?\b' | \ sed -n "$((attempt + 1))p") fi version=$(echo "$version" | tr -d ' ' | sed 's/\./-/g') green_log "[+] Downloading $3 version: $version $5 $6 $7" if [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then local base_apk="$2.apkm" else local base_apk="$2.apk" fi local dl_url=$(dl_apk "https://www.apkmirror.com/apk/$4-$version-release/" \ "$url_regexp" \ "$base_apk" \ "$5") if [[ -f "./download/$base_apk" ]]; then green_log "[+] Successfully downloaded $2" break else ((attempt++)) red_log "[-] Failed to download $2, trying another version" unset version fi done if [ $attempt -eq 10 ]; then red_log "[-] No more versions to try. Failed download" return 1 fi if [[ $5 == "Bundle" ]]; then green_log "[+] Merge splits apk to standalone apk" java -jar $APKEditor m -i ./download/$2.apkm -o ./download/$2.apk > /dev/null 2>&1 elif [[ $5 == "Bundle_extract" ]]; then unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .apkm)" > /dev/null 2>&1 fi } get_apkpure() { if [ -z "$version" ] && [ "$lock_version" != "1" ]; then if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then num=${BASH_REMATCH[1]} if [ $num -ge 5 ]; then 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 } }') else version=$(jq -r '[.. | objects | select(.name == "'$1'" and .versions != null) | .versions[]] | reverse | .[0] // ""' *.json | uniq) fi fi fi export version="$version" if [[ $4 == "Bundle" ]] || [[ $4 == "Bundle_extract" ]]; then local base_apk="$2.xapk" else local base_apk="$2.apk" fi if [[ -n "$version" ]]; then url="https://apkpure.com/$3/downloading/$version" else url="https://apkpure.com/$3/downloading/" version="$(req "$url" - | awk -F'Download APK | \\(' '/

/{print $2}')" fi green_log "[+] Downloading $2 version: $version $4" url="$(req "$url" - | grep -oP ']+id="download_link"[^>]+href="\Khttps://[^"]+')" req "$url" "$base_apk" if [[ -f "./download/$base_apk" ]]; then green_log "[+] Successfully downloaded $2" else red_log "[-] Failed to download $2" exit 1 fi if [[ $4 == "Bundle" ]]; then green_log "[+] Merge splits apk to standalone apk" java -jar $APKEditor m -i ./download/$2.xapk -o ./download/$2.apk > /dev/null 2>&1 elif [[ $4 == "Bundle_extract" ]]; then unzip "./download/$base_apk" -d "./download/$(basename "$base_apk" .xapk)" > /dev/null 2>&1 fi } ################################################# # Patching apps with Revanced CLI: patch() { green_log "[+] Patching $1:" if [ -f "./download/$1.apk" ]; then local p b m ks a pu opt force if [ "$3" = inotia ]; then p="patch " b="-p *.rvp" m="" a="" ks="_ks" pu="--purge=true" opt="--legacy-options=./src/options/$2.json" force=" --force" echo "Patching with Revanced-cli inotia" else if [[ $(ls revanced-cli-*.jar) =~ revanced-cli-([0-9]+) ]]; then num=${BASH_REMATCH[1]} if [ $num -ge 5 ]; then p="patch " b="-p *.rvp" m="" a="" ks="ks" pu="--purge=true" opt="" force=" --force" echo "Patching with Revanced-cli version 5+" elif [ $num -eq 4 ]; then p="patch " b="--patch-bundle *patch*.jar" m="--merge *integration*.apk " a="" ks="ks" pu="--purge=true" opt="--options=./src/options/$2.json " echo "Patching with Revanced-cli version 4" elif [ $num -eq 3 ]; then p="patch " b="--patch-bundle *patch*.jar" m="--merge *integration*.apk " a="" ks="_ks" pu="--purge=true" opt="--options=./src/options/$2.json " echo "Patching with Revanced-cli version 3" elif [ $num -eq 2 ]; then p="" b="--bundle *patch*.jar" m="--merge *integration*.apk " a="--apk " ks="_ks" pu="--clean" opt="--options=./src/options/$2.json " echo "Patching with Revanced-cli version 2" fi fi fi if [ "$3" = inotia ]; then 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 fi 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 unset version unset lock_version unset excludePatches unset includePatches else red_log "[-] Not found $1.apk" exit 1 fi } ################################################# split_editor() { if [[ -z "$3" || -z "$4" ]]; then green_log "[+] Merge splits apk to standalone apk" java -jar $APKEditor m -i "./download/$1" -o "./download/$1.apk" > /dev/null 2>&1 return 0 fi IFS=' ' read -r -a include_files <<< "$4" mkdir -p "./download/$2" for file in "./download/$1"/*.apk; do filename=$(basename "$file") basename_no_ext="${filename%.apk}" if [[ "$filename" == "base.apk" ]]; then cp -f "$file" "./download/$2/" > /dev/null 2>&1 continue fi if [[ "$3" == "include" ]]; then if [[ " ${include_files[*]} " =~ " ${basename_no_ext} " ]]; then cp -f "$file" "./download/$2/" > /dev/null 2>&1 fi elif [[ "$3" == "exclude" ]]; then if [[ ! " ${include_files[*]} " =~ " ${basename_no_ext} " ]]; then cp -f "$file" "./download/$2/" > /dev/null 2>&1 fi fi done green_log "[+] Merge splits apk to standalone apk" java -jar $APKEditor m -i ./download/$2 -o ./download/$2.apk > /dev/null 2>&1 } ################################################# # Split architectures using Revanced CLI, created by inotia00 archs=("arm64-v8a" "armeabi-v7a" "x86_64" "x86") libs=("armeabi-v7a x86_64 x86" "arm64-v8a x86_64 x86" "armeabi-v7a arm64-v8a x86" "armeabi-v7a arm64-v8a 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 "./download/$1.apk" ]; then 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 eval java -jar revanced-cli*.jar patch \ -p *.rvp \ $3 \ --keystore=./src/_ks.keystore --force \ --legacy-options=./src/options/$2.json $excludePatches$includePatches \ --out=./release/$1-${archs[i]}-$2.apk\ ./download/$1.apk else red_log "[-] Not found $1.apk" exit 1 fi }