Hi
I want to make two apks with diff package names using aapt
I am using the script
<target name="change">
        <echo>chnage manifest</echo>
        <exec executable="${aapt}" failonerror="true">
            <arg value="add" />
            <arg line="${v.option}" />
            <arg value="-m" />

            <arg value="-M" />
            <arg path="AndroidManifest.xml" />
             <arg value="-S" />
            <arg path="${resource.absolute.dir}" />
            <arg value="-I" />
            <arg path="${android.jar}" />


        <arg value="--rename-manifest-package"/>
            <arg value="com.mybase.app"/>


        </exec>
    </target>

But where to see the resultant manifest file ?
if I give -F and the path a new apk with manifest and res is
created.How to integaret it with .class files /
can we do all these operations in a single step thru command line or
thru script ?
Pleas ehelp

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to