MTK添加自动增加的版本号到build.prop

1. 打开build/tools/buildinfo.sh,添加以下内容:

version="`cat currentVersion`"
if [ -z "$version" ] ; then
	echo "1" > currentVersion
else
	echo $(($version+1)) > currentVersion
fi;
echo "pano.software.version=`cat currentVersion`"

2. 在项目根目录建一个currentVersion的文件,输入起始版本号1,保存
3. 重新编译系统。

上一篇:jQuery中attr和prop的区别以及共同点


下一篇:elementUI中el-table定义行序号--隐藏ID供后台调用