pedometer 0.0.3 pedometer: ^0.0.3 copied to clipboard
A pedometer plugin for retrieving the steps taken today. Works for both iOS and Android and is written in Swift/Java.
pedometer #
This plugin allows for conitnuous step count using the built-in pedometer sensor API's of iOS and Android devices.
Usage #
To use this plugin, add pedometer
as a dependency in your pubspec.yaml file.
Example #
import 'dart:async';
import 'package:pedometer/pedometer.dart';
class someClass {
StreamSubscription<int> _subscription;
FlutterPedometer pedometer;
void someFunction() async {
// ...
pedometer = new FlutterPedometer();
_subscription = pedometer.stepCountStream.listen(_onData,
onError: _onError, onDone: _onDone, cancelOnError: true);
}
void _onData(int stepCountValue) async {
// Do something with the stepCountValue
}
void _onDone() {
// Do something when done collecting
}
void _onError(error) {
// Handle the error
}
}
Configuring XCode for usage on iOS #
It seems that users of this plug-in will have to manually open XCode and configure a few settings manually, mostly pertaining to privacy settings and permissions due to the application collecting the user's movement data.
For usage on Android it seems there are no problems with permissions.
Flutter Errors #
Could not build the precompiled application for the device.
** BUILD FAILED **
Xcode's output:
↳
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
fatal error: lipo: -extract armv7 specified but fat file: /Users/thomasnilsson/Desktop/testingoutmyplugin/build/ios/Debug-iphoneos/Runner.app/Frameworks/location.framework/location does not contain that architecture
Failed to extract armv7 for /Users/thomasnilsson/Desktop/testingoutmyplugin/build/ios/Debug-iphoneos/Runner.app/Frameworks/location.framework/location. Running lipo -info:
Architectures in the fat file: /Users/thomasnilsson/Desktop/testingoutmyplugin/build/ios/Debug-iphoneos/Runner.app/Frameworks/location.framework/location are: arm64
Error launching application on Thomas’s iPhone.
Fix: Enable @objc inference #
Errors only visible when running through XCode #
Fix: Configure plist and capabilities #
Step 1: Open XCode
Open the XCode project located at <your_project>/iOS/Runner.xcodeproj