Skip to content

Commit

Permalink
incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk committed Apr 27, 2020
1 parent 0e6932c commit 7e62639
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package dev.bluefalcon.services

import android.bluetooth.BluetoothGattCharacteristic
import dev.bluefalcon.*
import java.util.*
import android.os.Build
Expand Down Expand Up @@ -52,7 +53,7 @@ class BluetoothService: BlueFalconDelegate {
bluetoothCharacteristic: BluetoothCharacteristic,
value: String
) {
blueFalcon.writeCharacteristic(bluetoothPeripheral, bluetoothCharacteristic, value)
blueFalcon.writeCharacteristic(bluetoothPeripheral, bluetoothCharacteristic, value, BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT)
}

fun readDescriptor(
Expand Down
3 changes: 2 additions & 1 deletion examples/ios/Blue-Falcon/Services/BluetoothService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ class BluetoothService {
blueFalcon.writeCharacteristic(
bluetoothPeripheral: bluetoothPeripheral,
bluetoothCharacteristic: BluetoothCharacteristic(characteristic: bluetoothCharacteristic),
value: value
value: value,
writeType: nil
)
}

Expand Down
2 changes: 1 addition & 1 deletion examples/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 59029ea86acb95fb259b30cb095d1065ca20130e

COCOAPODS: 1.7.1
COCOAPODS: 1.9.1
3 changes: 2 additions & 1 deletion examples/macOS/Blue-Falcon/Services/BluetoothService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ class BluetoothService {
blueFalcon.writeCharacteristic(
bluetoothPeripheral: bluetoothPeripheral,
bluetoothCharacteristic: BluetoothCharacteristic(characteristic: bluetoothCharacteristic),
value: value
value: value,
writeType: nil
)
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ org.gradle.configureondemand = false
android.useAndroidX=true
android.enableJetifier=true

version=0.6.4
version=0.6.5
group=dev.bluefalcon
libraryName=blue-falcon
bintray_plugin_version=1.8.4
Expand Down

0 comments on commit 7e62639

Please sign in to comment.