Is this supposed to auto-reload on code changes?
Does this not update Cordova sources when I update ClojureScript code?
When I change any Cljs views, Cljs recompiles, but browser client does not update, not even if I refresh.
Am I supposed to remove and re-add the cordova platforms every time I make a code change?
Hi @theronic,
To make your changes reflect in the app (physical device, simulator or just browser) you need to close the browser, and call cordova again.
Fortunately you can develop your UI without Cordova plugins, with full reload, simply by using figwheel and disabling everything Cordova/native.
Let me know if this answers your question?
how do you "disable" everything Cordova/native?
Sorry, missed your reply. Just don't use them, and if you use them, comment them out while you develop your app in the browser, before adding the native functionality (after which you need to use the device and the close/re-open cycle again).