11 lines
298 B
Bash
11 lines
298 B
Bash
#!/bin/bash
|
|
|
|
# BUILD this JNI library
|
|
# - gradle task 'copyLibs' was created by me to copy the .so files to dist/
|
|
#
|
|
gradle clean
|
|
# there is a bug in the cleaner task, we need to blow away this artifact directory too
|
|
rm -rf .externalNativeBuild/
|
|
# build and copy the libs
|
|
gradle build copyLibs
|