DEV Community

Cover image for ColorPrefUtil library for Android
Ak
Ak

Posted on

ColorPrefUtil library for Android

An open source Android color preference util library.

Easily change theme and view/layout/icon/text colors or custom background drawables.

Check it on Github

  

Gradle

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

    allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

Step 2. Add the dependency

    dependencies {
            implementation 'com.github.akndmr:ColorPrefUtil:1.0.1'
    }
  

Top comments (0)