build.sh 206 B

123456789101112
  1. #!/bin/bash -ex
  2. export NDK_CCACHE="$(which ccache)"
  3. ccache -s
  4. BUILD_FLAVOR=mainline
  5. cd src/android
  6. chmod +x ./gradlew
  7. ./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release"
  8. ccache -s