If I have a Scala Android project and I use these methods in my apk...
scala.collection.immutable.List#::
scala.collection.immutable.List#:::
..., after I use ProGuard on it, it will keep scala.collection.immutable.List
class with only 2 methods, ::
and :::
.
Is there an option in ProGuard to keep ALL methods and fields inside a class, even though they aren't currently used, but without sending ProGuard this: -keep class scala.collection.immutable.List {*;}