如何使用ant从build.xml中的manifest.xml读取版本代码

时间:2012-02-15 10:17:54

标签: android ant

我想将我的apk从myapp-release.apk重命名为myapp-1.0.30.apk。我想在build.xml中这样做。我想阅读我的清单中的版本,然后重命名apk。 我是用蚂蚁做的。

感谢, 斯纳

2 个答案:

答案 0 :(得分:4)

我找到了自己问题的答案:

<path id="android.antlibs">
            <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
</path>
<taskdef name="xpath" classname="com.android.ant.XPathTask" classpathref="android.antlibs" />
<xpath input="./AndroidManifest.xml" expression="/manifest/@android:versionName" output="manifest.versionName" />
<echo message="versionName = ${manifest.versionName}" />

答案 1 :(得分:0)

只需使用https://stackoverflow.com/a/5318044/130683中的macrodef并根据您的需要进行调整即可,例如:

<macrodef name="mfgrep">
  <attribute name="jar"/>
  <attribute name="key"/>
  <attribute name="keysave"/>
    <sequential>
      <loadproperties>
        <zipentry zipfile="@{jar}" name="META-INF/MANIFEST.MF"/>
      </loadproperties>
      <echo>@{key} => ${@{key}}</echo>
      <property name="@{keysave}" value="${@{key}}"/>
    </sequential>
</macrodef> 

 <!-- Grep a key from Manifest -->
 <mfgrep 
   jar="/home/gilreb/temp/test.jar"
   key="Specification-Version"
   keysave="foobar"
 />

然后使用属性$ {foobar}重命名您的文件:

<move file="myapp-release.apk" tofile="myapp-${foobar}.apk"/>