clojure-android / lein-droid

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

tools.nrepl resource file #92

Closed chessman closed 10 years ago

chessman commented 10 years ago

tools.nrepl stores its version in "/clojure/tools/nrepl/version.txt" resource file but it isn't contained in apk. I'm new in using lein-droid though, but shouldn't it be included?

alexander-yakushev commented 10 years ago

Hi, sorry for the late answer. On Android you cannot put files that go with your code the same way as you do with JVM applications. If you need this file, you may add a step that copies it into assets/ directory. That way it will be included into the APK, and you will be able to retrieve it later from the code.