-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathinstall.sh
247 lines (227 loc) · 10.8 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
##########################################################################################
#
# Magisk Module Installer Script
#
##########################################################################################
##########################################################################################
#
# Instructions:
#
# 1. Place your files into system folder (delete the placeholder file)
# 2. Fill in your module's info into module.prop
# 3. Configure and implement callbacks in this file
# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh
# 5. Add your additional or modified system properties into common/system.prop
#
##########################################################################################
##########################################################################################
# Unity Logic - Don't change/move this section
##########################################################################################
##########################################################################################
# Config Flags
##########################################################################################
# Set to true if you do *NOT* want Magisk to mount
# any files for you. Most modules would NOT want
# to set this flag to true
SKIPMOUNT=false
# Set to true if you need to load system.prop
PROPFILE=true
# Set to true if you need post-fs-data script
POSTFSDATA=true
# Set to true if you need late_start service script
LATESTARTSERVICE=true
##########################################################################################
# Replace list
##########################################################################################
# List all directories you want to directly replace in the system
# Check the documentations for more info why you would need this
# Construct your list in the following format
# This is an example
REPLACE_EXAMPLE="
/system/app/Youtube
/system/priv-app/SystemUI
/system/priv-app/Settings
/system/framework
"
# Construct your own list here
REPLACE="
"
##########################################################################################
#
# Function Callbacks
#
# The following functions will be called by the installation framework.
# You do not have the ability to modify update-binary, the only way you can customize
# installation is through implementing these functions.
#
# When running your callbacks, the installation framework will make sure the Magisk
# internal busybox path is *PREPENDED* to PATH, so all common commands shall exist.
# Also, it will make sure /data, /system, and /vendor is properly mounted.
#
##########################################################################################
##########################################################################################
#
# The installation framework will export some variables and functions.
# You should use these variables and functions for installation.
#
# ! DO NOT use any Magisk internal paths as those are NOT public API.
# ! DO NOT use other functions in util_functions.sh as they are NOT public API.
# ! Non public APIs are not guranteed to maintain compatibility between releases.
#
# Available variables:
#
# MAGISK_VER (string): the version string of current installed Magisk
# MAGISK_VER_CODE (int): the version code of current installed Magisk
# BOOTMODE (bool): true if the module is currently installing in Magisk Manager
# MODPATH (path): the path where your module files should be installed
# TMPDIR (path): a place where you can temporarily store files
# ZIPFILE (path): your module's installation zip
# ARCH (string): the architecture of the device. Value is either arm, arm64, x86, or x64
# IS64BIT (bool): true if $ARCH is either arm64 or x64
# API (int): the API level (Android version) of the device
#
# Availible functions:
#
# ui_print <msg>
# print <msg> to console
# Avoid using 'echo' as it will not display in custom recovery's console
#
# abort <msg>
# print error message <msg> to console and terminate installation
# Avoid using 'exit' as it will skip the termination cleanup steps
#
# set_perm <target> <owner> <group> <permission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# this function is a shorthand for the following commands
# chown owner.group target
# chmod permission target
# chcon context target
#
# set_perm_recursive <directory> <owner> <group> <dirpermission> <filepermission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# for all files in <directory>, it will call:
# set_perm file owner group filepermission context
# for all directories in <directory> (including itself), it will call:
# set_perm dir owner group dirpermission context
#
##########################################################################################
##########################################################################################
# If you need boot scripts, DO NOT use general boot scripts (post-fs-data.d/service.d)
# ONLY use module scripts as it respects the module status (remove/disable) and is
# guaranteed to maintain the same behavior in future Magisk releases.
# Enable boot scripts by setting the flags in the config section above.
##########################################################################################
# Set what you want to display when installing your module
print_modname() {
ui_print ""
ui_print " ╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭╮╱╭╮╱╱╱╱╱╱╭━╮╱╭╮╱╱╱╭╮╱╱╱╱╱╱╱╭╮╱╱╱╭╮ "
ui_print " ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃┃╱┃┃╱╱╱╱╱╱┃┃╰╮┃┃╱╱╱┃┃╱╱╱╱╱╱╭╯╰╮╱╱┃┃ "
ui_print " ┃┃╱╰╋━━┳╮╭┳━━┳━━╮┃╰━╯┣━━┳━━╮┃╭╮╰╯┣━━╮┃┃╱╱╭┳╮╭╋╮╭╋━━┫┃ "
ui_print " ┃┃╭━┫╭╮┃╰╯┃┃━┫━━┫┃╭━╮┃╭╮┃━━┫┃┃╰╮┃┃╭╮┃┃┃╱╭╋┫╰╯┣┫┃┃━━╋╯ "
ui_print " ┃╰┻━┃╭╮┃┃┃┃┃━╋━━┃┃┃╱┃┃╭╮┣━━┃┃┃╱┃┃┃╰╯┃┃╰━╯┃┃┃┃┃┃╰╋━━┣╮ "
ui_print " ╰━━━┻╯╰┻┻┻┻━━┻━━╯╰╯╱╰┻╯╰┻━━╯╰╯╱╰━┻━━╯╰━━━┻┻┻┻┻┻━┻━━┻╯ "
ui_print ""
ui_print "*******************************"
ui_print ""
ui_print "- By: AkiraSuper "
ui_print "- Status: v5 "
ui_print "- Phone Model: $(getprop ro.product.model) "
ui_print "- System Version: Android $(getprop ro.system.build.version.release) "
ui_print "- System Structure: $ARCH "
ui_print ""
ui_print "*******************************"
ui_print ""
}
on_install() {
# The following is the default implementation: extract $ZIPFILE/system to $MODPATH
# Extend/change the logic to whatever you want
ui_print "- Extracting module files"
unzip -o "$ZIPFILE" 'system/*' -d $MODPATH >&2
unzip -o "$ZIPFILE" 'addon/*' -d $TMPDIR >&2
props=$TMPDIR/system.prop
module=$TMPDIR/module.prop
. $TMPDIR/addon/Volume-Key-Selector/preinstall.sh
TEXT1="GAMING乛Mode that will get applied automatically when the game starts. "
INFO="Installed Mode: "
ui_print ""
sleep 0.2
ui_print "- 🎮 Starting Gaming-Mode Installation 🎮 -"
ui_print ""
sleep 0.2
ui_print " (Volume + Next) × (Volume - Install) "
ui_print ""
sleep 0.2
ui_print "- Game Unlocker -"
ui_print ""
ui_print "- NOTE: Unlock game graphic and fps such as Call of Duty Mobile,"
ui_print " PUBG, Asphalt, Blade&Soul Revolution,"
ui_print " Mobile Legends, Black Desert Mobile, Arena Of Valor"
ui_print " Not Working if You're using MagiskHide Props."
ui_print " Or others similar Modules with it."
ui_print " Not Work for All Games, causing SafetyNet fail."
ui_print " Need Xposed module to fix or bypass SafetyNet."
ui_print " It may break some system Apps,"
ui_print " such as Miui Camera, Package Installer and etc."
ui_print ""
sleep 0.5
ui_print "- Game Unlocker -"
ui_print ""
sleep 0.2
ui_print " 1. PUBG Mobile "
sleep 0.2
ui_print " 2. COD Mobile "
sleep 0.2
ui_print " 3. Mobile Legends "
sleep 0.2
ui_print " 4. Black Desert Mobile "
sleep 0.2
ui_print " 5. Arena Of Valor "
sleep 0.2
ui_print " 6. Default "
ui_print ""
sleep 0.2
ui_print " Select Unlocker: "
GU=1
while true; do
ui_print " $GU"
if $VKSEL; then
GU=$((GU + 1))
else
break
fi
if [ $GU -gt 6 ]; then
GU=1
fi
done
ui_print " Selected Unlocker: $GU "
#
case $GU in
1 ) TEXT2="✓PUBGM Unlocked "; FCTEXTAD1="PUBG Mobile"; sed -i '/ro.product.model/s/.*/ro.product.model=HD1925/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer=OnePlus/' $props;;
2 ) TEXT2="✓CODM Unlocked "; FCTEXTAD1="COD Mobile"; sed -i '/ro.product.model/s/.*/ro.product.model=SM-G965F/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer=Samsung/' $props;;
3 ) TEXT2="✓ML Unlocked "; FCTEXTAD1="Mobile Legends"; sed -i '/ro.product.model/s/.*/ro.product.model=A2218/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer=Apple/' $props;;
4 ) TEXT2="✓BDM Unlocked "; FCTEXTAD1="Black Desert Mobile"; sed -i '/ro.product.model/s/.*/ro.product.model=SM-G975U/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer=Samsung/' $props;;
5 ) TEXT2="✓AOV Unlocked "; FCTEXTAD1="Arena Of Valor"; sed -i '/ro.product.model/s/.*/ro.product.model=A5010/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer=OnePlus/' $props;;
6 ) TEXT2=""; FCTEXTAD1="Default"; sed -i '/ro.product.model/s/.*/ro.product.model/' $props; sed -i '/ro.product.manufacturer/s/.*/ro.product.manufacturer/' $props;;
esac
ui_print "- Game Unlocker Mode: $FCTEXTAD1 "
sed -i "/description=/c description=${TEXT1}${INFO}${TEXT2}" $module
sleep 0.5
}
# Only some special files require specific permissions
# After the installation is complete, this function will be called
# For most cases, the default permissions should be sufficient
set_permissions() {
# The following are the default rules, please do not delete
set_perm_recursive $MODPATH 0 0 0755 0644
set_perm_recursive $MODPATH/system/bin 0 0 0755 0755
# Here are some examples:
# set_perm_recursive $MODPATH/system/lib 0 0 0755 0644
# set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0
# set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0
# set_perm $MODPATH/system/lib/libart.so 0 0 0644
}
# Custom Variables for Install AND Uninstall - Keep everything within this function - runs before uninstall/install
unity_custom() {
: # Remove this if adding to this function
}
# You can add more functions to assist your custom script code