mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
13 lines
158 B
Bash
13 lines
158 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
export NDK_CCACHE=$(which ccache)
|
||
|
|
||
|
ccache -s
|
||
|
|
||
|
cd src/android
|
||
|
chmod +x ./gradlew
|
||
|
./gradlew bundleRelease
|
||
|
./gradlew assembleRelease
|
||
|
|
||
|
ccache -s
|