mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
<project name="astrid-project">
|
|
|
|
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
|
<classpath>
|
|
<pathelement location="astrid/antlib/ant-contrib-1.0b3.jar"/>
|
|
</classpath>
|
|
</taskdef>
|
|
|
|
<target name="clean">
|
|
<delete dir="release" />
|
|
</target>
|
|
|
|
<target name="get-version">
|
|
<loadfile property="manifest" srcFile="astrid/AndroidManifest.xml" />
|
|
<propertyregex property="manifest.version.code"
|
|
input="${manifest}"
|
|
regexp="android:versionCode="(.*)""
|
|
select="\1" />
|
|
<propertyregex property="manifest.version.name"
|
|
input="${manifest}"
|
|
regexp="android:versionName="([^" ]*)"
|
|
select="\1" />
|
|
<echo message="Astrid Project: version ${manifest.version.code}, named ${manifest.version.name}" />
|
|
</target>
|
|
|
|
<target name="release" depends="clean,get-version">
|
|
<subant target="release">
|
|
<fileset file="astrid/build.xml" />
|
|
</subant>
|
|
</target>
|
|
|
|
<target name="release-all" depends="clean,get-version,release">
|
|
<!-- custom builds -->
|
|
<for list="-getjar,.1000,-verizon,-sprint,-orange,-vodafone,-other" param="name">
|
|
<sequential>
|
|
<subant target="release-custom">
|
|
<fileset file="astrid/build.xml" />
|
|
<property name="custom.version.name" value="@{name}" />
|
|
</subant>
|
|
</sequential>
|
|
</for>
|
|
</target>
|
|
</project>
|
|
|