-
-
Save pyadav/6a28ee832990c52794f272d38b915fc3 to your computer and use it in GitHub Desktop.
RxJava RxAndroid Proguard rules
This file contains hidden or 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
| #build.gradle | |
| # | |
| # compile 'io.reactivex:rxandroid:1.0.1' | |
| # compile 'io.reactivex:rxjava:1.0.14' | |
| # compile 'io.reactivex:rxjava-math:1.0.0' | |
| # compile 'com.jakewharton.rxbinding:rxbinding:0.2.0' | |
| # rxjava | |
| -keep class rx.schedulers.Schedulers { | |
| public static <methods>; | |
| } | |
| -keep class rx.schedulers.ImmediateScheduler { | |
| public <methods>; | |
| } | |
| -keep class rx.schedulers.TestScheduler { | |
| public <methods>; | |
| } | |
| -keep class rx.schedulers.Schedulers { | |
| public static ** test(); | |
| } | |
| -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { | |
| long producerIndex; | |
| long consumerIndex; | |
| } | |
| -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { | |
| long producerNode; | |
| long consumerNode; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment