Home | History | Annotate | Download | only in files

Lines Matching defs:class

14 (defvar android-jdb-activity-class-history ()
36 (defcustom android-activity-class nil
37 "This is where your Android Activity class is stored."
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."
111 (read-from-minibuffer "Activity Java class: "
112 (car android-jdb-activity-class-history)
115 'android-jdb-activity-class-history)))
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."
123 (read-from-minibuffer "Activity Java class: "
124 (car android-jdb-activity-class-history)
127 'android-jdb-activity-class-history)))
128 (compile (format "adb shell am start -D -n %s/%s" package class)))