You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a scope is only instantiated via the new Creatable method, proguard will strip the Impl with the current config. As a temporary workaround, all subclasses can be kept via:
-keep class * implements motif.Creatable {
<init>(...);
}
However long-term the solution is to use -if to pair the impl with the kept state of the interface.
The text was updated successfully, but these errors were encountered:
If a scope is only instantiated via the new Creatable method, proguard will strip the Impl with the current config. As a temporary workaround, all subclasses can be kept via:
However long-term the solution is to use
-if
to pair the impl with the kept state of the interface.The text was updated successfully, but these errors were encountered: