We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de252e9 commit f406551Copy full SHA for f406551
andlinker/build.gradle
@@ -13,7 +13,7 @@ android {
13
buildTypes {
14
release {
15
minifyEnabled false
16
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ consumerProguardFiles 'proguard-rules.pro'
17
}
18
19
andlinker/proguard-rules.pro
@@ -19,3 +19,10 @@
# If you keep the line number information, uncomment this to
20
# hide the original source file name.
21
#-renamesourcefileattribute SourceFile
22
+
23
+-dontwarn com.codezjx.andlinker.adapter.**
24
+-keep class * implements android.os.Parcelable {*;}
25
+-keep @com.codezjx.andlinker.annotation.ClassName class *
26
+-keepclassmembers class * {
27
+ @com.codezjx.andlinker.annotation.MethodName <methods>;
28
+}
0 commit comments