I'm planning to add some support for Android facet creation to sbt-idea, but immediately ran into problem that I can't import AndroidKeys to my named package because it resides in default package. This seems to be Java/Scala restriction.
I got the import working by moving android plugin code from default package to a named package.
I stumbled upon this problem today and learned something about Scala the hard way (by looking at the wrong places for a long time). The default package is evil.
I'm planning to add some support for Android facet creation to sbt-idea, but immediately ran into problem that I can't import AndroidKeys to my named package because it resides in default package. This seems to be Java/Scala restriction.
I got the import working by moving android plugin code from default package to a named package.