-
Notifications
You must be signed in to change notification settings - Fork 57
/
android-mode.el
676 lines (600 loc) · 26.5 KB
/
android-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
;;; android-mode.el --- Minor mode for Android application development
;; Copyright (C) 2009-2018 R.W van 't Veer
;; Author: R.W. van 't Veer
;; Created: 20 Feb 2009
;; Keywords: tools processes
;; Version: 0.5.2
;; URL: https://github.com/remvee/android-mode
;; Contributors:
;; Bert Hartmann
;; Cristian Esquivias
;; Donghyun Cho
;; Geoff Shannon
;; Jürgen Hötzel
;; Karsten Gebbert
;; Habibullah Pagarkar
;; Hiroo Matsumoto
;; K. Adam Christensen
;; Haden Pike
;; Camilo QS
;; Jonathan Schmeling
;; Kawin Nikomborirak
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 3
;; of the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; Provides support for running Android SDK subprocesses like the
;; emulator, logcat, ddms and ant. When loaded `dired-mode' and
;; `find-file' hooks are added to automatically enable `android-mode'
;; when opening a file or directory in an android project.
;;; Code:
(require 'cl-lib)
(require 'xml)
(eval-when-compile (require 'cl))
(defconst android-mode-default-builders
'(ant gradle maven))
(defgroup android-mode nil
"A minor mode for Android application development"
:prefix "android-mode-"
:group 'applications)
(defcustom android-mode-sdk-dir nil
"Set to the directory containing the Android SDK. This value
will be overridden by ANDROID_HOME environment variable when
available."
:type 'string
:group 'android-mode)
(defcustom android-mode-sdk-tool-subdirs '("emulator" "tools" "platform-tools")
"List of subdirectors in the SDK containing commandline tools."
:type '(repeat string)
:group 'android-mode)
(defcustom android-mode-sdk-tool-extensions '("" ".bat" ".exe")
"List of possible extensions for commandline tools."
:type '(repeat string)
:group 'android-mode)
(defcustom android-mode-builder 'gradle
"Builder for building an android application.
When customizing `android-mode-builder' it's important to make
sure that a corresponding entry exists in
`android-mode-root-file-plist'."
:type 'symbol
:options android-mode-default-builders
:group 'android-mode)
(defcustom android-mode-root-file-plist '(ant "AndroidManifest.xml"
maven "AndroidManifest.xml"
gradle "gradlew")
"Plist of mapping between different builders and the file that
signifies the root of a project that uses that builder."
:type '(plist :key-type symbol
:value-type string)
:options android-mode-default-builders
:group 'android-mode)
(defcustom android-mode-build-command-alist
'((ant . "ant -e")
(maven . "mvn")
(gradle . "./gradlew"))
"Alist that specifies specific build command according to builder type.
Each elt has the form (BUILDER COMMAND)."
:type '(alist :key-type symbol :value-type string)
:options android-mode-default-builders
:group 'android-mode)
(defcustom android-mode-key-prefix "\C-c a"
"Minor mode keys prefix."
:type 'string
:group 'android-mode)
(defcustom android-mode-avd ""
"Default AVD to use."
:type 'string
:group 'android-mode)
(defcustom android-mode-gradle-plugin "2.1.3"
"Version of gradle plugin for android.
--------------------------------
Plugin version | Gradle version
--------------------------------
1.0.0 - 1.1.3 | 2.2.1 - 2.3
1.2.0 - 1.3.1 | 2.2.1 - 2.9
1.5.0 | 2.2.1 - 2.13
2.0.0 - 2.1.2 | 2.10 - 2.13
2.1.3 - 2.2.3 | 2.14.1+
2.3.0+ | 3.3+
--------------------------------
You need have installed Gradle version compatible with plugin,
if using the gradle wrapper and have a error try editing the distributionUrl
in YOUR_PROJECT/gradle/wrapper/gradle-wrapper.properties."
:type 'string
:group 'android-mode)
(defface android-mode-verbose-face '((t (:foreground "DodgerBlue")))
"Font Lock face used to highlight VERBOSE log records."
:group 'android-mode)
(defface android-mode-debug-face '((t (:foreground "ForestGreen")))
"Font Lock face used to highlight DEBUG log records."
:group 'android-mode)
(defface android-mode-info-face '((t (:foreground "Gray45")))
"Font Lock face used to highlight INFO log records."
:group 'android-mode)
(defface android-mode-warning-face '((t (:foreground "Red")))
"Font Lock face used to highlight WARN log records."
:group 'android-mode)
(defface android-mode-error-face '((t (:foreground "Red" :bold t)))
"Font Lock face used to highlight ERROR log records."
:group 'android-mode)
(defvar android-mode-log-face-alist
'(("V" . android-mode-verbose-face)
("D" . android-mode-debug-face)
("I" . android-mode-info-face)
("W" . android-mode-warning-face)
("E" . android-mode-error-face)))
(defvar android-mode-log-filter-regexp ""
"With this, user can filter output in `android-logcat-buffer'.
If received line from logcat doesn't match this, Emacs will
ignore that line. User can see their log in a less verbose
way.")
(defun android-find-dir (filename)
"Look for specified FILENAME to find the directory in which the file is located."
(if filename
(locate-dominating-file default-directory filename)
(message "%s was not found in `android-mode-root-file-plist'"
android-mode-builder)
nil))
(defun android-root ()
"Look for the builder's main file (AndroidManifest.xml for ant and maven,
gradlew for gradle) to find project root of android application."
(android-find-dir (plist-get android-mode-root-file-plist
android-mode-builder)))
(defun android-manifest-dir ()
"Look for AndroidManifest.xml to find the directory it's located in."
(android-find-dir "AndroidManifest.xml"))
(defmacro android-in-directory (chosen-dir body)
"Execute BODY form with CHOSEN-DIR directory as
``default-directory''. The form is not executed when no project
root directory can be found."
`(if ,chosen-dir
(let ((default-directory ,chosen-dir))
,body)
(error "Can't find project root")))
(defun android-local-sdk-dir ()
"Try to find android sdk directory through the local.properties
file in the android project base directory. If local.properties
doesn't exist, it does not contain the sdk-dir property or the
referred directory does not exist, return the ANDROID_HOME
environment value otherwise the `android-mode-sdk-dir' variable."
(or
(ignore-errors
(android-in-directory
(android-root)
(let ((local-properties "local.properties"))
(and (file-exists-p local-properties)
(with-temp-buffer
(insert-file-contents local-properties)
(goto-char (point-min))
(and (re-search-forward "^sdk\.dir=\\(.*\\)" nil t)
(let ((sdk-dir (match-string 1)))
(and (file-exists-p sdk-dir) sdk-dir))))))))
(getenv "ANDROID_HOME")
android-mode-sdk-dir
(error "No SDK directory found")))
(defun android-tool-path (name)
"Find path to NAME SDK tool."
(or (cl-find-if #'file-exists-p
(apply #'append
(mapcar (lambda (path)
(mapcar (lambda (ext)
(mapconcat 'identity
`(,(android-local-sdk-dir)
,path ,(concat name ext))
"/"))
android-mode-sdk-tool-extensions))
android-mode-sdk-tool-subdirs)))
(error "Can't find SDK tool: %s" name)))
(defvar android-exclusive-processes ())
(defun android-start-exclusive-command (name command &rest args)
"Run COMMAND named NAME with ARGS unless it's already running."
(and (not (cl-find (intern name) android-exclusive-processes))
(set-process-sentinel (start-process-shell-command name name
(concat command
" "
(mapconcat #'shell-quote-argument
args
" ")))
(lambda (proc msg)
(when (memq (process-status proc) '(exit signal))
(setq android-exclusive-processes
(delete (intern (process-name proc))
android-exclusive-processes)))))
(setq android-exclusive-processes (cons (intern name)
android-exclusive-processes))))
(defun android-create-project (path package activity)
"Create new Android project on PATH with SDK app with PACKAGE and first ACTIVITY."
(interactive "FPath: \nMPackage: \nMActivity: ")
(let* ((target (completing-read "Target: " (android-list-targets)))
(expanded-path (expand-file-name path))
(command (format "%s create project --path %S --package %s --activity %s --target %S"
(android-tool-path "android")
expanded-path package activity target))
(command (if (and (eq android-mode-builder 'gradle)
(not (equal android-mode-gradle-plugin nil)))
(concat command (format " --gradle --gradle-version %s"
android-mode-gradle-plugin))
command))
(output (shell-command-to-string command)))
(if (string-equal "Error" (substring output 0 5))
(error output)
(find-file expanded-path))))
(defun android-list-targets ()
"List Android SDKs installed on local machine."
(let* ((command (concat (android-tool-path "android") " list target"))
(output (shell-command-to-string command))
(result nil)
(offset 0))
(while (string-match "id: [[:digit:]]+ or \"\\(.*\\)\"" output offset)
(setq result (cons (match-string 1 output) result))
(setq offset (match-end 0)))
(if result
(reverse result)
(error "No Android Targets found"))))
(defun android-list-avd ()
"List of Android Virtual Devices installed on local machine."
(let* ((command (concat (android-tool-path "android") " list avd"))
(output (shell-command-to-string command))
(result nil)
(offset 0))
(while (string-match "Name: \\(.*\\)" output offset)
(setq result (cons (match-string 1 output) result))
(setq offset (match-end 0)))
(if result
(reverse result)
(error "No Android Virtual Devices found"))))
(defun android-start-emulator ()
"Launch Android emulator."
(interactive)
(let ((avd (or (and (not (string= android-mode-avd "")) android-mode-avd)
(completing-read "Android Virtual Device: " (android-list-avd)))))
(unless (android-start-exclusive-command (concat "*android-emulator-" avd "*")
(android-tool-path "emulator")
"-avd"
avd)
(message (concat "emulator " avd " already running")))))
(defun android-start-ddms ()
"Launch Dalvik Debug Monitor Service tool."
(interactive)
(unless (android-start-exclusive-command "*android-ddms*" (android-tool-path "ddms"))
(message "ddms already running")))
(defcustom android-logcat-buffer "*android-logcat*"
"Name for the buffer where logcat output goes."
:type 'string
:group 'android-mode)
(defun android-logcat-find-file ()
"Open file at point in logcat."
(interactive)
(let ((filename (get-text-property (point) 'filename))
(linenr (get-text-property (point) 'linenr)))
(when filename
(find-file (concat (android-root) "/src/" filename))
(goto-char (point-min))
(forward-line (1- linenr)))))
(defun android-logcat-find-file-mouse (event)
"Open file at mouse EVENT in logcat."
(interactive "e")
(let (window pos file)
(save-excursion
(setq window (posn-window (event-end event))
pos (posn-point (event-end event)))
(set-buffer (window-buffer window))
(goto-char pos)
(android-logcat-find-file))))
(defvar android-logcat-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "RET") 'android-logcat-find-file)
(define-key map [mouse-2] 'android-logcat-find-file-mouse)
(define-key map (kbd "n") 'next-logical-line)
(define-key map (kbd "p") 'previous-logical-line)
(define-key map (kbd "q") 'delete-window)
(define-key map (kbd "f") 'android-logcat-set-filter)
(define-key map (kbd "c") 'android-logcat-clear-filter)
(define-key map (kbd "C") 'android-logcat-erase-buffer)
map))
(defun android-logcat-prepare-msg (msg)
"Apply text properties to log MSG."
(if (string-match "\\bat \\(.+\\)\\.\\([^.]+\\)\\.\\([^.]+\\)(\\(.+\\):\\([0-9]+\\))" msg)
(let* ((package (match-string 1 msg))
(class (match-string 2 msg))
(method (match-string 3 msg))
(filename (concat (replace-regexp-in-string "\\." "/" package) "/" (match-string 4 msg)))
(linenr (match-string 5 msg)))
(if (file-exists-p (concat (android-root) "/src/" filename))
(propertize msg
'face 'underline
'mouse-face 'highlight
'filename filename
'linenr (string-to-number linenr)
'follow-link t)
msg))
msg))
(defvar android-logcat-pending-output "")
(defun android-logcat-process-filter (process output)
"Process filter for PROCESS displaying logcat OUTPUT."
(with-current-buffer android-logcat-buffer
(let ((following (= (point-max) (point)))
(buffer-read-only nil)
(pos 0)
(output (concat android-logcat-pending-output
(replace-regexp-in-string "" "" output))))
(save-excursion
(while (string-match "\n" output pos)
(let ((line (substring output pos (match-beginning 0))))
(setq pos (match-end 0))
(goto-char (point-max))
(when (string-match android-mode-log-filter-regexp line)
(if (string-match "^\\(.\\)/\\(.*\\)( *\\([0-9]+\\)): \\(.*\\)$" line)
(let* ((level (match-string 1 line))
(level-face (cdr (or (assoc level android-mode-log-face-alist)
(assoc "I" android-mode-log-face-alist))))
(tag (replace-regexp-in-string " *$" "" (match-string 2 line)))
(pid (match-string 3 line))
(msg (match-string 4 line)))
(insert (propertize level
'font-lock-face level-face))
(tab-to-tab-stop)
(insert (propertize tag
'font-lock-face 'font-lock-function-name-face))
(insert (propertize (concat "(" pid ")")
'font-lock-face 'font-lock-constant-face))
(tab-to-tab-stop)
(insert (android-logcat-prepare-msg (propertize msg 'font-lock-face level-face))))
(insert (propertize line
'font-lock-face 'font-lock-warning-face)))
(insert "\n"))))
(setq android-logcat-pending-output (substring output pos)))
(when following (goto-char (point-max))))))
(defun android-logcat ()
"Switch to ADB logcat buffer, create it when it doesn't exists yet."
(interactive)
(when (android-start-exclusive-command android-logcat-buffer
(android-tool-path "adb")
"logcat")
(set-process-filter (get-buffer-process android-logcat-buffer)
#'android-logcat-process-filter)
(with-current-buffer android-logcat-buffer
(setq buffer-read-only t)
(set (make-local-variable 'tab-stop-list) '(2 30))
(set (make-local-variable 'android-mode-log-filter-regexp) "")
(use-local-map android-logcat-map)
(font-lock-mode t)
(android-mode t)))
(switch-to-buffer android-logcat-buffer)
(goto-char (point-max)))
(defun android-current-buffer-class-name ()
"Try to determine the full qualified class name defined in the current buffer."
(save-excursion
(when (and buffer-file-name
(string-match "\\.java$" buffer-file-name))
(goto-char (point-min))
(let* ((case-fold-search nil)
(package (and (search-forward-regexp "^[ \t]*package[ \t]+\\([a-z0-9_.]+\\)" nil t)
(match-string-no-properties 1)))
(class (and (search-forward-regexp "\\bpublic[ \t]+class[ \t]+\\([A-Za-z0-9]+\\)" nil t)
(match-string-no-properties 1))))
(cond ((and package class) (concat package "." class))
(class class))))))
(defun android-project-package ()
"Return the package of the Android project."
(android-in-directory
(android-manifest-dir)
(let ((root (car (xml-parse-file "AndroidManifest.xml"))))
(xml-get-attribute root 'package))))
(defun android-project-main-activities (&optional category)
"Return list of main activity class names as found in the
manifest. The names returned are fully qualified class names.
Names starting with a period or a capital letter are prepended by
the project package name.
Filter on CATEGORY intent when supplied."
(android-in-directory
(android-manifest-dir)
(cl-flet* ((first-xml-child (parent name)
(car (xml-get-children parent name)))
(action-main-p (activity)
(let ((el (first-xml-child (first-xml-child activity
'intent-filter)
'action)))
(equal "android.intent.action.MAIN"
(xml-get-attribute el 'android:name))))
(category-p (activity)
(let ((el (first-xml-child (first-xml-child activity
'intent-filter)
'category)))
(equal (concat "android.intent.category." category)
(xml-get-attribute el 'android:name)))))
(let* ((root (car (xml-parse-file "AndroidManifest.xml")))
(package (xml-get-attribute root 'package))
(application (first-xml-child root 'application)))
(mapcar (lambda (activity)
(let ((case-fold-search nil)
(name (xml-get-attribute activity 'android:name)))
(cond ((string-match "^\\." name) (concat package name))
((string-match "^[A-Z]" name) (concat package "." name))
(t name))))
(cl-member-if (lambda (activity)
(and (action-main-p activity)
(or (not category) (category-p activity))))
(xml-get-children application 'activity)))))))
(defun android-start-app ()
"Start activity in the running emulator. When the current
buffer holds an activity class specified in the manifest as a
main action intent is will be run. Otherwise start the first
activity in the 'launcher' category."
(interactive)
(let* ((package (android-project-package))
(current (android-current-buffer-class-name))
(activity (if (member current
(android-project-main-activities))
current
(car (android-project-main-activities "LAUNCHER"))))
(command (concat (android-tool-path "adb")
" shell am start -n "
(concat package "/" activity))))
(unless activity (error "No main activity found in manifest"))
(message "Starting activity: %s" activity)
(let ((output (shell-command-to-string command)))
(when (string-match "^Error: " output)
(error (concat command "\n" output))))))
(defun android-logcat-set-filter (regexp-filter)
"Set the filter of `android-logcat-buffer' to
REGEXP-FILTER. User can see only lines which match
REGEXP-FILTER."
(interactive "MRegexp Filter: ")
(with-current-buffer android-logcat-buffer
(let ((buffer-read-only nil)
(info-face (cdr (assoc "I" android-mode-log-face-alist)))
msg)
(goto-char (point-max))
(if (equal (length regexp-filter) 0)
(setq msg "\n\n*** Filter is cleared ***\n\n")
(setq msg (concat "\n\n*** Filter is changed to '" regexp-filter
"' ***\n\n")))
(insert (propertize msg 'font-lock-face info-face))))
(setq android-mode-log-filter-regexp regexp-filter))
(defun android-logcat-clear-filter ()
"Clear the filter of `android-logcat-buffer'. User can see all
logs"
(interactive)
(android-logcat-set-filter ""))
(defun android-logcat-erase-buffer ()
"Clear the contents of the logcat buffer."
(interactive)
(with-current-buffer android-logcat-buffer
(let ((buffer-read-only nil))
(erase-buffer))))
(defmacro android-defun-builder (builder)
`(defun ,(intern (concat "android-" builder)) (tasks-or-goals)
,(concat "Run " builder " TASKS-OR-GOALS in the project root directory.")
(interactive "sTasks or Goals: ")
(android-in-directory
(android-root)
(compile (concat (cdr (assoc (intern ,builder) android-mode-build-command-alist))
" " tasks-or-goals)))))
(android-defun-builder "ant")
(android-defun-builder "maven")
(android-defun-builder "gradle")
;; Ant
(defmacro android-defun-ant-task (task)
`(defun ,(intern (concat "android-ant-"
(replace-regexp-in-string "[[:space:]]" "-" task)))
()
,(concat "Run 'ant " task "' in the project root directory.")
(interactive)
(android-ant ,task)))
(android-defun-ant-task "clean")
(android-defun-ant-task "test")
(android-defun-ant-task "debug")
(android-defun-ant-task "installd")
(android-defun-ant-task "uninstall")
;; Maven
(defmacro android-defun-maven-task (task)
`(defun ,(intern (concat "android-maven-"
(replace-regexp-in-string "[[:space:]:]" "-" task)))
()
,(concat "Run maven " task " in the project root directory.")
(interactive)
(android-maven ,task)))
(android-defun-maven-task "clean")
(android-defun-maven-task "test")
(android-defun-maven-task "install")
(android-defun-maven-task "android:deploy")
(android-defun-maven-task "android:redeploy")
(android-defun-maven-task "android:undeploy")
(defmacro android-defun-gradle-task (task)
`(defun ,(intern (concat "android-gradle-"
(replace-regexp-in-string "[[:space:]:]" "-" task)))
()
,(concat "Run gradle " task " in the project root directory.")
(interactive)
(android-gradle ,task)))
(android-defun-gradle-task "clean")
(android-defun-gradle-task "test")
(android-defun-gradle-task "assembleDebug")
(android-defun-gradle-task "assembleRelease")
(android-defun-gradle-task "installDebug")
(android-defun-gradle-task "uninstallDebug")
;; Common build functions
(defun android-build-clean ()
"Remove output files created by building."
(interactive)
(funcall (case android-mode-builder
('ant 'android-ant-clean)
('gradle 'android-gradle-clean)
('maven 'android-maven-clean))))
(defun android-build-test ()
"Run the tests."
(interactive)
(funcall (case android-mode-builder
('ant 'android-ant-test)
('gradle 'android-gradle-test)
('maven 'android-maven-test))))
(defun android-build-debug ()
"Build the application in a debug mode."
(interactive)
(funcall (case android-mode-builder
('ant 'android-ant-debug)
('gradle 'android-gradle-assembleDebug)
('maven 'android-maven-install))))
(defun android-build-install ()
"Install a generated apk file to the device."
(interactive)
(funcall (case android-mode-builder
('ant 'android-ant-installd)
('gradle 'android-gradle-installDebug)
('maven 'android-maven-android-deploy))))
(defun android-build-reinstall ()
"Reinstall a generated apk file to the device."
(interactive)
(funcall (case android-mode-builder
('maven 'android-maven-android-deploy)
(t (error "%s builder does not support reinstall"
android-mode-builder)))))
(defun android-build-uninstall ()
"Uninstall a generated apk file from the device."
(interactive)
(funcall (case android-mode-builder
('ant 'android-ant-uninstall)
('gradle 'android-gradle-uninstallDebug)
('maven 'android-maven-android-undeploy))))
(defconst android-mode-keys
'(("d" . android-start-ddms)
("e" . android-start-emulator)
("l" . android-logcat)
("C" . android-build-clean)
("t" . android-build-test)
("c" . android-build-debug)
("i" . android-build-install)
("r" . android-build-reinstall)
("u" . android-build-uninstall)
("a" . android-start-app)))
(defvar android-mode-map (make-sparse-keymap))
(add-hook 'android-mode-hook
(lambda ()
(dolist (spec android-mode-keys)
(define-key
android-mode-map
(read-kbd-macro (concat android-mode-key-prefix " " (car spec)))
(cdr spec)))))
;;;###autoload
(define-minor-mode android-mode
"Android application development minor mode."
nil
" Android"
android-mode-map)
(add-hook 'dired-mode-hook (lambda () (when (android-root) (android-mode t))))
(add-hook 'find-file-hook (lambda () (when (android-root) (android-mode t))))
(provide 'android-mode)
;;; android-mode.el ends here