From 09d723b4431e5b58cd2e4c48252bd8efc6f92d78 Mon Sep 17 00:00:00 2001 From: Gilbert Kimutai Date: Sun, 17 Feb 2019 13:13:03 +0300 Subject: [PATCH] Added Gradle and maven dependencies --- README.md | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 828220d..9a2ffd4 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,43 @@ Built-based on the documentation: http://woocommerce.github.io/woocommerce-rest- ## Installation ### Maven dependency: +Step 1. Add the JitPack repository to your build file + ```xml -TODO + + + jitpack.io + https://jitpack.io + + +``` + +Step 2. Add the dependency +```xml + + com.github.gilokimu + woodroid + 0.1.0 + ``` ### Gradle dependency: +Step 1. Add the JitPack repository to your build file + ```xml -TODO + allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } + } +``` + +Step 2. Add the dependency +```xml + dependencies { + implementation 'com.github.gilokimu:woodroid:0.1.0' + } ``` ## Getting started