summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/android/build.sh
blob: 1d669919c23d539dbba2a803cc370b3ede6d06f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash -ex

export NDK_CCACHE="$(which ccache)"
ccache -s

BUILD_FLAVOR=mainline

cd src/android
chmod +x ./gradlew
./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release"

ccache -s