A library to showcase compose components and edit theme at run-time
- Add jitpack as a source to your project level
build.gradle
buildScript {
..
repositories {
..
maven{ url 'https://jitpack.io' }
}
}- Add Biblioteca as a dependency in the
build.gradlefor the module (example::app) from where you want to launch it
dependencies {
..
implementation 'com.github.padamchopra:Biblioteca:v$biblioteca_version'
}- Replace
{$biblioteca_version}with the latest version you see in the jitpack badge. For example:
dependencies {
..
implementation 'com.github.padamchopra:Biblioteca:v0.1'
}- Refer to the
:appmodule of this project to view a sample implementation