Home | History | Annotate | Download | only in files

Lines Matching refs:package

32  "This is where your Android Application Package is stored."
87 "Install an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path."
89 (read-file-name "Android Application Package (.apk): "
98 (defun android-uninstall-app (package-name)
99 "Uninstall an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path.
100 Specify the package name --- and not the name of the application e.g., com.android.foo."
103 (read-from-minibuffer "Package: ")))
104 (compile (format "adb uninstall %s" package-name)))
106 (defun android-start-activity (package class)
107 "Start the activity PACKAGE/CLASS in the Android emulator. This expects the SDK tools directory to be in the current path."
110 (read-from-minibuffer "Package: ")
116 (compile (format "adb shell am start -n %s/%s" package class)))
118 (defun android-debug-activity (package class)
119 "Start the activity PACKAGE/CLASS within the debugger in the Android emulator. This expects the SDK tools directory to be in the current path."
122 (read-from-minibuffer "Package: ")
128 (compile (format "adb shell am start -D -n %s/%s" package class)))