Reputation: 2673
I have an android project that will be written in Java but will utilize some libs written in Scala.
I'm using the AndroidProguardScala plugin to build be a minimal Scala lib, but it doesn't seem to pick up the fact that the JARs in my project also need some of the Scala API included, causing the app to fail when these methods are called.
What am I missing?
Upvotes: 1
Views: 284
Reputation: 10472
You just need to specifically include them inside your proguard.cfg file. Just indicate that you want to keep those packages. Thats all there is to it.
Upvotes: 2