Hi All,
I'm developing a bluetooth app.
My doubt is:
Can my app to know if the devices scanned has a certain feature available like Camera or SD card?
Thanks!
Hi All,
I'm developing a bluetooth app.
My doubt is:
Can my app to know if the devices scanned has a certain feature available like Camera or SD card?
Thanks!
Hello,
You are trying to get scanned device features in your handset. This is not possible through direct api.
But,
you can do client/server application where client can ask for server certain feature are abailable or not on scanned device?
Whenever client sent a request let say "camera". Server device can check for request like
Manager.getSupportedProtocols() to see "capture" protocol is supported or not?
Same for SD card .. Check Connector.open() must throw an exception if it not available.
Something like above you need to develop a logic.
Regards,
Dinanath
It's a matter of attitude.
Thanks Dinanath!
I will do a client/server as you said.
Regards,
Bergmann