From 3e2dbc41fa921bdb5d55f8b8fef9cf45ae7a7af0 Mon Sep 17 00:00:00 2001 From: Meknaj <34084726+Meknaj@users.noreply.github.com> Date: Wed, 28 Jul 2021 16:58:41 +0530 Subject: [PATCH] Update README.MD --- README.MD | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.MD b/README.MD index a1e14cc..3ea2085 100644 --- a/README.MD +++ b/README.MD @@ -4,7 +4,7 @@ # Diffre *pronounced - Differ* -Diffre is an application that shows how to change text color based on background. This can be used to create progress bars overlaid by text, custom animations involving complex shapes, and much more. It works on the simple principle of color difference: The colour of the text is subtracted from that of the background to maintain readability even as the background is changed dynamically. The code of this library is modular and easily extensible as per requirement. +Diffre demonstrates how to change text color based on background. This can be used to create progress bars overlaid by text, custom animations involving complex shapes, and much more. It works on the simple principle of color difference: The colour of the text is subtracted from that of the background to maintain readability even as the background is changed dynamically. The code of this library is modular and easily extensible as per requirement. # Source @@ -34,6 +34,15 @@ https://github.com/rakshakhegde/Diffre } ``` +3. For using Diffre from a remote repository in separate application, add the below dependencies in entry/build.gradle file. +``` + dependencies { + implementation 'dev.applibgroup:diffre:1.0.0' + testCompile 'junit:junit:4.12' + } + +``` + ## Usage Refer to the [ability_main.xml](entry/src/main/resources/base/layout/ability_main.xml) file in the entry sample app.