Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 844 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 844 Bytes

fuel-livedata

The LiveData extension package for Fuel.

Installation

You can download and install fuel-livedata with Maven and Gradle. The livedata package has the following dependencies:

implementation 'com.github.kittinunf.fuel:fuel:<latest-version>'
implementation 'com.github.kittinunf.fuel:fuel-livedata:<latest-version>'

Usage

See FuelLiveData.kt

LiveData Response

Fuel.get("www.example.com/get")
    .liveDataResponse()
    .observe(this) { /* do something */ }