From e5bd8e8deb2d4f28416892cfb001bebf7acf8dbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sinan=20G=C3=BCne=C5=9F?= Date: Mon, 6 Dec 2021 14:03:14 +0300 Subject: [PATCH] Create README.md Created Readme file on how to add a dependency. --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9cfcbdc --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +### How to add + +Add it in your root build.gradle at the end of repositories: + +``` +allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } +} +``` +Add the dependency + +``` +dependencies { + implementation 'com.github.komputing:KBase58:0.4' +} +```