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
Dart 2.0.3 couldn't find the ExtraInjector for any of my Activities when I had proguard turned on with minifyEnabled true
In my proguard-rules.pro, I had the rules from the wiki
...
-keep class **__ExtraBinder { *; }
...
I think that line should be replaced with
...
-keep class **$$ExtraInjector { *; } //this is needed so that proguard doesn't delete the injectors
-keepnames class **$$ExtraInjector { *; } //this is needed so that proguard doesn't change their names
...
The text was updated successfully, but these errors were encountered:
Dart 2.0.3 couldn't find the ExtraInjector for any of my Activities when I had proguard turned on with
minifyEnabled true
In my
proguard-rules.pro
, I had the rules from the wikiI think that line should be replaced with
The text was updated successfully, but these errors were encountered: