LoginSignup
0
0

More than 5 years have passed since last update.

[AIR] Desktop用 AIR Native Extensionアプリを書き出すANT

Posted at

<!--   mac からはdmg winからはexeが書き出せる。-->

<?xml version="1.0" encoding="UTF-8"?>

<project name="build desktop ane app" default="build">

        <property name="adt" value="adt.jarのぱす" />
        <property name="cirtificate" value="しょうめいしょのぱす" />
        <property name="cirtificate.pass" value=”ぱすわーど" />

        <target name="build">
        <fdt.loadProjectProperties />

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

                <arg value="../deploy/書き出しアプリ名" />
                <arg value="../bin/●●●●●-app.xml" />

                <arg value="-C" />
                <arg value="../bin" />
                <arg value="●●●●●●●.swf" />

                <arg value="-extdir" />
                <arg value="../ane" />
            </java>
        </target>
    </project>






0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0