From d65b7b48b26c6b2a5db7438bbc41b678e4d155a4 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Thu, 4 Oct 2018 23:04:18 +0200 Subject: [PATCH] Fixed openrndr version --- README.md | 16 +++++++++++++++- build.gradle | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6cfcd8c..a0a6dee6 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,20 @@ A growing library of assorted data structures, algorithms and utilities. - orx-kdtree - kd-tree implementation for fast nearest point searches - ## Usage +Easiest way to add ORX to your project is through the use of Jitpack + +Add repository: +``` +repositories { + maven { url 'https://jitpack.io' } +} +``` + +Add dependency: +``` +dependencies { + compile 'com.github.openrndr:orx:v0.0.1' +} +``` \ No newline at end of file diff --git a/build.gradle b/build.gradle index c9d6c149..0518509e 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ repositories { } ext { - openrndrVersion = "0.4.0-SNAPSHOT" + openrndrVersion = "0.3.26" }