android - Robguice proguard forces -
android - Robguice proguard forces -
this bare minimum specified roboguice proguard support: https://gist.github.com/matthawley/1327908
i forced add together these prevent code crashing:
-keep class com.appmanager.ui.fragments.* { *; } -keep class com.appmanager.ui.views.* { *; } which means of views , fragments not obfuscated. there way circumvent behaviour?
i'm not big expert of progurad. according documentation can inquire proguard maintain annotated fields.
i've checked official roboguice wiki proguard , saying requires field names, activity names, services names, specific method names, etc.
i'm not sure how big project , how wide roboguice used. can seek dependency injection dagger uses much less reflection (version 2.0 free reflection @ all)
android proguard roboguice
Comments
Post a Comment