Hi,
I'm developing an application which serves as bluetooth server for a bluetooth external device (the communication is started by the external device). This external device request from the bluetooth service I'm deploying a concrete service name ("PWAccessP"), so I initiate the serversocket by the following instruction:
serversocket = Activa.myBluetoothAdapter.listenUsingRfcommWithServiceRecord("PWAccessP", UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));
But when with a test application which search the bluetooth services offered by my phone, I get the following log:
search services on 38E7D82E98F8 HTC Desire
service Unknown found btspp://38E7D82E98F8:22;authenticate=false;encrypt=false;master=false
With "Unknown" as service name, indicating that the name of the offered service is unknown. I've checked this service is the one I'm deploying.
The phone I'm working is a HTC Desire.
Does anybody know what can be the problem?
Thanks in advance.