posix_sdk

Creator: coderz1093

Last updated:

0 purchases

posix_sdk Image
posix_sdk Images
Add to Cart

Description:

posix sdk

Introduction #
Posix SDK is a bluetooth plugin for Flutter, a new app SDK to help developers build modern multi-platform apps.
Sample app Github link.
Cross-Platform Bluetooth LE #
Posix SDK aims to offer the most from both platforms (iOS and Android).
Using the Posix SDK instance, you can scan for and check LED to nearby devices (BluetoothDevice).
Usage #
Obtain an instance #
PosixSdk posixSdk = PosixSdk.instance;
copied to clipboard
Check LED for devices #
// Start scanning
posixSdk.connect(device: result.device);
copied to clipboard
Getting Started #
Change the minSdkVersion for Android #
Flutter_blue is compatible only from version 19 of Android SDK so you should change this in android/app/build.gradle:
Android {
defaultConfig {
minSdkVersion: 19
copied to clipboard
Add permissions for Bluetooth #
We need to add the permission to use Bluetooth and access location:
Android
In the android/app/src/main/AndroidManifest.xml let’s add:
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application
copied to clipboard
IOS
In the ios/Runner/Info.plist let’s add:
<dict>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>Need BLE permission</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>Need BLE permission</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Need Location permission</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Need Location permission</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Need Location permission</string>
copied to clipboard
For location permissions on iOS see more at: https://developer.apple.com/documentation/corelocation/requesting_authorization_for_location_services

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.