Skip to content

Commit

Permalink
release of v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Nov 17, 2023
1 parent f08beab commit 68c715c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.3
- [Android] Fixed requestPermission not working correctly.

## 1.2.2
- [Android] Fixed serviceUuid not working. (thanks @Shik1266 !)
- [Android] Updated compileSdk to 34.
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class FlutterBlePeripheralExampleState
builder:
(BuildContext context, AsyncSnapshot<dynamic> snapshot) {
return Text(
'State: ${describeEnum(snapshot.data as PeripheralState)}',
'State: ${(snapshot.data as PeripheralState).name}',
);
},
),
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Demonstrates how to use the flutter_ble_peripheral plugin.
publish_to: 'none'

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: '>=2.15.0 <3.0.0'
flutter: ">=1.10.0"

dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_ble_peripheral
description: This plugin enables a device to be set into peripheral mode, and advertise custom
services and characteristics.
version: 1.2.2
version: 1.2.3
homepage: https://github.com/juliansteenbakker/flutter_ble_peripheral

environment:
Expand Down

0 comments on commit 68c715c

Please sign in to comment.