1 Star 0 Fork 0

xj.luo/serial-android

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build-libs.sh 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
Cheng Zhong 提交于 2016-10-11 15:03 . Fix build break on NDK r13
#!/bin/bash
ARGS=$(getopt -o "dca" -l "debug,clean,archive" -n "build-libs.sh" -- "$@");
eval set -- "$ARGS";
cd libserial/src/main
JNI_ARGS="NDK_LIBS_OUT=jniLibs"
BUILD_TASK="assembleRelease"
EXPORT_AAR=0
while true; do
case "$1" in
-d|--debug)
shift
JNI_ARGS="$JNI_ARGS NDK_DEBUG=1"
BUILD_TASK="assembleDebug"
break;
;;
-c|--clean)
shift
JNI_ARGS="$JNI_ARGS clean"
break;
;;
-a|--archive)
shift
EXPORT_AAR=1
break;
;;
--)
shift
break;
;;
esac
done
# Remove '--'
shift
ndk-build $JNI_ARGS
cd ../../..
if [ "$EXPORT_AAR" = "1" ]; then
cd libserial
../gradlew $BUILD_TASK
cd ..
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xjluo/serial-android.git
git@gitee.com:xjluo/serial-android.git
xjluo
serial-android
serial-android
master

搜索帮助