pubspec.yaml
1 name: ble_peripheral 2 description: Ble peripheral is a Flutter plugin that allows you to use your device as Bluetooth Low Energy (BLE) peripheral 3 version: 2.4.0 4 homepage: https://github.com/rohitsangwan01/ble_peripheral 5 repository: https://github.com/rohitsangwan01/ble_peripheral 6 issue_tracker: https://github.com/rohitsangwan01/ble_peripheral/issues 7 8 environment: 9 sdk: ">=3.2.0 <4.0.0" 10 flutter: ">=3.3.0" 11 12 dependencies: 13 flutter: 14 sdk: flutter 15 16 dev_dependencies: 17 flutter_test: 18 sdk: flutter 19 flutter_lints: ^2.0.0 20 pigeon: ^17.3.0 21 22 flutter: 23 plugin: 24 platforms: 25 android: 26 package: com.rohit.ble_peripheral 27 pluginClass: BlePeripheralPlugin 28 ios: 29 pluginClass: BlePeripheralPlugin 30 sharedDarwinSource: true 31 macos: 32 pluginClass: BlePeripheralPlugin 33 sharedDarwinSource: true 34 windows: 35 pluginClass: BlePeripheralPluginCApi