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. 重新编译系统。