estimote

iOS 13 - Estimote SDK - Beacon ranging

耗尽温柔 提交于 2019-12-11 18:48:53
问题 I've encountered problem with beacon ranging in iOS 13 Ranging Nearable stickers stop working self.nearableManager.startRanging(forIdentifier: nearableIdentifier) Nothing happens in delegate method: func nearableManager(_ manager: ESTNearableManager, didRangeNearable nearable: ESTNearable) { } UPDATE Error found: Ranging nearables failed with error: Error Domain=com.estimote.nearables Code=301 "Blueooth is not powerd on." UserInfo={NSLocalizedDescription=Blueooth is not powerd on.} When I use

Android Estimote Region Monitoring

*爱你&永不变心* 提交于 2019-12-11 16:17:26
问题 I am trying to add the Estimote SDK into my Android app. I'm getting pretty close, but I'm having some trouble monitoring for a region. I am following the Estimote Android SDK Guide on GitHub at https://github.com/Estimote/Android-SDK. For some reason, the onEnteredRegion and onExitedRegion methods are not firing at all. I'm would like them to trigger any time the app sees an Estimote beacon. Thanks! Here is the code I have so far. Nothing too complicated: public class MainActivity extends

How to debug iBeacons and Passbook

℡╲_俬逩灬. 提交于 2019-12-11 13:23:44
问题 I have a pass (which eveyrthing works on, pushs, registrations, pull to refresh, locations, etc) that I've created a Beacons array on. It has a dictionary with a UUID, message, major and minor for an Estimote iBeacon. "beacons": [ { "proximityUUID":"B9407F30-F5F8-466E-AFF9-25556B57FE6D", "major":5723, "minor":49600, "relevantText":"Welcome to goldstar" } ], I can see the iBeacon in the Estimote app, but I get no message on the lock screen for my Passbook. Is there a trick to this? Are there

How to start ranging without UUID using estimote beacon android?

安稳与你 提交于 2019-12-10 17:19:18
问题 I am making an android application on beacon in this app I want to find estimote beacon. So I want to know that how to start ranging beacon without uuid and how to search estimote beacon. I want to find uuid of Estimote. If anybody knows please help me out with this. 回答1: All Estimote beacons share the same proximity UUID unless changed. If you use Estimote Android SDK, then default proximity UUID is declared in com.estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID ( B9407F30-F5F8

How to add more than one beacon in a single region?

こ雲淡風輕ζ 提交于 2019-12-10 16:39:00
问题 According to Estimote: There is almost no limit to how many beacons can be included in a single region (technically, it’s over 4 billion). How do we add more than one beacon in one single region for monitoring? We create a region like this: UUID ESTIMOTE_PROXIMITY_UUID = UUID.fromString("B9407F30-F5F8-4568-AFF9-25556B57FE6D"); Region ALL_ESTIMOTE_BEACONS = new Region("regionId", ESTIMOTE_PROXIMITY_UUID, null, null); 回答1: From an Estimote community manager: If a region is defined by UUID or

Apple AirLocation demo App ranging not shows beacons

最后都变了- 提交于 2019-12-08 18:49:15
问题 I have3 Estimote beacons that can be seen with the App store Estimate App. Now I am trying to run the Apple demo app AirLocation AirLocate I have changed the UUID in the APLDefaults.m file to the default Estimote UUID _supportedProximityUUIDs = @[[[NSUUID alloc] initWithUUIDString:@"B9407F30-F5F8-466E-AFF9-25556B57FE6D"]]; I have enabled the Region to start startMonitoringForRegion as this stackoverflow says. But they are not showing up, have you seen this ? Or am I missing some Estimate

Estimote SDK for Ecilipse

旧巷老猫 提交于 2019-12-08 09:43:55
问题 I am very beginner for this Estimote Beacons i just tried to Convert Estimote Demo Android Studio Project into Eclipse IDE. but I'm getting pretty close, but I'm having some trouble on Library file. I am following the Estimote Android SDK Guide on GitHub at https://github.com/Estimote/Android-SDK. I just want to create demo app for Estimote Notification. Logcat Error : java.lang.NoClassDefFoundError: com.estimote.sdk.EstimoteSDK This is the line its indicate : EstimoteSDK.initialize(this,

How declare Estimote array for many beacons

让人想犯罪 __ 提交于 2019-12-08 09:03:17
问题 I see this question Estimote: detecting multiple beacons with ESTBeaconRegion and startRangingBeaconsInRegion? I try that answer provided but when I made three regions (eg: from that sample code beacon1Region, beacon2Region, beacon3Region) and include that "EstimoteSampleRegion" for each (eg: EstimoteSampleRegion1, EstimoteSampleRegion2, EstimoteSampleRegion3) I can only get first beacon as result (in index 0) when I startRangingBeaconsInRegion. How can I make this to work? should I list that

NotificationManager Error Android Studio

杀马特。学长 韩版系。学妹 提交于 2019-12-08 02:10:40
问题 I have write a code to have pop-up Notification when in range of Beacon. my code for notification like this: private void showNotification(String message){ Log.d("Hay8","DCM8"); Intent intent = new Intent(context, MainActivity.class); Log.d("Hay9","DCM9"); PendingIntent pendingIntent = PendingIntent.getActivity(context,0,intent,PendingIntent.FLAG_UPDATE_CURRENT); Log.d("Hay10","DCM10"); NotificationCompat.Builder builder = new NotificationCompat.Builder(context,"default") .setSmallIcon

Local Notification When didEnterRegion?

大兔子大兔子 提交于 2019-12-07 17:24:51
问题 I have the following code which work perfect when app terminated. -(void)beaconManager:(id)manager didEnterRegion:(CLBeaconRegion *)region{ UILocalNotification *notification = [UILocalNotification new]; notification.alertBody = @"TEST NOTIFICATION"; notification.soundName = UILocalNotificationDefaultSoundName; [[UIApplication sharedApplication] presentLocalNotificationNow:notification]; } But When I do the following: -(void) createTestNotification { UILocalNotification *notification =