Skip to content

Commit 6d4c680

Browse files
authored
Add files via upload
1 parent 72ca562 commit 6d4c680

File tree

8 files changed

+37
-11
lines changed

8 files changed

+37
-11
lines changed

SystemlessDebloater.cfg

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

55
# Instructions and support on XDA: https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083
66
## Wiki pages with instructions about this config file: https://github.com/mModule/guide_sDebloater/wiki/ConfigScript

customize.sh

Lines changed: 9 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.2
3+
# Magisk Module: Systemless Debloater v1.5.3
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,7 +13,7 @@ fi
1313

1414

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

1818
# Module's folder (upon the installation and reboot)
1919
ModFolder=$MODPATH
@@ -33,7 +33,7 @@ echo "Installation start time: $(date +%c)" >> $LogFile
3333
echo '' >> $LogFile
3434

3535
# Log system info
36-
Prop=$(getprop ro.product.cpu.abi)
36+
Prop=$(getprop ro.product.cpu.abilist)
3737
if [ ! -z "$Prop" ] && [ "$Prop" ]
3838
then
3939
echo "$Prop" | tee -a $LogFile
@@ -117,6 +117,12 @@ then
117117
TmpConfigFile=$MODPATH/TmpSystemlessDebloater.cfg
118118
sed -e '/^#/d' -e 's/#.*//g' -e 's/\"//g' -e 's/[ \t ]//g' -e '/^\s*$/d' $ConfigFile > $TmpConfigFile
119119

120+
# Append new line to the temporary config if not present
121+
if [ -n "$(tail -c1 $TmpConfigFile)" ]
122+
then
123+
echo >> $TmpConfigFile
124+
fi
125+
120126
# Read DebloatList
121127
DebloatList=$'\n'
122128
while read AppName

module-alt.prop

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
id=SystemlessDebloater
2+
name=Systemless Debloater
3+
version=1.5.3
4+
versionCode=153
5+
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.
7+
support=https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083
8+
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json

module.prop

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
id=SystemlessDebloater
22
name=Systemless Debloater
3-
version=1.5.2
4-
versionCode=152
3+
version=1.5.3
4+
versionCode=153
55
author=zgfg @ xda
66
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.
77
support=https://forum.xda-developers.com/t/magisk-module-systemless-debloater.4180083
8-
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json
8+
updateJson=https://raw.githubusercontent.com/zgfg/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
3+
# Magisk Module: Systemless Debloater v1.5.3
44
# Copyright (c) zgfg @ xda, 2020-
55

6-
76
# List of stock apps to be debloated by mounting dummy.apk through service.sh
87
# Generated by customize.sh when installing the module
98
# Do not edit

service.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.2
3+
# Magisk Module: Systemless Debloater v1.5.3
44
# Copyright (c) zgfg @ xda, 2020-
55

6-
76
# Module's own path (local path)
87
MODDIR=${0%/*}
98

uninstall.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/system/bin/sh
2+
3+
# Magisk Module: Systemless Debloater v1.5.3
4+
# Copyright (c) zgfg @ xda, 2020-
5+
# Uninstall script by ipdev @ xda-developers
6+
7+
# Remove mountList log file
8+
rm /data/local/tmp/SystemlessDebloater-service.log

update-alt.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"versionCode": 153,
3+
"version": "v1.5.3",
4+
"zipUrl": "https://github.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/releases/download/153/SystemlessDebloater_v1.5.3.zip",
5+
"changelog": "https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/changelog.md"
6+
}

0 commit comments

Comments
 (0)