forked from nian0114/patchrom_miui_oneplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomize_miui_app.sh
executable file
·84 lines (74 loc) · 1.8 KB
/
customize_miui_app.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
#!/bin/bash
#
# $1: dir for original miui app
# $2: dir for target miui app
#
XMLMERGYTOOL=$PORT_ROOT/tools/ResValuesModify/jar/ResValuesModify
GIT_APPLY=$PORT_ROOT/tools/git.apply
curdir=`pwd`
function adjustDpi() {
xhdpi=( $(ls out/$1/res/drawable-xhdpi) )
for PNG in "${xhdpi[@]}"; do
rm -f out/$1/res/drawable-hdpi/$PNG
rm -f out/$1/res/drawable-xxhdpi/$PNG
done
}
if [ $1 = "Music" ];then
sed -i 's#@string/app_class#com.miui.player.Application#g' out/$1/AndroidManifest.xml
$XMLMERGYTOOL $1/res/values $2/res/values
fi
if [ $1 = "QuickSearchBox" ];then
cp $1/*.part out/
cd out
$GIT_APPLY QuickSearchBox.part
cd ..
for file in `find $2 -name *.rej`
do
echo "Fatal error: QuickSearchBox patch fail"
exit 1
done
$XMLMERGYTOOL $1/res/values $2/res/values
fi
if [ $1 = "Settings" ];then
cp $1/*.patch out/
cp $1/*.part out/
cd out
$GIT_APPLY Settings.part
$GIT_APPLY Settings.patch
cd ..
for file in `find $2 -name *.rej`
do
echo "Fatal error: Settings patch fail"
exit 1
done
$XMLMERGYTOOL $1/res/values $2/res/values
fi
if [ $1 = "ThemeManager" ];then
cp $1/*.part out/
cd out
$GIT_APPLY ThemeManager.part
cd ..
for file in `find $2 -name *.rej`
do
echo "Fatal error: Phone patch fail"
exit 1
done
$XMLMERGYTOOL $1/res/values $2/res/values
fi
if [ $1 = "Phone" ];then
cp $1/*.part out/
cd out
$GIT_APPLY LTE.part
cd ..
for file in `find $2 -name *.rej`
do
echo "Fatal error: Phone patch fail"
exit 1
done
$XMLMERGYTOOL $1/res/values $2/res/values
fi
if [ $1 = "MiuiHome" ];then
sed -i -e 's/<item>4x5<\/item>/<item>4x5<\/item>\
<item>5x5<\/item>/' out/$1/res/values/arrays.xml
$XMLMERGYTOOL $1/res/values $2/res/values
fi