clojure-android

denis_krivosheev 2018-10-11T12:10:18.000100Z

Hi guys. Is there any working solution to write anything for android? All I can find is super old and I can’t even build it.

2018-10-11T13:23:27.000100Z

most promising tools set that I’m able to find is to use react-native. Here you can find more information about it - http://cljsrn.org/

denis_krivosheev 2018-10-11T14:01:49.000100Z

Yeah, RN can be the solution, but it’s still very alpha on Android. And this combination ClojureScript -> JavaScript -> Java makes me feel sad

2018-10-11T14:06:03.000100Z

@denis_krivosheev I'm working on using gradle-clojure to target Android, then to dust off the old Android helpers (eg. [neko](https://github.com/clojure-android/neko)) and get them working against the latest Android and under Gradle.

2018-10-11T14:06:24.000100Z

but that's a hobby project, and I'm expert on none of the necessary tech.

2018-10-11T14:09:40.000100Z

if you're familiar with Gradle, that would be a good place to start. I'm seeing this issue[1] and hope to have time this evening to look into using the less opinionated clojure-base to target Android's Gradle rules instead of the default java ones. [1] https://github.com/gradle-clojure/gradle-clojure/issues/56

2018-10-11T14:10:09.000100Z

("this evening" meaning ~10 hours from now; I'm on Eastern time in North America)

denis_krivosheev 2018-10-11T14:29:52.000100Z

I would love to help, but I know nothing about gradle and Android development in general (outside React Native)

2018-10-11T14:30:50.000100Z

well, I'll report any progress in here.

denis_krivosheev 2018-10-11T18:35:22.000100Z

@braden.shepherdson thank you