From ad4bb6d797794a72ed3753f4f65b8cc14228cd05 Mon Sep 17 00:00:00 2001 From: Dean Wild Date: Wed, 5 Aug 2015 17:30:58 +0100 Subject: [PATCH] Update README.md --- README.md | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 8ab51d2..55d42da 100644 --- a/README.md +++ b/README.md @@ -48,25 +48,22 @@ Then in your code: flowTextView.setText(html); ``` -Download +Gradle -------- -If you're still using Eclipse then grab the [latest JAR version][2] +Add jitpack to your your build.gradle at the end of repositories: -Otherwise you can grab it using Maven: - -```xml - - uk.co.deanwild - flowtextview - 2.0.2 - aar - +```groovy +repositories { + // ... + maven { url "https://jitpack.io" } + } ``` -or Gradle: + +Add the dependency: ```groovy -compile 'uk.co.deanwild:flowtextview:2.0.2@aar' +compile 'com.github.deano2390:FlowTextView:2.0.3' ```