mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-04-29 22:24:34 +02:00
12 lines
330 B
Bash
12 lines
330 B
Bash
#!/system/bin/sh
|
|
# shellcheck disable=SC2086
|
|
MODDIR=${0%/*}
|
|
until [ "$(getprop sys.boot_completed)" = 1 ]; do
|
|
sleep 1
|
|
done
|
|
BASEPATH=$(pm path com.google.android.apps.youtube.music | grep base | cut -d: -f2)
|
|
if [ "$BASEPATH" ]; then
|
|
chcon u:object_r:apk_data_file:s0 $MODDIR/base.apk
|
|
mount -o bind $MODDIR/base.apk $BASEPATH
|
|
fi
|