Android Ant and TeamCity -
is possible android:versioncode & android:versionname androidmanifest.xml file , use them in ant build.xml file? incorporate these values in apk when built @ compile time.
i believe use xmlproperties task achieve this.
<xmlproperty file="androidmanifest.xml"/>
should give you:
manifest(android:versioncode)="1" manifest(android:versionname)="1.0"
according definition in ant manual though haven't tried/tested it.
Comments
Post a Comment