Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is possible to create a vb.net or c# app to send notification to mobile using bluetooth without any mobile app?

create a server app in vb.net or C#. It'll run on system with turned on bluetooth. If any mobile with turned on bluetooth devices will comes within the system bluetooth signal, it'll send notification automatically. Is this possible to create?

like image 379
Satheesh Natarajan Avatar asked Dec 20 '25 03:12

Satheesh Natarajan


1 Answers

No. It would not work.

APNS

https://developer.apple.com/library/IOs/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

enter image description here

GCM

https://developer.android.com/google/gcm/gcm.html

enter image description here

Push notifications requires to be pushed from Apple's or Google's notifications infrastructures.

For iOS there's local notifications that your app can trigger based on your conditions, but from my knowledge when the Bluetooth connects, your application has to be running and listening for bluetooth changes.

If your app goes into background and got recycled, it would not be able to know when the bluetooth is connected, let alone run your logic to send the notifications.

like image 137
Lee Gary Avatar answered Dec 21 '25 17:12

Lee Gary