Skip to content

Commit daa81bf

Browse files
authored
Add files via upload
1 parent 9b4cc8d commit daa81bf

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Since the version **v1.5.1**, `SystemlessDebloater` module supports a new `SystemlessDebloater.cfg` config file. Update will create the **new config file** and transfer your old `DebloatList`. Please delete then your old `SystemlessDebloaterList.sh` input file and read and use the new config file instead
55

66
### Description
7-
Select and systemlessly debloat preinstalled system apps. Supporting up to **System As Root (SAR)**, **Dynamic partitions** and **Android 13**. Module must be installed through **Magisk app**, not TWRP. Please read:
7+
Select and systemlessly debloat preinstalled system apps. Successfully tested on up to **System As Root (SAR)**, **Dynamic partitions** and **Android 13**. Module must be installed through **Magisk app**, not TWRP. Please read:
88

99
<a href="https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083"> <img src="https://img.shields.io/badge/XDA-Systemless_Debloater-orange?logo=QuickLook&logoColor=yellow" alt="XDA - Systemless Debloater"></a> OP guide
1010

SystemlessDebloater.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## User configuration file for Systemless Debloater Magisk Module
1+
## User configuration file for Systemless Debloater Magisk Module v1.5.4
22
## Copyright (c) zgfg @ xda
33
## Config file improvements provided by ipdev @ xda-developers
44

customize.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/system/bin/sh
22

3-
# Magisk Module: Systemless Debloater v1.5.3
3+
# Magisk Module: Systemless Debloater v1.5.4
44
# Copyright (c) zgfg @ xda, 2020-
55
# Config file improvements provided by ipdev @ xda
66
# XDA thread: https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083
@@ -13,10 +13,9 @@ fi
1313

1414

1515
# Module's version
16-
MyVersion=v1.5.3
16+
MyVersion=v1.5.4
1717

1818
# Module's folder (upon the installation and reboot)
19-
ModFolder=$MODPATH
2019
ModFolder=$(echo "$MODPATH" | sed "s!/modules_update/!/modules/!")
2120

2221
# Download folder

module.prop

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
id=SystemlessDebloater
22
name=Systemless Debloater
3-
version=1.5.3a
4-
versionCode=153
3+
version=1.5.4
4+
versionCode=154
55
author=zgfg @ xda
6-
description=Select and debloat preinstalled system apps. Supported up to SAR, Dynamic partitions and A13. Module must be installed through Magisk app, not TWRP - see OP instructions in the XDA thread.
6+
description=Select and debloat preinstalled system apps. Successfully tested on up to SAR, Dynamic partitions and A13. Module must be installed through Magisk app, not TWRP - see OP instructions in the XDA thread.
77
support=https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083
8-
updateJson=https://raw.githubusercontent.com/zgfg/SystemlessDebloater/main/update.json
8+
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json

mountList.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/system/bin/sh
22

3-
# Magisk Module: Systemless Debloater v1.5.3
3+
# Magisk Module: Systemless Debloater v1.5.4
44
# Copyright (c) zgfg @ xda, 2020-
55

66
# List of stock apps to be debloated by mounting dummy.apk through service.sh
77
# Generated by customize.sh when installing the module
88
# Do not edit
9-

service.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/system/bin/sh
22

3-
# Magisk Module: Systemless Debloater v1.5.3a
3+
# Magisk Module: Systemless Debloater v1.5.4
44
# Copyright (c) zgfg @ xda, 2020-
55

66
# Module's own path (local path)
@@ -11,6 +11,7 @@ LogFile="$MODDIR/service.log"
1111
exec 3>&1 4>&2 2>$LogFile 1>&2
1212
set -x
1313
date +%c
14+
MyVersion=v1.5.4
1415

1516
# Log Magisk version and magisk --path
1617
magisk -c
@@ -21,7 +22,8 @@ getprop ro.product.cpu.abi
2122
getprop ro.product.cpu.abilist
2223

2324
# List of stock apps for debloating by mounting
24-
MountListFile=$MODDIR/mountList.sh
25+
cd $MODDIR
26+
MountListFile=./mountList.sh
2527

2628
# Source the MountListFile
2729
MountList=""
@@ -31,7 +33,7 @@ then
3133
fi
3234

3335
# Dummy apk for debloating by mounting
34-
DummyApk=$MODDIR/dummy.apk
36+
DummyApk=./dummy.apk
3537
touch $DummyApk
3638

3739
#Debloat by mounting

uninstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/system/bin/sh
22

3-
# Magisk Module: Systemless Debloater v1.5.3
3+
# Magisk Module: Systemless Debloater v1.5.4
44
# Copyright (c) zgfg @ xda, 2020-
55
# Uninstall script by ipdev @ xda-developers
66

0 commit comments

Comments
 (0)