> For the complete documentation index, see [llms.txt](https://fuel.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fuel.gitbook.io/documentation/support/fuel-livedata.md).

# AAC LiveData

The `LiveData` extension package for [`Fuel`](broken://pages/-LS8kbBJjT2_gwYkij4g).

## Installation

You can [download](https://bintray.com/kittinunf/maven/Fuel-Android/_latestVersion) and install `fuel-livedata` with `Maven` and `Gradle`. The livedata package has the following dependencies:

* [`Fuel`](/documentation/core/fuel.md)
* [AndroidX Livedata](https://developer.android.com/topic/libraries/architecture/livedata.html): 2.0.0

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

## Usage

See `FuelLiveData.kt`

### LiveData Response

* Fuel supports [LiveData](https://developer.android.com/topic/libraries/architecture/livedata.html)

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