mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 04:39:54 +01:00
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
-optimizationpasses 5
|
|
-dontusemixedcaseclassnames
|
|
-dontskipnonpubliclibraryclasses
|
|
-dontpreverify
|
|
-verbose
|
|
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
|
|
-ignorewarnings
|
|
-renamesourcefileattribute SourceFile
|
|
-keepattributes SourceFile,LineNumberTable,*Annotation*,Signature
|
|
|
|
-keep public class * extends android.app.Activity
|
|
-keep public class * extends android.app.Application
|
|
-keep public class * extends android.app.Service
|
|
-keep public class * extends android.content.BroadcastReceiver
|
|
-keep public class * extends android.content.ContentProvider
|
|
-keep public class com.android.vending.licensing.ILicensingService
|
|
-keepclasseswithmembers class * { native <methods>; }
|
|
-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 *; }
|
|
-keepclassmembers class **.R$* { public static <fields>; }
|
|
-keepclasseswithmembernames class * { native <methods>; }
|
|
-keepclassmembers enum * {
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
-keepclassmembers class * extends android.app.Activity {
|
|
public void *(android.view.View);
|
|
}
|
|
-keepclassmembers class * {
|
|
@com.google.inject.Inject <init>(...);
|
|
@com.google.inject.Inject <fields>;
|
|
}
|
|
# Just in case Roboguice events are used
|
|
-keepclassmembers class * {
|
|
void *(**On*Event);
|
|
}
|
|
|
|
-keep class org.briarproject.** { *; }
|
|
-keep class com.google.inject.** { *; }
|
|
-keep class javax.inject.** { *; }
|
|
-keep class javax.annotation.** { *; }
|
|
-keep class roboguice.** { *; } |