diff --git a/README.md b/README.md index 900e980d0..ecc299572 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![](https://jitpack.io/v/ytai/ioio.svg)](https://jitpack.io/#ytai/ioio) IOIO Logo The IOIO is a board that provides a host machine the capability of interfacing with external hardware over a variety of commonly used protocols. The original IOIO board has been specifically designed to work with Android devices. The newer IOIO-OTG ("on the go") boards work with both Android devices and PC's (details [here](http://ytai-mer.blogspot.com/2012/05/second-generation-of-ioio-is-in-works.html)). @@ -19,3 +20,24 @@ You can purchase a IOIO-OTG board online from: - [CuteDigi](http://www.cutedigi.com/development-tools/pic/ioio-otg-for-android.html). - [AliExpress](http://www.aliexpress.com/store/product/Free-Shipping-IOIO-OTG/600038_781363573.html). +## Usage in Gradle + +in top `build.gradle` + + allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } + } + +and in module `build.gradle` + + dependencies { + implementation "com.github.ytai.ioio:IOIOLibAndroidBluetooth:$LATEST" + implementation "com.github.ytai.ioio:IOIOLibAndroidAccessory:$LATEST" + implementation "com.github.ytai.ioio:IOIOLibAndroidDevice:$LATEST" + } + +Please see details here https://jitpack.io/#ytai/ioio +