mirror of
https://github.com/Quinten0508/revanced-magisk.git
synced 2025-04-29 22:14:29 +02:00
118 lines
3.4 KiB
Bash
Executable File
118 lines
3.4 KiB
Bash
Executable File
# shellcheck disable=SC2148,SC2086
|
|
ui_print ""
|
|
|
|
if [ $ARCH = "arm" ]; then
|
|
#arm
|
|
ARCH_LIB=armeabi-v7a
|
|
alias cmpr='$MODPATH/bin/arm/cmpr'
|
|
elif [ $ARCH = "arm64" ]; then
|
|
#arm64
|
|
ARCH_LIB=arm64-v8a
|
|
alias cmpr='$MODPATH/bin/arm64/cmpr'
|
|
else
|
|
abort "ERROR: unsupported arch: ${ARCH}"
|
|
fi
|
|
set_perm_recursive $MODPATH/bin 0 0 0755 0777
|
|
|
|
nsenter -t1 -m -- grep __PKGNAME /proc/mounts | while read -r line; do
|
|
ui_print "* Un-mount"
|
|
mp=${line#* }
|
|
mp=${mp%% *}
|
|
nsenter -t1 -m -- umount -l "${mp%%\\*}"
|
|
done
|
|
am force-stop __PKGNAME
|
|
|
|
INS=true
|
|
if BASEPATH=$(pm path __PKGNAME); then
|
|
BASEPATH=${BASEPATH##*:}
|
|
BASEPATH=${BASEPATH%/*}
|
|
if [ ${BASEPATH:1:6} = system ]; then
|
|
ui_print "* __PKGNAME is a system app"
|
|
elif [ ! -d ${BASEPATH}/lib ]; then
|
|
ui_print "* Invalid installation found. Uninstalling..."
|
|
pm uninstall -k --user 0 __PKGNAME
|
|
elif [ ! -f $MODPATH/__PKGNAME.apk ]; then
|
|
ui_print "* Stock __PKGNAME APK was not found"
|
|
VERSION=$(dumpsys package __PKGNAME | grep -m1 versionName)
|
|
VERSION="${VERSION#*=}"
|
|
if [ "$VERSION" = __PKGVER ] || [ -z "$VERSION" ]; then
|
|
ui_print "* Skipping stock installation"
|
|
INS=false
|
|
else
|
|
abort "ERROR: Version mismatch
|
|
installed: $VERSION
|
|
module: __PKGVER
|
|
"
|
|
fi
|
|
elif cmpr $BASEPATH/base.apk $MODPATH/__PKGNAME.apk; then
|
|
ui_print "* __PKGNAME is up-to-date"
|
|
INS=false
|
|
fi
|
|
fi
|
|
if [ $INS = true ]; then
|
|
if [ ! -f $MODPATH/__PKGNAME.apk ]; then
|
|
abort "ERROR: Stock __PKGNAME apk was not found"
|
|
fi
|
|
ui_print "* Updating __PKGNAME to __PKGVER"
|
|
settings put global verifier_verify_adb_installs 0
|
|
SZ=$(stat -c "%s" $MODPATH/__PKGNAME.apk)
|
|
if ! SES=$(pm install-create --user 0 -i com.android.vending -r -d -S "$SZ" 2>&1); then
|
|
ui_print "ERROR: install-create failed"
|
|
abort "$SES"
|
|
fi
|
|
SES=${SES#*[}
|
|
SES=${SES%]*}
|
|
set_perm "$MODPATH/__PKGNAME.apk" 1000 1000 644 u:object_r:apk_data_file:s0
|
|
if ! op=$(pm install-write -S "$SZ" "$SES" "__PKGNAME.apk" "$MODPATH/__PKGNAME.apk" 2>&1); then
|
|
ui_print "ERROR: install-write failed"
|
|
abort "$op"
|
|
fi
|
|
if ! op=$(pm install-commit "$SES" 2>&1); then
|
|
ui_print "ERROR: install-commit failed"
|
|
abort "$op"
|
|
fi
|
|
settings put global verifier_verify_adb_installs 1
|
|
if BASEPATH=$(pm path __PKGNAME); then
|
|
BASEPATH=${BASEPATH##*:}
|
|
BASEPATH=${BASEPATH%/*}
|
|
else
|
|
abort "ERROR: install __PKGNAME manually and reflash the module"
|
|
fi
|
|
fi
|
|
BASEPATHLIB=${BASEPATH}/lib/${ARCH}
|
|
if [ -z "$(ls -A1 ${BASEPATHLIB})" ]; then
|
|
ui_print "* Extracting native libs"
|
|
mkdir -p $BASEPATHLIB
|
|
if ! op=$(unzip -j $MODPATH/__EXTRCT lib/${ARCH_LIB}/* -d ${BASEPATHLIB} 2>&1); then
|
|
ui_print "ERROR: extracting native libs failed"
|
|
abort "$op"
|
|
fi
|
|
set_perm_recursive ${BASEPATH}/lib 1000 1000 755 755 u:object_r:apk_data_file:s0
|
|
fi
|
|
ui_print "* Setting Permissions"
|
|
set_perm $MODPATH/base.apk 1000 1000 644 u:object_r:apk_data_file:s0
|
|
|
|
ui_print "* Mounting __PKGNAME"
|
|
mkdir -p $NVBASE/rvhc
|
|
RVPATH=$NVBASE/rvhc/${MODPATH##*/}.apk
|
|
mv -f $MODPATH/base.apk $RVPATH
|
|
|
|
if ! op=$(nsenter -t1 -m -- mount -o bind $RVPATH $BASEPATH/base.apk 2>&1); then
|
|
ui_print "ERROR: Mount failed!"
|
|
ui_print "$op"
|
|
fi
|
|
am force-stop __PKGNAME
|
|
ui_print "* Optimizing __PKGNAME"
|
|
nohup cmd package compile --reset __PKGNAME >/dev/null 2>&1 &
|
|
|
|
ui_print "* Cleanup"
|
|
rm -rf $MODPATH/bin $MODPATH/__PKGNAME.apk
|
|
|
|
for s in "uninstall.sh" "service.sh"; do
|
|
sed -i "2 i\NVBASE=${NVBASE}" $MODPATH/$s
|
|
done
|
|
|
|
ui_print "* Done"
|
|
ui_print " by j-hc (github.com/j-hc)"
|
|
ui_print " "
|