The Android SDK is delivered via maven repository.
Add the Jitpack repositoty in your project level build.grade
at the end of repositories:
allprojects {repositories {...maven { url 'https://jitpack.io' }}}
Add the dependency in your module level build.grade
:
implementation 'com.github.EkoCommunications.EkoMessagingSDKAndroid:eko-sdk:x.y.z'
​​​​
Navigate to your build.grade
file at the project level and add the following maven paths:
allprojects {repositories {jcenter()google()maven { url 'https://dl.bintray.com/eko/sdk' }}}
In your app (module) level build.grade
, add the following dependency:
implementation 'com.ekoapp.ekosdk:ekosdk:x.y.z'
Replace x, y and z with the latest version number: ​​​
The open source Android sample app is hosted on Github here: