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:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user