actionbarsherlock - Android Action Bar Sherlock Illegal Argument Exception after running Proguard -


this question has answer here:

i have used proguard first time (ever), , having copied exported apk emulator,

i received

illegal argument exception : class not annotated @implementation @ com.actionbarsherlock.a.a(unknown source)

as proguard appears have saved me around 400kb, keen use if possible. can suggest approach here - don't want exclude abs .jar - project has grown since starting use abs.

did add proguard lines abs website?

-keep class android.support.v4.app.** { *; } -keep interface android.support.v4.app.** { *; } -keep class com.actionbarsherlock.** { *; } -keep interface com.actionbarsherlock.** { *; }  -keepattributes *annotation* 

see http://actionbarsherlock.com/faq.html


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -