I've just recently started coding in Scala and I want to start working with RxScala but I haven't been able to figure out how to import it into Intellij. Does anyone know how to do this, I've spent the last few hours trying to figure this out and I'm no closer than when I started? Also I'm using Ubuntu if that effects anything.
Use SBT. IDEA automatically recognizes and imports SBT projects. You just need to create a basic build.sbt
file in the root folder containing
name := "your project"
organization := "your organization"
version := "x.y.z"
scalaVersion := "2.11.7"
libraryDependencies += "io.reactivex" %% "rxscala" % "0.25.0" // or whatever version you want to use
and "Open project" in IDEA.