Flutter_blue: MacOS is not supported by Flutter Blue

Created on 11 Dec 2019  路  3Comments  路  Source: pauldemarco/flutter_blue

With Flutter 1.12 adding macos target as beta, it would be great to have macos support in flutter blue.

enhancement federated-plugin macOS

Most helpful comment

I tried this quickly and this is actually easy to add.
The whole iOS code can be reused to run on macOS

Instructions:

  • Copy/paste the ios folder in a macos folder
  • In FlutterBluePlugin, change the import <Flutter/Flutter.h> to <FlutterMacOS/FlutterMacOS.h>
  • Change the flutter section in the pubspec.yaml to:
flutter:
  plugin:
    platforms:
      android:
        package: com.pauldemarco.flutterblue
        pluginClass: FlutterBluePlugin
      ios:
        pluginClass: FlutterBluePlugin
      macos:
        pluginClass: FlutterBluePlugin
  • In the target application project, open the macos folder in XCode and in Runner > Signing & Capabilities > App Sandbox > check Bluetooth.

All 3 comments

I tried this quickly and this is actually easy to add.
The whole iOS code can be reused to run on macOS

Instructions:

  • Copy/paste the ios folder in a macos folder
  • In FlutterBluePlugin, change the import <Flutter/Flutter.h> to <FlutterMacOS/FlutterMacOS.h>
  • Change the flutter section in the pubspec.yaml to:
flutter:
  plugin:
    platforms:
      android:
        package: com.pauldemarco.flutterblue
        pluginClass: FlutterBluePlugin
      ios:
        pluginClass: FlutterBluePlugin
      macos:
        pluginClass: FlutterBluePlugin
  • In the target application project, open the macos folder in XCode and in Runner > Signing & Capabilities > App Sandbox > check Bluetooth.

can we please have this as a PR?

Since macOS will be able to run iOS apps coming this Fall I'm not sure if it's actually needed anymore...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

saulopef picture saulopef  路  4Comments

navaronbracke picture navaronbracke  路  6Comments

pauldemarco picture pauldemarco  路  4Comments

ekuleshov picture ekuleshov  路  4Comments

coduy96 picture coduy96  路  5Comments