-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe69221
commit 7ba9602
Showing
31 changed files
with
732 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
##ARecyclerView:v1.1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#com.wang.avi:library:1.0.2 | ||
|
||
-keep class com.wang.avi.** { *; } | ||
-keep class com.wang.avi.indicators.** { *; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#butterknife 8.4.0 | ||
-keep class butterknife.** { *; } | ||
-dontwarn butterknife.internal.** | ||
-keep class **$$ViewBinder { *; } | ||
|
||
-keepclasseswithmembernames class * { | ||
@butterknife.* <fields>; | ||
} | ||
|
||
-keepclasseswithmembernames class * { | ||
@butterknife.* <methods>; | ||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#constraint-layout:1.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
-dontwarn android.support.design.** | ||
-keep class android.support.design.** { *; } | ||
-keep interface android.support.design.** { *; } | ||
|
||
|
||
-dontwarn android.support.design.internal.** | ||
-keep class android.support.design.internal.** { *; } | ||
-keep interface android.support.design.internal.** { *; } | ||
|
||
|
||
-dontwarn android.support.design.widget.** | ||
-keep class android.support.design.widget.** { *; } | ||
-keep interface android.support.design.widget.** { *; } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## EventBus3 specific rules ## | ||
# http://greenrobot.org/eventbus/documentation/proguard/ | ||
|
||
-keepattributes *Annotation* | ||
-keepclassmembers class ** { | ||
@org.greenrobot.eventbus.Subscribe <methods>; | ||
} | ||
-keep enum org.greenrobot.eventbus.ThreadMode { *; } | ||
|
||
# Only required if you use AsyncExecutor | ||
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent { | ||
<init>(java.lang.Throwable); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#eventbus:3.0.0 | ||
## EventBus3 specific rules ## | ||
# http://greenrobot.org/eventbus/documentation/proguard/ | ||
|
||
-keepattributes *Annotation* | ||
-keepclassmembers class ** { | ||
@org.greenrobot.eventbus.Subscribe <methods>; | ||
} | ||
-keep enum org.greenrobot.eventbus.ThreadMode { *; } | ||
|
||
# Only required if you use AsyncExecutor | ||
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent { | ||
<init>(java.lang.Throwable); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Glide3.7 specific rules # | ||
# https://github.com/bumptech/glide/wiki/Configuration#keeping-a-glidemodule | ||
|
||
|
||
-keep public class * implements com.bumptech.glide.module.GlideModule | ||
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { | ||
**[] $VALUES; | ||
public *; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
##com.google.code.gson:gson:2.6.2 | ||
|
||
## GSON 2.6.2 specific rules ## | ||
|
||
# Gson uses generic type information stored in a class file when working with fields. Proguard | ||
# removes such information by default, so configure it to keep all of it. | ||
-keepattributes Signature | ||
|
||
# For using GSON @Expose annotation | ||
-keepattributes *Annotation* | ||
|
||
-keepattributes EnclosingMethod | ||
|
||
# Gson specific classes | ||
-keep class sun.misc.Unsafe { *; } | ||
-keep class com.google.gson.stream.** { *; } | ||
|
||
|
||
# Application classes that will be serialized/deserialized over Gson | ||
#-keep class com.google.gson.examples.android.model.** { *; } | ||
#这是google官方的proguard的文档,请注意倒数第二行,class 后方到**签名的 | ||
#这一段包名应该是你所有的java bean 定义的目录(所以自己在写代码时,应该把java bean 单独放在一个包中) |
Oops, something went wrong.