File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
android/src/main/java/com/polidea/flutter_ble_lib/constant Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.3.1
2
+
3
+ * Fix connection timeout on iOS
4
+
1
5
## 2.3.0
2
6
3
7
* add ` BleManager.createUnsafePeripheral() ` to allow for connecting to known peripheral without launching scan first
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public interface ArgumentKey {
12
12
String IS_AUTO_CONNECT = "isAutoConnect" ;
13
13
String REQUEST_MTU = "requestMtu" ;
14
14
String REFRESH_GATT = "refreshGatt" ;
15
- String TIMEOUT_MILLIS = "timeoutMillis " ;
15
+ String TIMEOUT_MILLIS = "timeout " ;
16
16
String EMIT_CURRENT_VALUE = "emitCurrentValue" ;
17
17
18
18
String LOG_LEVEL = "logLevel" ;
Original file line number Diff line number Diff line change 10
10
NSString * const ARGUMENT_KEY_IS_AUTO_CONNECT = @" isAutoConnect" ;
11
11
NSString * const ARGUMENT_KEY_REQUEST_MTU = @" requestMtu" ;
12
12
NSString * const ARGUMENT_KEY_REFRESH_GATT = @" refreshGatt" ;
13
- NSString * const ARGUMENT_KEY_TIMEOUT_MILLIS = @" timeoutMillis " ;
13
+ NSString * const ARGUMENT_KEY_TIMEOUT_MILLIS = @" timeout " ;
14
14
NSString * const ARGUMENT_KEY_EMIT_CURRENT_VALUE = @" emitCurrentValue" ;
15
15
16
16
NSString * const ARGUMENT_KEY_LOG_LEVEL = @" logLevel" ;
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ abstract class ArgumentName {
97
97
static const String isAutoConnect = "isAutoConnect" ;
98
98
static const String requestMtu = "requestMtu" ;
99
99
static const String refreshGatt = "refreshGatt" ;
100
- static const String timeoutMillis = "timeoutMillis " ;
100
+ static const String timeoutMillis = "timeout " ;
101
101
static const String emitCurrentValue = "emitCurrentValue" ;
102
102
103
103
static const String serviceUuid = "serviceUuid" ;
You can’t perform that action at this time.
0 commit comments