-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems using cider for the tutorial #14
Comments
I also tried to downgrade cider to use version 0.9.1, but when I do M-x cider-connect I get the following errors: ; CIDER 0.9.1 (Java 0, Clojure 1.7.0, nREPL 0.2.10) Any help would be appreciated! I guess the best way would be to get the newest version of cider working. Can anyone show your configuration? |
Bump? |
I am running into the same/similar error: runnin the command ;; WARNING: CIDER requires nREPL 0.2.12 (or newer) to work properly I've included my project.clj file as is:
Any help would be awesome! |
I have been trying for some days now to follow the android-clojure tutorial over at:
https://github.com/alexander-yakushev/events/blob/master/tutorial.md
"Android App Development with Clojure: An Interactive Tutorial"
Creating the event project works fine:
lein new droid events org.stuff.events :activity MainActivity :target-sdk 15 :app-name EventsListing
Building it and running it on my device works fine:
lein droid doall
When I start up emacs and try to connect with Cider I start to get problems though. When I do:
M-x cider-connect
I get the following error messages:
WARNING: CIDER requires nREPL 0.2.12 (or newer) to work properly
WARNING: CIDER's version (0.13.0-snapshot) does not match cider-nrepl's version (nil). Things will break!
I guess this is because I got a newer version of cider than what I have specified in my profiles.clj:
{:user {:plugins [ [lein-droid "0.4.3"] ] }
:android-common {:android {:sdk-path "/home/matny/prg/Android/Sdk"}}
:android-user {:dependencies [ [cider/cider-nrepl "0.9.1"] ]
:android {:aot-exclude-ns ["cider.nrepl.middleware.util.java.parser"
"cider.nrepl" "cider-nrepl.plugin"]}}}
I have followed the "More information" links:
http://cider.readthedocs.io/en/latest/troubleshooting/
and tried to fix this in various ways, but no success so far. Could anyone share a profile that works with the latest version of cider so that I can get this to work?
Also reading up on the cider page it seem to recommend that I connect to cider using cider-jack-in, instead and that I don't have to specify the cider-nrepl versions in the profiles.clj anymore if I do it that way. Would you recommend me to use this approach instead of cider-connect? (I have tried this too in various ways with no success...)
Regards,
Mattias Nyrell
The text was updated successfully, but these errors were encountered: