mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
15 lines
282 B
Java
15 lines
282 B
Java
package org.briarproject.api.plugins;
|
|
|
|
import org.briarproject.api.TransportId;
|
|
|
|
public interface BluetoothConstants {
|
|
|
|
TransportId ID = new TransportId("org.briarproject.bramble.bluetooth");
|
|
|
|
int UUID_BYTES = 16;
|
|
|
|
String PROP_ADDRESS = "address";
|
|
String PROP_UUID = "uuid";
|
|
|
|
}
|