-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild-from-source.sh
executable file
·211 lines (164 loc) · 5.63 KB
/
build-from-source.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
#!/bin/bash
DIR="$(pwd)"
# Check if stock.apk exists before continuing
if [ ! -e "$DIR/build/stock.apk" ]; then
echo
echo -e "\e[1;31mError: ./build/stock.apk not found\e[0m"
echo
exit 1
fi
# Check if curl & git are installed before continuing
if ! command -v "curl" &> "/dev/null"; then
echo
echo -e "\e[1;31mError: curl not found\e[0m"
echo
exit 1
fi
if ! command -v "git" &> "/dev/null"; then
echo
echo -e "\e[1;31mError: git not found\e[0m"
echo
exit 1
fi
# Check if java is installed and if not, download and extract openjdk 17
if ! command -v "java" &> "/dev/null" && [ -z "$JAVA_HOME" ]; then
export JAVA_HOME="$(readlink -f "$DIR/openjdk")"
if [ ! -e "$JAVA_HOME/bin/java" ]; then
echo
if [ ! -e "openjdk.tar.gz" ]; then
echo "Downloading openjdk..."
wget -q "https://download.java.net/java/GA/jdk17.0.2/dfd4a8d0985749f896bed50d7138ee7f/8/GPL/openjdk-17.0.2_linux-x64_bin.tar.gz" -O "openjdk.tar.gz"
fi
echo "Extracting openjdk..."
tar xzf "openjdk.tar.gz"
mv jdk-* "openjdk"
fi
fi
# Set the correct java executable
if [ -z "$JAVA_HOME" ]; then
JAVA="java"
else
JAVA="$JAVA_HOME/bin/java"
fi
# Check the java version
if $JAVA -version 2>&1 | grep "1.8" &> "/dev/null"; then
echo
echo -e "\e[1;31mError: Java 8 is not supported\e[0m"
echo
exit 1
fi
# Check if android sdk is installed and if not, download and extract android sdk
if [ -z "$ANDROID_HOME" ] && [ -z "$ANDROID_SDK_ROOT" ]; then
export ANDROID_HOME="$(readlink -f "$DIR/android-sdk")"
if [ ! -e "$ANDROID_HOME" ]; then
echo
if [ ! -e "android-sdk.tar.gz" ]; then
echo "Downloading Android SDK"
curl "https://github.com/CnC-Robert/revanced-cli-script/releases/download/androidsdk/android-sdk.tar.gz" -L -s -o "android-sdk.tar.gz"
fi
echo "Extracting android-sdk.tar.gz"
tar xzf "android-sdk.tar.gz"
fi
fi
# Check if adb device is connected before continuing
if [ -n "$1" ]; then
# Check if adb is installed before continuing
if ! command -v "adb" &> "/dev/null"; then
echo
echo -e "\e[1;31mError: adb not found\e[0m"
echo
exit 1
fi
# Check if the adb device is connected
if ! adb devices | grep "$1" &> "/dev/null"; then
echo
echo -e "\e[1;31mError: device $1 not connected\e[0m"
echo
exit 1
fi
# Check if adb has root access if $ROOT is set to 1
if [[ $ROOT == 1 ]] && ! adb shell su -c exit 2> /dev/null; then
echo
echo -e "\e[1;31mError: device $1 has no root access\e[0m"
echo
exit 1
fi
else
echo
echo -e "\e[1;33mWarning: no adb device specified. It is recommended to do so to automatically install the patched apk\e[0m"
fi
echo
echo "Building packages..."
echo
# Clone the patcher and publish it
if [ ! -d "revanced-patcher" ]; then git clone https://github.com/revanced/revanced-patcher; fi
cd "revanced-patcher"
git pull
chmod +x "./gradlew"
if ! "./gradlew" publishToMavenLocal; then exit 1; fi
cd "$DIR"
echo
# Clone the patches and build it
if [ ! -d "revanced-patches" ]; then git clone https://github.com/revanced/revanced-patches; fi
cd "revanced-patches"
git pull
chmod +x "./gradlew"
if ! "./gradlew" build; then exit 1; fi
cd "$DIR"
echo
# Clone the cli and build it
if [ ! -d "revanced-cli" ]; then git clone https://github.com/revanced/revanced-cli; fi
cd "revanced-cli"
git pull
chmod +x "./gradlew"
if ! "./gradlew" build; then exit 1; fi
cd "$DIR"
echo
# Clone the integrations and build it
if [ ! -d "revanced-integrations" ]; then git clone https://github.com/revanced/revanced-integrations; fi
cd "revanced-integrations"
git pull
chmod +x "./gradlew"
if ! "./gradlew" build; then exit 1; fi
cd "$DIR"
# Copy the cli, integrations, patches and patcher to the build directory
cp revanced-cli/build/libs/revanced-cli-*-all.jar "$DIR/build/revanced-cli.jar"
cp "$DIR/revanced-integrations/app/build/outputs/apk/release/app-release-unsigned.apk" "$DIR/build/integrations.apk"
# The cli doesn't need the files that end -sources.jar or -javadoc.jar so don't copy those
cp "$DIR/revanced-patches/build/libs/$(ls "$DIR/revanced-patches/build/libs/" | grep -Pv "javadoc|sources")" "$DIR/build/revanced-patches.jar"
cp "$DIR/revanced-patcher/build/libs/$(ls "$DIR/revanced-patcher/build/libs/" | grep -Pv "javadoc|sources")" "$DIR/build/revanced-patcher.jar"
cd "$DIR/build"
echo
echo "Executing the CLI..."
echo
# If $LIST is set to 1 list all the patches and dont start patching
if [ "$LIST" = "1" ]; then
"$JAVA" -jar "revanced-cli.jar" -b "revanced-patches.jar" -l
exit 0
fi
if [ -n "$EXCLUDED_PATCHES" ]; then
# Get a list of all available patches
PATCHES="$("$JAVA" -jar "revanced-cli.jar" -a "stock.apk" -b "revanced-patches.jar" -l)"
# Check if every patch in $EXCLUDED_PATCHES is a valid patch and add it to patches to exclude
for PATCH in $EXCLUDED_PATCHES; do
if echo "$PATCHES" | grep "$PATCH" &> "/dev/null"; then
EXCLUDE="$EXCLUDE -e $PATCH"
fi
done
EXCLUDE="${EXCLUDE:1}"
fi
if [ -n "$INCLUDED_PATCHES" ]; then
# Get a list of all available patches
PATCHES="$("$JAVA" -jar "revanced-cli.jar" -a "stock.apk" -b "revanced-patches.jar" -l)"
# Check if every patch in $INCLUDED_PATCHES is a valid patch and add it to patches to include
for PATCH in $INCLUDED_PATCHES; do
if echo "$PATCHES" | grep "$PATCH" &> "/dev/null"; then
INCLUDE="$INCLUDE -i $PATCH"
fi
done
INCLUDE="${INCLUDE:1}"
fi
# Execute the cli and if an adb device name is given deploy on device
"$JAVA" -jar "revanced-cli.jar" -a "stock.apk" -o "revanced.apk" -b "revanced-patches.jar" -m "integrations.apk" $(if [ -n "$1" ]; then echo "-d $1"; fi) -t "temp" $(if [ "$ROOT" = "1" ]; then echo "--mount"; fi) $EXCLUDE $INCLUDE
if [ -e "$DIR/build/revanced.apk" ]; then cp "$DIR/build/revanced.apk" "$DIR/revanced.apk"; fi
exit 0