Back to project page GlassToPhoneBluetooth.
The source code is released under:
MIT License
If you think the Android project GlassToPhoneBluetooth 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 ktlab.lib.connection.bluetooth; /*w ww .ja v a2 s.co m*/ import java.nio.ByteOrder; import java.util.UUID; import android.os.Message; import ktlab.lib.connection.Connection; import ktlab.lib.connection.ConnectionCallback; public abstract class BluetoothConnection extends Connection { // SPP UUID protected static final UUID SERVICE_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); public BluetoothConnection(ConnectionCallback cb, boolean canQueueing) { super(cb, canQueueing); } public BluetoothConnection(ConnectionCallback cb, boolean canQueueing, ByteOrder order) { super(cb, canQueueing, order); } @Override public void handleMessage(Message msg) { super.handleMessage(msg); } }