mirror of
https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root.git
synced 2025-12-06 16:17:40 +00:00
added youtube lite version
- Split APKs no longer use the Revanced CLI to split; they are now directly patched from split APKs created with APKEditor. This means a smaller APK file size. - The added lite version is a version with unnecessary features removed. For example, it might only have an English interface and remove unused screen DPI from split APKs. - Improve workflow
This commit is contained in:
68
src/build/Anddea-Revanced-Extended-Beta.sh
Normal file
68
src/build/Anddea-Revanced-Extended-Beta.sh
Normal file
@@ -0,0 +1,68 @@
|
||||
#!/bin/bash
|
||||
# Revanced Extended forked by Anddea build
|
||||
source src/build/utils.sh
|
||||
# Download requirements
|
||||
revanced_dl(){
|
||||
dl_gh "revanced-patches revanced-integrations" "anddea" "latest"
|
||||
dl_gh "revanced-cli" "inotia00" "latest"
|
||||
}
|
||||
|
||||
1() {
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube-beta" "youtube-beta"
|
||||
patch "youtube-beta" "anddea" "inotia"
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-arm64-v8a" "anddea" "inotia"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-armeabi-v7a" "anddea" "inotia"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-beta-x86" "anddea" "inotia"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-beta-x86_64" "anddea" "inotia"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-rve-anddea"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-beta-arm64-v8a" "anddea" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-rve-anddea"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-beta-armeabi-v7a" "anddea" "inotia"
|
||||
}
|
||||
3() {
|
||||
revanced_dl
|
||||
get_apk "com.google.android.youtube" "youtube-lite-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-lite-beta" "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-arm64-v8a" "anddea" "inotia"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-lite-beta" "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-armeabi-v7a" "anddea" "inotia"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
;;
|
||||
2)
|
||||
2
|
||||
;;
|
||||
3)
|
||||
3
|
||||
;;
|
||||
esac
|
||||
@@ -1,36 +1,68 @@
|
||||
#!/bin/bash
|
||||
# Revanced Extended forked by Anddea build
|
||||
source src/build/utils.sh
|
||||
# Download requirements
|
||||
revanced_dl(){
|
||||
dl_gh "revanced-patches revanced-integrations" "anddea" "latest"
|
||||
dl_gh "revanced-cli" "inotia00" "latest"
|
||||
}
|
||||
|
||||
patch_rve_anddea () {
|
||||
# Patch YouTube Revanced Extended Anddea:
|
||||
dl_gh "revanced-cli" "revanced" "latest"
|
||||
local v apk_name
|
||||
if [[ "$1" == "latest" ]]; then
|
||||
v="latest" apk_name="stable"
|
||||
else
|
||||
v="prerelease" apk_name="beta"
|
||||
fi
|
||||
dl_gh "revanced-patches revanced-integrations" "anddea" "$v"
|
||||
1() {
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
get_apk "com.google.android.youtube" "youtube-$apk_name" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube-$apk_name" "anddea"
|
||||
# Patch Youtube Music:
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube" "youtube"
|
||||
patch "youtube" "anddea" "inotia"
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-arm64-v8a" "anddea" "inotia"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-armeabi-v7a" "anddea" "inotia"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-x86" "anddea" "inotia"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-x86_64" "anddea" "inotia"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-rve-anddea"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-$apk_name-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-$apk_name-arm64-v8a" "anddea"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "anddea" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-rve-anddea"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-$apk_name-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-$apk_name-armeabi-v7a" "anddea"
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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-$apk_name-anddea" "youtube-$apk_name-${archs[i]}-anddea" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "anddea" "inotia"
|
||||
}
|
||||
patch_rve_anddea $1
|
||||
3() {
|
||||
revanced_dl
|
||||
get_apk "com.google.android.youtube" "youtube-lite" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-lite" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-arm64-v8a" "anddea" "inotia"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-rve-anddea"
|
||||
split_editor "youtube-lite" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-armeabi-v7a" "anddea" "inotia"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
;;
|
||||
2)
|
||||
2
|
||||
;;
|
||||
3)
|
||||
3
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
#!/bin/bash
|
||||
# ReX build
|
||||
source src/build/utils.sh
|
||||
|
||||
#################################################
|
||||
|
||||
# Download requirements
|
||||
dl_gh "ReX-patches ReX-integrations" "YT-Advanced" "latest"
|
||||
dl_gh "revanced-cli" "revanced" "latest"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube ReX:
|
||||
get_patches_key "youtube-ReX"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube" "ReX"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Music ReX:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-ReX"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "ReX"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-ReX"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "ReX"
|
||||
|
||||
#################################################
|
||||
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.json
|
||||
dl_gh "revanced-cli" "inotia00" "latest"
|
||||
dl_gh "revanced-patches" "inotia00" "latest"
|
||||
# Split architecture Youtube:
|
||||
get_patches_key "youtube-ReX"
|
||||
for i in {0..3}; do
|
||||
split_arch "youtube-ReX" "youtube-${archs[i]}-ReX" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
|
||||
#################################################
|
||||
@@ -10,25 +10,25 @@ revanced_dl(){
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-revanced"
|
||||
get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube"
|
||||
get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube-beta" "youtube-beta"
|
||||
patch "youtube-beta" "revanced"
|
||||
# Patch YouTube Music:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-beta-arm64-v8a" "revanced"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-beta-armeabi-v7a" "revanced"
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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-beta-revanced" "youtube-beta-${archs[i]}-revanced" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-arm64-v8a" "revanced"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-armeabi-v7a" "revanced"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-beta-x86" "revanced"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-beta-x86_64" "revanced"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
@@ -41,7 +41,7 @@ revanced_dl(){
|
||||
# Patch Facebook:
|
||||
# Arm64-v8a
|
||||
get_patches_key "facebook"
|
||||
version="485.0.0.70.77"
|
||||
version="485.0.0.70.77"
|
||||
get_apk "com.facebook.katana" "facebook-arm64-v8a-beta" "facebook" "facebook-2/facebook/facebook" "arm64-v8a" "nodpi" "Android 11+"
|
||||
patch "facebook-arm64-v8a-beta" "revanced"
|
||||
}
|
||||
@@ -102,6 +102,31 @@ revanced_dl(){
|
||||
get_apk "com.rarlab.rar" "rar-beta" "rar" "rarlab-published-by-win-rar-gmbh/rar/rar" "arm64-v8a"
|
||||
patch "rar-beta" "revanced"
|
||||
}
|
||||
8() {
|
||||
revanced_dl
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-revanced"
|
||||
get_apk "com.google.android.youtube" "youtube-lite-beta-arm64-v8a" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-arm64-v8a" "revanced"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-revanced"
|
||||
get_apk "com.google.android.youtube" "youtube-lite-beta-armeabi-v7a" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-armeabi-v7a" "revanced"
|
||||
}
|
||||
9() {
|
||||
revanced_dl
|
||||
# Patch YouTube Music:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-beta-arm64-v8a" "revanced"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-beta-armeabi-v7a" "revanced"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
@@ -124,4 +149,10 @@ case "$1" in
|
||||
7)
|
||||
7
|
||||
;;
|
||||
8)
|
||||
8
|
||||
;;
|
||||
9)
|
||||
9
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -2,29 +2,29 @@
|
||||
# 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:
|
||||
# Patch YouTube Extended for android 5:
|
||||
get_patches_key "youtube-revanced-extended-5"
|
||||
version="16.40.36"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube" "revanced-extended-android-5"
|
||||
|
||||
#################################################
|
||||
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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
|
||||
|
||||
#################################################
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube" "youtube"
|
||||
patch "youtube" "revanced-extended-5"
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced-extended-5"
|
||||
split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-arm64-v8a" "revanced-extended-5"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced-extended-5"
|
||||
split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-armeabi-v7a" "revanced-extended-5"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced-extended-5"
|
||||
split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-x86" "revanced-extended-5"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced-extended-5"
|
||||
split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-x86_64" "revanced-extended-5"
|
||||
@@ -2,29 +2,29 @@
|
||||
# Revanced Extended for android 6 & 7 build
|
||||
source src/build/utils.sh
|
||||
|
||||
#################################################
|
||||
|
||||
# Download requirements
|
||||
dl_gh "revanced-patches-android6-7 revanced-integrations" "kitadai31" "latest"
|
||||
dl_gh "revanced-cli" "revanced" "v3.1.1"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Extended:
|
||||
revanced_dl
|
||||
# Patch YouTube Extended for android 6 & 7:
|
||||
get_patches_key "youtube-revanced-extended-6-7"
|
||||
version="17.34.36"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube" "youtube"
|
||||
patch "youtube" "revanced-extended-android-6-7"
|
||||
|
||||
#################################################
|
||||
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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-6-7" "youtube-${archs[i]}-revanced-extended-android-6-7" "$(_gen_rip_libs ${_libs[i]})"
|
||||
done
|
||||
|
||||
#################################################
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced-extended-6-7"
|
||||
split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-arm64-v8a" "revanced-extended-android-6-7"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced-extended-6-7"
|
||||
split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-armeabi-v7a" "revanced-extended-android-6-7"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced-extended-6-7"
|
||||
split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-x86" "revanced-extended-android-6-7"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced-extended-6-7"
|
||||
split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-x86_64" "revanced-extended-android-6-7"
|
||||
@@ -2,34 +2,68 @@
|
||||
# Revanced Extended build
|
||||
source src/build/utils.sh
|
||||
|
||||
#################################################
|
||||
|
||||
# Download requirements
|
||||
dl_gh "revanced-patches revanced-integrations" "inotia00" "prerelease"
|
||||
dl_gh "revanced-cli" "inotia00" "latest"
|
||||
revanced_dl(){
|
||||
dl_gh "revanced-patches revanced-integrations" "inotia00" "prerelease"
|
||||
dl_gh "revanced-cli" "inotia00" "latest"
|
||||
}
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Extended:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube-beta" "revanced-extended" "inotia"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-beta-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-beta-armeabi-v7a" "revanced-extended" "inotia"
|
||||
|
||||
#################################################
|
||||
|
||||
# Split architecture Youtube:
|
||||
for i in {0..3}; do
|
||||
split_arch "youtube-beta-revanced-extended" "youtube-beta-${archs[i]}-revanced-extended" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
1() {
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
get_apk "com.google.android.youtube" "youtube-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube-beta" "youtube-beta"
|
||||
patch "youtube-beta" "revanced-extended" "inotia"
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-beta" "youtube-beta-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-beta" "youtube-beta-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-beta-armeabi-v7a" "revanced-extended" "inotia"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-beta" "youtube-beta-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-beta-x86" "revanced-extended" "inotia"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-beta" "youtube-beta-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-beta-x86_64" "revanced-extended" "inotia"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-beta-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-beta-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-beta-armeabi-v7a" "revanced-extended" "inotia"
|
||||
}
|
||||
3() {
|
||||
revanced_dl
|
||||
get_apk "com.google.android.youtube" "youtube-lite-beta" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-lite-beta" "youtube-lite-beta-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-lite-beta" "youtube-lite-beta-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-beta-armeabi-v7a" "revanced-extended" "inotia"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
;;
|
||||
2)
|
||||
2
|
||||
;;
|
||||
3)
|
||||
3
|
||||
;;
|
||||
esac
|
||||
@@ -2,33 +2,67 @@
|
||||
# Revanced Extended build
|
||||
source src/build/utils.sh
|
||||
|
||||
#################################################
|
||||
|
||||
# Download requirements
|
||||
dl_gh "revanced-patches revanced-integrations revanced-cli" "inotia00" "latest"
|
||||
revanced_dl(){
|
||||
dl_gh "revanced-patches revanced-integrations revanced-cli" "inotia00" "latest"
|
||||
}
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Extended:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube" "revanced-extended" "inotia"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "revanced-extended" "inotia"
|
||||
|
||||
#################################################
|
||||
|
||||
# Split architecture Youtube:
|
||||
for i in {0..3}; do
|
||||
split_arch "youtube-revanced-extended" "youtube-${archs[i]}-revanced-extended" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
1() {
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube" "youtube"
|
||||
patch "youtube" "revanced-extended" "inotia"
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-armeabi-v7a" "revanced-extended" "inotia"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-x86" "revanced-extended" "inotia"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-x86_64" "revanced-extended" "inotia"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
# Patch YouTube Music Extended:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced-extended"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "revanced-extended" "inotia"
|
||||
}
|
||||
3() {
|
||||
revanced_dl
|
||||
get_apk "com.google.android.youtube" "youtube-lite" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-lite" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-arm64-v8a" "revanced-extended" "inotia"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-revanced-extended"
|
||||
split_editor "youtube-lite" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xhdpi split_config.xxxhdpi"
|
||||
patch "youtube-lite-armeabi-v7a" "revanced-extended" "inotia"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
;;
|
||||
2)
|
||||
2
|
||||
;;
|
||||
3)
|
||||
3
|
||||
;;
|
||||
esac
|
||||
@@ -9,25 +9,25 @@ revanced_dl(){
|
||||
revanced_dl
|
||||
# Patch YouTube:
|
||||
get_patches_key "youtube-revanced"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
split_editor "youtube" "youtube"
|
||||
patch "youtube" "revanced"
|
||||
# Patch YouTube Music:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "revanced"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "revanced"
|
||||
# Split architecture:
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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" "youtube-${archs[i]}-revanced" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
# Patch Youtube Arm64-v8a
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube" "youtube-arm64-v8a" "exclude" "split_config.armeabi_v7a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-arm64-v8a" "revanced"
|
||||
# Patch Youtube Armeabi-v7a
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube" "youtube-armeabi-v7a" "exclude" "split_config.arm64_v8a split_config.x86 split_config.x86_64"
|
||||
patch "youtube-armeabi-v7a" "revanced"
|
||||
# Patch Youtube x86
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube" "youtube-x86" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86_64"
|
||||
patch "youtube-x86" "revanced"
|
||||
# Patch Youtube x86_64
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube" "youtube-x86_64" "exclude" "split_config.arm64_v8a split_config.armeabi_v7a split_config.x86"
|
||||
patch "youtube-x86_64" "revanced"
|
||||
}
|
||||
2() {
|
||||
revanced_dl
|
||||
@@ -53,7 +53,6 @@ revanced_dl(){
|
||||
patch "gg-photos-arm64-v8a" "revanced"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "gg-photos"
|
||||
version="6.94.0.662644291"
|
||||
get_apk "com.google.android.apps.photos" "gg-photos-armeabi-v7a" "photos" "google-inc/photos/photos" "armeabi-v7a" "nodpi"
|
||||
patch "gg-photos-armeabi-v7a" "revanced"
|
||||
}
|
||||
@@ -102,6 +101,29 @@ revanced_dl(){
|
||||
get_apk "com.adobe.lrmobile" "lightroom" "lightroom" "adobe/lightroom/lightroom" "Bundle"
|
||||
patch "lightroom" "revanced"
|
||||
}
|
||||
8() {
|
||||
revanced_dl
|
||||
get_apk "com.google.android.youtube" "youtube-lite" "youtube" "google-inc/youtube/youtube" "Bundle_extract"
|
||||
# Patch YouTube Lite Arm64-v8a:
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-lite" "youtube-lite-arm64-v8a" "include" "split_config.arm64_v8a split_config.en split_config.xxxhdpi"
|
||||
patch "youtube-lite-arm64-v8a" "revanced"
|
||||
# Patch YouTube Lite Armeabi-v7a:
|
||||
get_patches_key "youtube-revanced"
|
||||
split_editor "youtube-lite" "youtube-lite-armeabi-v7a" "include" "split_config.armeabi_v7a split_config.en split_config.xxxhdpi"
|
||||
patch "youtube-lite-armeabi-v7a" "revanced"
|
||||
}
|
||||
9() {
|
||||
# Patch YouTube Music:
|
||||
# Arm64-v8a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-arm64-v8a" "youtube-music" "google-inc/youtube-music/youtube-music" "arm64-v8a"
|
||||
patch "youtube-music-arm64-v8a" "revanced"
|
||||
# Armeabi-v7a
|
||||
get_patches_key "youtube-music-revanced"
|
||||
get_apk "com.google.android.apps.youtube.music" "youtube-music-armeabi-v7a" "youtube-music" "google-inc/youtube-music/youtube-music" "armeabi-v7a"
|
||||
patch "youtube-music-armeabi-v7a" "revanced"
|
||||
}
|
||||
case "$1" in
|
||||
1)
|
||||
1
|
||||
@@ -124,4 +146,10 @@ case "$1" in
|
||||
7)
|
||||
7
|
||||
;;
|
||||
8)
|
||||
8
|
||||
;;
|
||||
9)
|
||||
9
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Revanced Extended forked by Rufusin build
|
||||
source src/build/utils.sh
|
||||
|
||||
#################################################
|
||||
|
||||
# Download requirements
|
||||
dl_gh "revanced-patches revanced-integrations" "rufusin" "latest"
|
||||
dl_gh "revanced-cli" "revanced" "latest"
|
||||
|
||||
#################################################
|
||||
|
||||
# Patch YouTube Rufusin:
|
||||
get_patches_key "youtube-rve-rufusin"
|
||||
get_apk "com.google.android.youtube" "youtube" "youtube" "google-inc/youtube/youtube"
|
||||
patch "youtube" "rufusin"
|
||||
|
||||
#################################################
|
||||
|
||||
rm -f revanced-cli* revanced-patches*.jar *.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-rufusin" "youtube-${archs[i]}-rufusin" "$(gen_rip_libs ${libs[i]})"
|
||||
done
|
||||
|
||||
#################################################
|
||||
@@ -137,12 +137,12 @@ _req() {
|
||||
fi
|
||||
}
|
||||
req() {
|
||||
_req "$1" "$2" "User-Agent: Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.231 Mobile Safari/537.36"
|
||||
_req "$1" "$2" "User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6723.58 Mobile Safari/537.36"
|
||||
}
|
||||
|
||||
dl_apk() {
|
||||
local url=$1 regexp=$2 output=$3
|
||||
if [[ -z "$4" ]] || [[ $4 == "Bundle" ]]; then
|
||||
if [[ -z "$4" ]] || [[ $4 == "Bundle" ]] || [[ $4 == "Bundle_extract" ]]; then
|
||||
url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/.*<a[^>]*href=\"\([^\"]*\)\".*${regexp}.*/\1/p")"
|
||||
else
|
||||
url="https://www.apkmirror.com$(req "$url" - | tr '\n' ' ' | sed -n "s/href=\"/@/g; s;.*${regexp}.*;\1;p")"
|
||||
@@ -154,7 +154,7 @@ dl_apk() {
|
||||
get_apk() {
|
||||
if [[ -z $5 ]]; then
|
||||
url_regexp='APK<\/span>'
|
||||
elif [[ $5 == "Bundle" ]]; then
|
||||
elif [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then
|
||||
url_regexp='BUNDLE<\/span>'
|
||||
else
|
||||
case $5 in
|
||||
@@ -183,7 +183,7 @@ get_apk() {
|
||||
fi
|
||||
version=$(echo "$version" | tr -d ' ' | sed 's/\./-/g')
|
||||
green_log "[+] Downloading $3 version: $version $5 $6 $7"
|
||||
if [[ $5 == "Bundle" ]]; then
|
||||
if [[ $5 == "Bundle" ]] || [[ $5 == "Bundle_extract" ]]; then
|
||||
local base_apk="$2.apkm"
|
||||
else
|
||||
local base_apk="$2.apk"
|
||||
@@ -208,6 +208,8 @@ get_apk() {
|
||||
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
|
||||
}
|
||||
|
||||
@@ -251,26 +253,32 @@ patch() {
|
||||
|
||||
#################################################
|
||||
|
||||
# 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_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_arch() {
|
||||
green_log "[+] Splitting $1 to ${archs[i]}:"
|
||||
if [ -f "./release/$1.apk" ]; then
|
||||
eval java -jar revanced-cli*.jar patch \
|
||||
--patch-bundle revanced-patches*.jar \
|
||||
$3 \
|
||||
--keystore=./src/_ks.keystore \
|
||||
--out=./release/$2.apk\
|
||||
./release/$1.apk
|
||||
else
|
||||
red_log "[-] Not found $1.apk"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
#################################################
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
[]
|
||||
@@ -1 +0,0 @@
|
||||
[]
|
||||
@@ -1,2 +0,0 @@
|
||||
Custom branding icon YouTube
|
||||
Translations
|
||||
@@ -1 +0,0 @@
|
||||
Custom branding icon YouTube Music
|
||||
@@ -1,2 +0,0 @@
|
||||
Custom branding icon YouTube
|
||||
Translations
|
||||
Reference in New Issue
Block a user