Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 993 Bytes

readme.md

File metadata and controls

28 lines (20 loc) · 993 Bytes

Android helper functions for Emacs

MELPA

This is simply a bunch of helpers for develop android using emacs.

If you are trying to use emacs for working in android code, you should take a look at:

Installing

Package is available at melpa, so you could simply:

(use-package android-env
  :after hydra
  :bind (("C-c a" . hydra-android/body))
  :config
  (setq android-env-executable "./gradlew")
  (setq android-env-test-command "connectedDevDebugAndroidTest")
  (setq android-env-unit-test-command "testDevDebug")
  (android-env))

Or use the package manager of your choice.

Notice that in case you are using hydras you'll want to load this package after hydra and make use of hydra-android defined in the execution of (android-env).