clojure-android / lein-droid

A Leiningen plugin for building Clojure/Android projects
Eclipse Public License 1.0
645 stars 56 forks source link

Lein-droid or neko #125

Closed GildedHonour closed 9 years ago

GildedHonour commented 9 years ago

That's not an issue but a question I can't find an answer for. Which one, lein-droid or neko, should I use to create a simple Hello World app in Android Studio in Clojure?

alexander-yakushev commented 9 years ago

Lein-droid is a build tool — it works on your computer and performs all the necessary steps to build your application from sources to an APK file.

Neko is a library. You use it from your Android application to implement functionality that would be too inconvenient to do with Java interop.

You create a new project with lein-droid as described in the tutorial. This new project will already include Neko dependency.

Unfortunately, there is no special integration between Clojure-Android projects and Android Studio, but you can use any editor/IDE that support nREPL to work with CoA.

GildedHonour commented 9 years ago

Thanks.