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



我想将我的apk从myapp-release.apk重命名为myapp-1.0.30.apk。我想在build.xml中执行此操作。我想读取清单中的版本,然后重命名apk。我用蚂蚁做这个。

谢谢,sneha

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

<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}" />

只需使用https://stackoverflow.com/a/5318044/130683并根据您的需求进行调整,这意味着:

<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"/>

相关内容

  • 没有找到相关文章

最新更新