Fix the uninstall target in the Ant build script.

the uninstall parameter is a value (the application package), but the Ant
task was incorrectly using "path" for the argument.
This commit is contained in:
Xavier Ducrohet
2009-05-26 12:25:28 -07:00
parent 6a95ff237b
commit 55b0512f2b

View File

@@ -205,7 +205,7 @@
<echo>Uninstalling ${application-package} from the default emulator...</echo> <echo>Uninstalling ${application-package} from the default emulator...</echo>
<exec executable="${adb}" failonerror="true"> <exec executable="${adb}" failonerror="true">
<arg value="uninstall" /> <arg value="uninstall" />
<arg path="${application-package}" /> <arg value="${application-package}" />
</exec> </exec>
</target> </target>