I'm new to Java/Netbeans but I want to try something on Anroid. I choose Clojure but the start isn't so easy at all. I installed mode for Netbeans and clojure and can run simple swing applications.
I found https://github.com/remvee/clojurehelloandroid but I can't translate it to NetBeans solution even I don't know how to specify if for Android (Dalvik) Virtual Machine.
(ns us.riddell.TestProject
(:gen-class
:extends android.app.Activity
:exposes-methods {onCreate superOnCreate}))
where are android.app.Activity from coming / how to install / add it ?
And is it the same alike working with swing for GUI on Dalvik Virtual Machine.
I really want NetBeans Clojure GUI Hello World for Android :)
Thank you.