> An Adroid SDK project is a monster. Here, on my installation, the "PilBox/"
folder contains more than ten thousand files!
It's sad when a clean slate project for a platform created when we should have known better decades ago still ends up with this kind of overhead.
It perfectly matches my recollection of doing Android development too: a big uncontrollable mess of different kinds of files whose inter-dependencies and relations are completely opaque.
Another good option if you want to write Android apps in Lisp is lein-droid [1] which allows you to use Clojure on Android. This means you can use any standard Android API, library or SDK in your app without additional bridge components.
The initial build & deploy times for Clojure on Android are annoying, but using a REPL to edit your Android app dynamically is amazing.
You can also use ClojureScript on React Native for both iOS and Android. Lets you use things like reagent or re-frame that work well with persistent data structures. It's actually super easy with Expo, which makes it so you don't have to do any Xcode or Android Studio stuff: https://docs.expo.io/versions/v14.0.0/guides/using-clojuresc...
I would highly recommend this! I use re-natal and it lets you target Android and iOS (simultaneously if you really want to) with live code reloading and native UI elements. Reagant + re-frame is a very pleasant setup for UI development and handling data flows.
I have been following the dev of PicoLisp for a long time; Alexander is great. He keeps going strong for decades. He keeps the PicoLisp platform going with additions like this. Impressive.
Well, they started them, by not wanting to play ball.
And since I expect someone to post Jonathan Schwartz public comment commending them, here goes what Gosling had to say about it.
"We were all really disturbed, even Jonathan just decided to put on a happy face and tried to turn lemons into lemonade, which annoyed a lot of folks at Sun."
Companies like IBM, Atego, Aicas, MicroEJ, Excelsior, ARM among many others, never had known issues dealing with either Sun or Oracle licenses, while providing their own Java compilation chains and hardware specific APIs.
From looking at the the Java files in the linked tarball as well as the documentation[1], it seems that PicoLisp calls Java by sending serialized messages through pipes from a separate processes and then invokes the Java reflection APIs.
So trying to use this to build an Android app with the native (i.e. Java) Android UI libraries probably wouldn't work too well, right?
It's sad when a clean slate project for a platform created when we should have known better decades ago still ends up with this kind of overhead.
It perfectly matches my recollection of doing Android development too: a big uncontrollable mess of different kinds of files whose inter-dependencies and relations are completely opaque.