ibeaconestimote

Apple AirLocation demo App ranging not shows beacons


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 specific.

Regards


Solution

  • If you simply want a Beacon Scanner and transmission tool for testing, just download Beacon Scope for iOS.

    The problem with AirLocate is that it was written for iOS7, and in iOS8, the permissions model for iBeacons and other location operations has changed. In order to get the program to work on iOS 8 when compiled from XCode 6, you need to add code that requests permission in your AppDelegate. Like this:

    if([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) {
        [self.locationManager requestAlwaysAuthorization];
    }
    

    This will prompt the user to authorize location operations including beacons. You also need to edit the info.plist for the app, and add a new string key called NSLocationAlwaysUsageDescription with a value like "This app needs access to location services" so the OS can prompt the user for this permission.

    After you run your app, you can check in settings to see if this permission has been granted properly.