Activity recognition plugin for Android and iOS. Only working while App is running (= not terminated by the user or OS).
Check out the example
directory for a sample app using activity recognition.
Add permission to your Android Manifest:
<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" />
Add the plugin service:
<service android:name="at.resiverbindet.activityrecognition.activity.ActivityRecognizedService" />
An iOS app linked on or after iOS 10.0 must include usage description keys in its Info.plist file
for the types of data it needs. Failure to include these keys will cause the app to crash.
To access motion and fitness data specifically, it must include NSMotionUsageDescription
.
import 'package:activity_recognition/activity_recognition.dart';
ActivityRecognition.activityUpdates()
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.