1 Star 0 Fork 1

luke757/minitouch

forked from 调试中.../minitouch 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
# Fail on error, verbose output
set -exo pipefail
# Build project
ndk-build 1>&2
# Figure out which ABI and SDK the device has
abi=$(adb shell getprop ro.product.cpu.abi | tr -d '\r')
sdk=$(adb shell getprop ro.build.version.sdk | tr -d '\r')
# PIE is only supported since SDK 16
if (($sdk >= 16)); then
bin=minitouch
else
bin=minitouch-nopie
fi
# Upload the binary
adb push libs/$abi/$bin /data/local/tmp/
# Run!
adb shell /data/local/tmp/$bin "$@"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luke757/minitouch.git
git@gitee.com:luke757/minitouch.git
luke757
minitouch
minitouch
master

搜索帮助