aboutsummaryrefslogtreecommitdiff
path: root/trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java
diff options
context:
space:
mode:
Diffstat (limited to 'trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java')
-rw-r--r--trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java b/trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java
new file mode 100644
index 0000000..a2a2943
--- /dev/null
+++ b/trygvis-io-bt-stubs/src/main/java/android/bluetooth/BluetoothGattCallback.java
@@ -0,0 +1,31 @@
+package android.bluetooth;
+
+public class BluetoothGattCallback {
+
+ public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
+ }
+
+ public void onServicesDiscovered(BluetoothGatt gatt, int status) {
+ }
+
+ public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
+ }
+
+ public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
+ }
+
+ public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
+ }
+
+ public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
+ }
+
+ public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
+ }
+
+ public void onReliableWriteCompleted(BluetoothGatt gatt, int status) {
+ }
+
+ public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
+ }
+}