We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b834d commit b2b4622Copy full SHA for b2b4622
magiskmodule/customize.sh
@@ -81,16 +81,21 @@ patchAPK() {
81
82
ui_print "- Patching $packagename"
83
84
+ set --
85
+ [ "$packagename" = com.google.android.youtube ] && \
86
+ set -- "$@" \
87
+ --enable='Custom branding' \
88
+ --options=usePremiumHeading=false \
89
+ --options=customName=YouTube \
90
+ --options=customIcon="$MODPATH/logo"
91
+
92
export MODPATH
93
"$MODPATH"/system/bin/revancedcli \
94
patch \
95
--patches="$MODPATH"/patches.rvp \
96
--out=out.apk \
97
--disable='GmsCore support' \
- --enable='Custom branding' \
- --options=usePremiumHeading=false \
- --options=appName=YouTube \
- --options=iconPath="$MODPATH/logo" \
98
+ "$@" \
99
--purge \
100
app.apk \
101
2>&1 || abort "Patching failed! $?"
0 commit comments