http://www.infoq.com/jp/news/2015/09/clojure-native-android-apps
自分は、google playを通してアプリを公開するのが面倒になって、androidアプリ作りは撤退してしまいましたが
Bootを使ってClojureScriptを書いている人がいたら教えて欲しいんですが
出力するファイル名を変えたいときって (cljs :compiler-options {:output-to "foo.js"})
で良いのでしょうか
(cljs :compiler-options {:output-to "foo.js"})
や (cljs :output-to "foo.js")
で試してみたんですが
出力が target/main.js
からどうにも変わらなくて
あー、それは boot-cljs のほうの問題ですね
> onfigure the compiler to produce compiled JS at a location derived from the file's path, e.g. given the file foo/bar.cljs.edn the output JS file will be foo/bar.js.
とあるとおり、 edn ファイルのパスと同じファイルが出力されます(なければ main.js
(もう数ヶ月触ってないですが、そういう感じだったと思います)