Skip to content
/ Lives Public

Lives - Android LiveData Extensions for Kotlin and Java

Notifications You must be signed in to change notification settings

adibfara/Lives

Repository files navigation

Lives - LiveData Extensions for Kotlin and Java

Adds RxJava-like operators like just, filter, merge ,zip and more to your LiveData objects.

Download

Add the dependencies via Gradle (or Maven):

implementation 'com.squareup.retrofit2:retrofit:2.4.0'

ProGuard

If you are using ProGuard you need to add the following options:

# Retain generic type information for use by reflection by converters and adapters.
-keepattributes Signature
# Retain service method parameters.
-keepclassmembernames,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}
# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

You might also need rules for OkHttp and Okio which are dependencies.

License

Copyright 2013 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.