aboutsummaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorRichard Lowe <richlowe@richlowe.net>2010-12-09 11:13:00 -0500
committerRichard Lowe <richlowe@richlowe.net>2010-12-09 11:28:16 -0500
commit3cbafc8799e4bb8bb1149f94f51c305192be8414 (patch)
tree573843f4020090488024bde60b9c385e420fac15 /files
parentaf662c43db539dea46d1773a1287ed950375dff4 (diff)
downloadsdk-3cbafc8799e4bb8bb1149f94f51c305192be8414.zip
sdk-3cbafc8799e4bb8bb1149f94f51c305192be8414.tar.gz
sdk-3cbafc8799e4bb8bb1149f94f51c305192be8414.tar.bz2
android.el: Make android-uninstall-app not reinstall
- uninstall, rather than reinstalling the app - Fix reference to argument Change-Id: I66afe170c1d0ce2e5acfccf7a0c635fd07764f32
Diffstat (limited to 'files')
-rw-r--r--files/android.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/android.el b/files/android.el
index 49f2f1e..5c66218 100644
--- a/files/android.el
+++ b/files/android.el
@@ -101,7 +101,7 @@ Specify the package name --- and not the name of the application e.g., com.andro
(interactive
(list
(read-from-minibuffer "Package: ")))
- (compile (format "adb install -r %s" package)))
+ (compile (format "adb uninstall %s" package-name)))
(defun android-start-activity (package class)
"Start the activity PACKAGE/CLASS in the Android emulator. This expects the SDK tools directory to be in the current path."