Presentation compiler crashed while type checking this file: scala.tools.nsc.FatalError: object List does not have a member apply
And I do see this warning message:
More than one scala library found in the build path, all with compatible versions. This is not an optimal configuration, try to limit to one scala library in the build path.
(But more than one in the build path I think is a hard requirement for Android)
Removing the minified library makes the presentation compiler crash go away. But it means that you can't build the Android project.
Whether or not the minified library is on the classpath doesn't seem to matter.
Is there a way to tell the IDE that there must be two different scala libraries in the project, and the IDE should only use the one that it added (the Scala classpath container)?
--
James MooreIs there a way to tell the IDE that there must be two different scala libraries in the project, and the IDE should only use the one that it added (the Scala classpath container)?
In short, no. The plugin will pick up the first Scala library in the build path order. Would it work to move the minimized library later in the build path?