bebosh
bebosh

Reputation: 863

How to pair Bluetooth device without confirmation

I have a Bluetooth tag called "key finder" like this image: Bluetooth tag

This tag has more apps like "iTracing" working with it. The app searches for the tag, and when found, pairs it automatically without pin code and without any confirmation!

Does SDK support that and how?

Upvotes: 1

Views: 1066

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317968

Pairing a device always requires user input. This is to prevent the case where a malicious app tries to pair with a device that may operate against the desire of the user (for example, transmitting private audio and data to it).

Bluetooth Low Energy devices (like beacons) don't require pairing, but all they do is broadcast tiny bits of data periodically. Communication with BTLE devices like this are supported in KitKat and later as long as the app has permission to do so.

Upvotes: 2

Related Questions