Skip navigation links

Package com.estimote.sdk.service

SDK classes for Android service that is responsible for interacting with beacons.

See: Description

Package com.estimote.sdk.service Description

SDK classes for Android service that is responsible for interacting with beacons.

Do not use those classes directly. Use BeaconManager instead.

In your AndroidManifest.xml declare service:

 <service android:name="com.estimote.sdk.service.BeaconService"
           android:exported="false"/>
 
and add needed Bluetooth permissions:
 <uses-permission android:name="android.permission.BLUETOOTH"/>
 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
 
Skip navigation links