Back to project page LibGeppa.
The source code is released under:
Apache License
If you think the Android project LibGeppa listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.cattaka.libgeppa.bluetooth; // w w w . j a v a2 s. c o m import java.io.IOException; import java.util.UUID; public interface IBluetoothDevice { public String getAddress(); public String getName(); public IBluetoothSocket createRfcommSocketToServiceRecord(UUID uuid) throws IOException; }