-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,35 @@ | ||
# ColorPalette | ||
Customizable Color Palette Library | ||
|
||
You can use this library to add customizable color palette to your Android application, which comes with an attractive sets of colors to be used for the palette, in addition to a nice UI for displaying the color palette. | ||
|
||
How to include the Library in your application: | ||
|
||
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 | ||
|
||
for Gradle: | ||
|
||
dependencies { | ||
implementation 'com.github.MuhammedRefaat:ColorPalette:1.0' | ||
} | ||
|
||
for Maven: | ||
|
||
<dependency> | ||
<groupId>com.github.MuhammedRefaat</groupId> | ||
<artifactId>ColorPalette</artifactId> | ||
<version>1.0</version> | ||
</dependency> | ||
|
||
|