aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/compile_httpserver.sh
blob: ecf5f2f66606b70d54f5f8f01dc5477a58414e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e
cd HttpServer
if [ ! -f local.properties ]; then
	echo sdk.dir=${SDK} > local.properties
	echo ndk.dir=${NDK} >> local.properties
fi

if [ "$1" = "DEBUG" ]; then
	./gradlew assembleDebug
else
	./gradlew assembleRelease
fi

echo "Apks are inside HttpServer/app/build/outputs/apk"
cd ..