From 988cceed8a58947c7405df5ae7d3312f9167373c Mon Sep 17 00:00:00 2001 From: Maxime Roussy Date: Thu, 20 Sep 2018 07:52:00 -0600 Subject: [PATCH] Added download/install instructions for gradle and maven now that the package is available through jCenter(). --- README.md | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4625228..6ea56bc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ A Java/Android library to generate random english pronounceable words based on a collection of constructed bi-grams. -[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/maximeroussy/invitrode/license.md)![CI Build](https://travis-ci.com/maximeroussy/invitrode.svg?branch=master) - +[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/maximeroussy/invitrode/license.md)![CI Build](https://travis-ci.com/maximeroussy/invitrode.svg?branch=master)[![GitHub release](https://img.shields.io/github/release/qubyte/rubidium.svg)](https://github.com/maximeroussy/invitrode)[![Download](https://api.bintray.com/packages/maximeroussy/maven/invitrode/images/download.svg) ](https://bintray.com/maximeroussy/maven/invitrode/_latestVersion) ## Summary This is a lightweight and focused library. There's a single class with only a single public method that's accessible. @@ -23,11 +22,33 @@ Here's a simple Android app built with the library that demonstrates it's usage: This demo app is available on [Google Play](https://play.google.com/store/apps/details?id=com.maximeroussy.invitrodeandroid). +## Download/Install +The library is available through jCenter, which is included in your repositories by default on Android. For a Java +project, make sure you have jCenter added to your repositories. + +### Gradle (preferred): + +```gradle +compile 'com.maximeroussy.invitrode:invitrode:2.0.1' +``` + +### Maven: + +```xml + + com.maximeroussy.invitrode + invitrode + 2.0.1 + pom + +``` + ## Usage Using the library is extremely simple. ```java - String myNewWord = WordGenerator.newWord(int lengthOfWord); +WordGenerator generator = WordGenerator(); +String myNewWord = generator.newWord(int lengthOfWord); ``` ## Inspiration & Credits