Android generic settings library to handle all kinds of items in your application. (Equivalent to Native settings preference)
As an android developer for 6 years, there has been many times I’ve started a new personal or work project and had to redo the Settings Activity over and over again. I’ve had enough; I’ve wasted too much time in my life doing the same code every time I start a new project. So I’ve decided to develop a way that creates the settings screen quickly and efficiently.
// In you top level project build.gradle file
repositories {
mavenCentral() // jcenter() is also working.
}
// In you application module build.gradle file dependencies { ... ... compile 'com.github.udioshi85:libGenericSettings:1.3.1' }
* Via Maven
````xml
<dependency>
<groupId>com.github.udioshi85</groupId>
<artifactId>libGenericSettings</artifactId>
<version>1.3.1</version>
<type>pom</type>
</dependency>
I’ve created a sample app which covers all the supported types/views