I am using android.bluetooth.le api to scan bluetooth LE devices around me
@Override
public void onLeScan(final BluetoothDevice device, final int rssi,
byte[] scanRecord) { ... }
and i'm using this callback method to notify me if some results are found. Now the problem is this, that i am unable to find the method which will give the url which a beacon will transmitting.
Note : i am trying to do it with android.bluetooth.le, but if you've something else in your mind or any 3rd party api that could do this job, i will be happy to listen to you.
Thanks in advance.