Magisk-Modules-Repo / xposed

125 stars 33 forks source link

I found the `install.sh` don't push XposedBridge.jar to `/system/framework`, so how this module push the jar to `/system/framework`? #1

Closed hwangjr closed 3 years ago

hwangjr commented 3 years ago

I found install.sh script that unzip the api & arch file to tmp dir, but XposedBridge.jar don't move to $MODPATH/system/framework/.

...
unzip -o "$ZIPFILE" "$API/$ARCH/*" -d $TMPDIR >&2
...
mkdir -p $MODPATH/system/framework
mv $TMPDIR/$XPOSEDBRIDGE $MODPATH/system/framework/XposedBridge.jar
cp -af $XPOSEDDIR/system/. $MODPATH/system
...
hwangjr commented 3 years ago

It seems still use the XposedInstall.apk to download the zip and flash to recovery.

hwangjr commented 3 years ago

open install.sh, and change mv $TMPDIR/$XPOSEDBRIDGE $MODPATH/system/framework/XposedBridge.jar to cp -af $TMPDIR/$XPOSEDBRIDGE $MODPATH/system/framework/XposedBridge.jar