polar 0.0.1 copy "polar: ^0.0.1" to clipboard
polar: ^0.0.1 copied to clipboard

outdated

Plugin wrapper for the Polar SDK

polar #

Plugin wrapper for the Polar SDK

Getting Started #

Android #

app/build.gradle:

dependencies {
    implementation 'polarofficial:polar-ble-sdk:3.1.0@aar'
    implementation 'polarofficial:polar-protobuf-release:3.1.0@aar'
}

iOS #

Podfile:

platform :ios, '12.0'

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
      config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
      config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'

      config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
        '$(inherited)',
        'PERMISSION_LOCATION=1',
      ]
    end
  end
end

Info.plist:

<key>NSBluetoothAlwaysUsageDescription</key>
<string>Used to connect to Polar devices</string>

Use it #

final polar = Polar();
polar.batteryStream.listen((event) => setState(() => battery = event));
polar.hrStream.listen((event) => setState(() => hr = event));
polar.start('1C709B20');