码迷,mamicode.com
首页 > 移动开发 > 详细

gradle修改AndroidManifest.xml

时间:2016-08-10 22:19:01      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:

def VersionCode = "19"
ant.replaceregexp(file:"../Assets/Plugins/Android/AndroidManifest.xml", byline:true, match:‘android:versionCode="[0-9]+"‘, replace:"android:versionCode=\"${VersionCode}\"", encoding:"UTF-8")

 唯一注意的地方是match这个参数, 不知道为什么写成

match:‘android:versionCode="\d+\"‘  就不行, 非得老老实实地把\d改成 [0-9]才行.

gradle修改AndroidManifest.xml

标签:

原文地址:http://www.cnblogs.com/canono/p/5758569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!