android - How to get full Estimote SDK instead of CoreSDK -
i'm started experimenting beacons , android apps, installed estimote sdk adding compile 'com.estimote:sdk:1.0.3@aar'
dependencies of build.gradle file com.estimote.coresdk.*
, com.estimote.mgmtsdk.*
, , not com.estimote.sdk.*
, suppose fully-fledged sdk.
where wrong? how full sdk? (i have estimote cloud account -for now- single estimote assigned)
edit: coresdk new package inside estimote sdk (not old one, thought). yup, if coresdk you're set.
installation
add line build.gradle file:
dependencies { compile 'com.estimote:sdk:1.0.11' }
initializing estimote sdk
initialize estimote sdk in application class oncreate()
method:
// appid , apptoken need create new application in estimote cloud. estimotesdk.initialize(applicationcontext, appid, apptoken); // optional, debug logging. estimotesdk.enabledebuglogging(true);
for more information check readme.md
Comments
Post a Comment