src: Add module files

Signed-off-by: Dakkshesh <beakthoven@gmail.com>
This commit is contained in:
Dakkshesh
2025-08-06 19:46:42 +05:30
parent 87bb7b2df1
commit e46820275f
76 changed files with 6720 additions and 44 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/system/bin/sh
MODDIR=$1
# Determine classpath
if [ -f "$MODDIR/classes.dex" ]; then
CLASSPATH="$MODDIR/classes.dex"
elif [ -f "$MODDIR/service.apk" ]; then
CLASSPATH="$MODDIR/service.apk"
else
echo "Error: Neither classes.dex nor service.apk found in $MODDIR"
exit 1
fi
exec /system/bin/app_process -Djava.class.path="$CLASSPATH" "$MODDIR" --nice-name=TrickyStoreOSS io.github.beakthoven.TrickyStoreOSS.MainKt