I have written a clojure program that performs data manipulations of some complexity.
I would like to bring this functionality to my phone.
As an alternative to having to reimplement the whole code in java, I thought it would be nice to use clojure to generate a library to be called from Java. This would also prevent me from having to keep two versions of the same functionality in sync during the development process.
The general idea:
The java-part of the app passes a JSON-String to Clojure; The clojure-part performs the data manipulations in and then returns a JSON-String back to java.
Question: Is this possible? If so: How?
Edit: Note that the question is not about building a whole android app in clojure but rather about exposing clojure functions to an existing java/android app.