A library provides you to use powerful DroiBaaS cloud service from your Android app. DroiCore SDK is foundation library of DroiBaaS. For more information, see DroiBaaS.
The easiest way to use DroiCoreSDK is with gradle. Add the following lines to your build.gradle
.
-
Add DroiCoreSDK maven repository
repositories { mavenCentral() maven { url "https://github.com/DroiBaaS/DroiBaaS-SDK-Android/raw/master/" } }
-
Add dependencies
compile 'com.squareup.okhttp3:okhttp:3.0.1' compile 'com.droi.sdk:droi-baas-android-sdk:+'
-
Add
ApplicationID
,PlatformID
andChannelID
into your AndroidManifest.xml
- Before using any DroiCoreSDK, please call
Core.initialize(this);
first.