Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/unevensoftware/liz

Liz is an Android theme library which helos devs easily make their app customizable from the user.
https://github.com/unevensoftware/liz

android android-library help-wanted material-design theme

Last synced: 3 months ago
JSON representation

Liz is an Android theme library which helos devs easily make their app customizable from the user.

Awesome Lists containing this project

README

        

# Liz
[![](https://jitpack.io/v/com.github.HoraApps/Liz.svg)](https://jitpack.io/#com.github.HoraApps/Liz)

Add support to themes in your app.

Usage example [LeafPic](https://github.com/HoraApps/LeafPic)

## Setup:

### Gradle Dependency:

*Liz* is available on [**jitpack.io**](https://jitpack.io/#com.github.HoraApps/Liz).

Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
```gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```

Add this in your module `build.gradle` file:
```gradle

dependencies {
implementation 'com.github.HoraApps:Liz:-SNAPSHOT'
}
```