Skip to content
This repository was archived by the owner on Nov 20, 2019. It is now read-only.

rxjava patch #149

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libraries/proguard-dagger-2.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Dagger2

-dontwarn com.google.errorprone.annotations.**
13 changes: 13 additions & 0 deletions libraries/proguard-rteditor.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# rteditor

-keepattributes Signature
-keepclassmembers class * extends com.onegravity.rteditor.spans.RTSpan {
public <init>(int);
}

# EventBus see: http://greenrobot.org/eventbus/documentation/proguard/
-keepattributes *Annotation*
-keepclassmembers class ** {
@org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
17 changes: 17 additions & 0 deletions libraries/proguard-rx-java.pro
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,20 @@
-keep class rx.schedulers.Schedulers {
public static ** test();
}

-dontwarn sun.misc.**

-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
long producerIndex;
long consumerIndex;
}

-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
rx.internal.util.atomic.LinkedQueueNode producerNode;
}

-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef {
rx.internal.util.atomic.LinkedQueueNode consumerNode;
}

-dontnote rx.internal.util.PlatformDependent
7 changes: 7 additions & 0 deletions libraries/proguard-saripaar.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# android-saripaar

-keep class com.mobsandgeeks.saripaar.** {*;}
-keep @com.mobsandgeeks.saripaar.annotation.ValidateUsing class * {*;}

#YOU MUST ADD BELOW LINE WITH YOUR PACKAGE!
#-keep class com.sbh.wefix.adapters.TextInputLayoutAdapter {*;}
5 changes: 5 additions & 0 deletions libraries/proguard-ucrop.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# uCrop

-dontwarn com.yalantis.ucrop**
-keep class com.yalantis.ucrop** { *; }
-keep interface com.yalantis.ucrop** { *; }