2011-01-26 02:26:53 +00:00
|
|
|
-dontwarn scala.**
|
|
|
|
-dontnote scala.**
|
|
|
|
-dontobfuscate
|
|
|
|
-dontpreverify
|
|
|
|
-repackageclasses ''
|
|
|
|
-allowaccessmodification
|
|
|
|
-optimizations !code/simplification/arithmetic,!code/allocation/variable
|
|
|
|
-keepattributes *Annotation*
|
|
|
|
-keep public class * extends android.app.Activity
|
|
|
|
-keep public class * extends android.app.Service
|
2011-04-08 22:27:07 +00:00
|
|
|
-keepclassmembers class * extends android.os.AsyncTask {
|
|
|
|
protected void onPreExecute();
|
|
|
|
public *** doInBackground(...);
|
|
|
|
protected void onPostExecute(...);
|
2011-04-12 22:21:42 +00:00
|
|
|
protected void onCancelled(...);
|
2011-04-08 22:27:07 +00:00
|
|
|
}
|
2011-01-26 02:26:53 +00:00
|
|
|
-keep public class * extends android.view.View {
|
|
|
|
public <init>(android.content.Context);
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet);
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
|
|
public void set*(...);
|
|
|
|
}
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet);
|
|
|
|
}
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
|
|
}
|
|
|
|
-keepclassmembers class * implements android.os.Parcelable {
|
|
|
|
static android.os.Parcelable$Creator CREATOR;
|
|
|
|
}
|
|
|
|
-keepclassmembers class **.R$* {
|
|
|
|
public static <fields>;
|
|
|
|
}
|
|
|
|
-keep public interface scala.ScalaObject
|
|
|
|
-dontskipnonpubliclibraryclasses
|
|
|
|
-dontskipnonpubliclibraryclassmembers
|
|
|
|
-allowaccessmodification
|
|
|
|
|