我正在寻找一种更新 xml 文件属性值的方法。例如下面的 xml 我想用另一个值替换属性值android:versionCode
。30003
我很难理解 ant 如何使用替换或正则表达式来做到这一点。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.see"
android:installLocation="auto"
android:versionCode="30003"
android:versionName="@string/app_version" >
</manifest>