├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── values │ └── strings.xml └── layout │ └── main.xml ├── TODO ├── AndroidManifest.xml ├── clojure-inits.txt ├── src └── com │ └── hsaliak │ └── HelloFlashlight.clj ├── README ├── proguard.cfg └── pom.xml /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsaliak/android-clojure-flashlight-example/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsaliak/android-clojure-flashlight-example/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsaliak/android-clojure-flashlight-example/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | - Investigate the use of Proguard to minimize binary size [Done, but needs continued investigation] 2 | - Investigate including of Clojure-contrib and optimizing it. 3 | - Android-test support 4 | - Clojure unit test support 5 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloFlashlight from Clojure 4 | Red 5 | Blue 6 | Green 7 | Black 8 | White 9 | 10 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 9 |