1 Star 0 Fork 0

soip/NetCipher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
jenkins-build 717 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
set -e
set -x
if [ -z $WORKSPACE ]; then
export WORKSPACE=`pwd`
fi
if [ -z $ANDROID_HOME ]; then
if [ -e ~/.android/bashrc ]; then
. ~/.android/bashrc
else
echo "ANDROID_HOME must be set!"
exit
fi
fi
export TZ=UTC
TIMESTAMP=`git log -n1 --format=format:%ai`
# reset version code/name to current date
versionCodeDate=`faketime "$TIMESTAMP" date +%s`
versionNameDate=`faketime "$TIMESTAMP" date +%Y-%m-%d_%H.%M.%S`
sed -i \
-e "s,android:versionCode=\"[0-9][0-9]*\",android:versionCode=\"$versionCodeDate\"," \
-e "s,android:versionName=\"\([^\"][^\"]*\)\",android:versionName=\"\1.$versionNameDate\"," \
libnetcipher/AndroidManifest.xml
./setup-ant
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gjl3189/NetCipher.git
git@gitee.com:gjl3189/NetCipher.git
gjl3189
NetCipher
NetCipher
master

搜索帮助