If you are using Android Studio, you just need to do the following to start using the SDK.
- Create an Android Studio project and set up build.gradle to download and use the SkylinkSDK for Android
- Add the following to your app's build.gradle under the Android tag:
repositories { maven { url = 'http://archiva.temasys.com.sg/repository/internal' } } compileOptions { sourceCompatibility 1.8 targetCompatibility 1.8 } dependencies { compile(group: 'sg.com.temasys.skylink.sdk', name: 'skylink_sdk', version: '0.11.1-RELEASE', ext: 'aar'){ transitive = true } }
You're ready to go!
For more information on the SDK usage, please refer to our Sample App or to our Getting Started User Guide.