Skip to content

Instantly share code, notes, and snippets.

@itoz
Created October 6, 2011 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itoz/1267232 to your computer and use it in GitHub Desktop.
Save itoz/1267232 to your computer and use it in GitHub Desktop.
AIR3 Desktop Captive Runtime Build Ant
<project name="build desktop captive runtime" default="build">
<property name="adt" value="[adtのパス]" />
<property name="cirtificate" value="[さーてぃふぃけいとパス]" />
<property name="cirtificate.pass" value="[ぱすわーど]" />
<target name="build">
<java jar="${adt}" fork="true">
<arg value="-package" />
<arg value="-storetype" />
<arg value="pkcs12" />
<arg value="-keystore" />
<arg value="${cirtificate}" />
<arg value="-storepass" />
<arg value="${cirtificate.pass}" />
<arg value="-target" />
<arg value="bundle" />
<arg value="./deploy" />
<arg value="./bin/Index-app.xml" />
<arg value="-C" />
<arg value="./bin" />
<arg value="Index.swf" />
</java>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment