IOS: Available actions after iBeacon detection
NickName:Vincent D Ask DateTime:2015-06-11T09:06:28

IOS: Available actions after iBeacon detection

If a locked iPhone detects an iBeacon signal registered with my app, can my app, during its ~5-10sec wake up time:

  1. contact my web server to send some data?
  2. send a predefined text message?
  3. access the iPhone's current GPS location?

Copyright Notice:Content Author:「Vincent D」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/30769901/ios-available-actions-after-ibeacon-detection

Answers
davidgyoung 2015-06-11T13:15:40

Yes, I can confirm you can contact a web server, and access fine location (GPS) as I commonly do this during the window you mention. \n\nI have less experience sending SMS text messages on iOS, but my basic understanding is that you cannot send SMS messages at all in an automated fashion on iOS, you can only present the screen to the user to initiate the send. I do not believe you can do this when your app is not in the foreground.\n\nYou can, however, send local notifications that appear on the lock screen.",


More about “IOS: Available actions after iBeacon detection” related questions

IOS: Available actions after iBeacon detection

If a locked iPhone detects an iBeacon signal registered with my app, can my app, during its ~5-10sec wake up time: contact my web server to send some data? send a predefined text message? access the

Show Detail

detecting non-iBeacon beacons on iOS?

I'm currently working on a project which has a part that relates to beacons, as I saw and read different articles and websites it's not recommended to use non-ibeacon for ios to be detectable in te...

Show Detail

iBeacon detection not consistent

When I'm testing my iBeacon enabled iOS application for different scenarios with iOS 9, I've found that it doesn't discover the iBeacon for a quite a while after I toggle on Bluetooth. Scenario is...

Show Detail

Implementation of iBeacon technology in Android

I want to develop a App which recognizes the beacon just like the iBeacon technology that Apple has created for iOS apps. Does Googles Android has similar technology like the Apple's iBeacon or Is

Show Detail

iOS CoreBluetooth / iBeacon: Advertise an iBeacon and a peripheral service concurrently

I'm writing an application for iOS that requires that the application advertise both an iOS iBeacon as well as advertise peripheral service concurrently. It's necessary that the service is advertised

Show Detail

Reading iBeacon measuredPower in iOS

According to the ibeacon protocol "measuredPower" is supposed to be sent by every ibeacon in its advertising packet as the last value after uuid, major & minor values. However, the iOS coreloca...

Show Detail

Difference between Bluetooth and iBeacon protocols in iOS

I am integrating an iOS app with a Bluetooth chip. I am trying to understand the differences between a constant BLE connection and an iBeacon notifications in terms of the protocol. So I am able to

Show Detail

Are iBeacon major/minor values available when monitoring a region?

I am trying to build a test app that would detect a given set of iBeacon deployed in a few physical locations. The detection should be done in the background, and make a call to a server following a

Show Detail

Detecting IBeacon in flutter ios side

In flutter developing I need IBeacon detection and scanning it in all sides. In android I do it well and there is no issue. Now in ios side, i wrote my own plugin with using CoreLocation library and

Show Detail

When an iBeacon wakes an iOS app, will the WiFi radio power up?

Scenario: Backgrounded iOS app monitoring an iBeacon region. The device's WiFi radio was powered down by iOS (30 minutes of inactivity). When the device enters the region of the the iBeacon and t...

Show Detail