-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproguard-rules.pro
More file actions
55 lines (51 loc) · 1.75 KB
/
Copy pathproguard-rules.pro
File metadata and controls
55 lines (51 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#http://proguard.sourceforge.net/manual/examples.html
#http://proguard.sourceforge.net/manual/usage.html
-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod
-keepclasseswithmembers class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclasseswithmembers interface com.danielworld.imagecropper.CropperInterface {
<methods>;
}
-keepclasseswithmembers interface com.danielworld.imagecropper.listener.OnUndoRedoStateChangeListener {
<methods>;
}
-keepclasseswithmembers interface com.danielworld.imagecropper.listener.OnThumbnailChangeListener {
<methods>;
}
-keepclasseswithmembers class com.danielworld.imagecropper.model.CropSetting {
public <init>(com.danielworld.imagecropper.model.CropSetting$CropBuilder);
}
-keepclasseswithmembers class com.danielworld.imagecropper.model.CropSetting {
<methods>;
}
-keepclasseswithmembers class com.danielworld.imagecropper.model.CropSetting$CropBuilder {
<methods>;
}
-keepclasseswithmembers class com.danielworld.imagecropper.CropperImageView {
public *;
}
-keepclasseswithmembers class com.danielworld.imagecropper.util.CalculationUtil {
public *;
}
-keepclasseswithmembers enum com.danielworld.imagecropper.CropMode {
*;
}
-keepclasseswithmembers enum com.danielworld.imagecropper.UtilMode {
*;
}
-keepclasseswithmembers enum com.danielworld.imagecropper.ControlMode {
*;
}
-keepclasseswithmembers enum com.danielworld.imagecropper.ShapeMode {
*;
}