93 questions
1
vote
0
answers
49
views
onSensorChanged() isn't work only pedometer
The intent of the code I created is that whenever the data from the Pedometer changes, the data is passed in real-time via the onSensorChanged() function.
However, even though data is being collected ...
1
vote
0
answers
175
views
The Pedometer from expo-sensors in react native does not work in the react-native-background-actions it does not watch any new steps
call of the function came from another file and here is some details:
const options = {
taskName: 'steps counter',
taskTitle: 'Counting steps',
taskDesc: 'Track your steps in the ...
1
vote
0
answers
192
views
Pedometer package's stepCountStream, listened in a Foreground Service does not trigger onData when phone is sleeping
I'm developing a Flutter app using pedometer package to track steps of the user. I want to count steps when app is closed as well, so I used flutter_background_service package as well in order to use ...
0
votes
0
answers
128
views
How to implement pedometer functions in Android? [duplicate]
I need to implement pedometer-like functions in my Android app. I need step count, distance walked, and average walking speed. I could certainly compute average walking speed myself and I could live ...
0
votes
1
answer
480
views
Is there any way to count the stairs climbed up with a smartphone?
I am working on a delivery app that the company charges clients based on the number of stairs that the delivery agent has to climb.
It's probable that the agent cheats and collects the stair fee in ...
1
vote
0
answers
212
views
expo react native pedometer code is not working in android device
Hi am trying to create an expo react native screen with pedometer. There are no problems with my code and my device fulfills hardware reaquiremetns as well but the code is not showing footsteps. I ...
0
votes
1
answer
301
views
Example from pedometer package not working?
I have installed the blank flutter app with ONLY pedometer package :
dependencies:
pedometer: ^3.0.0
And paste this source, compiled without errors, but in-app :
Step Count not available
I ...
0
votes
1
answer
370
views
Pedometer for Expo React Native
Is there a best recent pedometer library that supports the expo react native project? I'm now using expo-sensors. however, it appears that it is not yet supported on Android. Thanks ahead of time.
...
3
votes
0
answers
416
views
Flutter schedule a task for specific time like midnight for pedometer app
I am simply developing a pedometer app with flutter backed by firebase. pedometer package is used for detecting steps but we need to update current steps to 0 at midnight.
Using workmanager and ...
0
votes
0
answers
163
views
flutter: Because pedometer depends on pedometer, version solving failed
I just create a new project and run the command "flutter pub add pedometer" in the terminal and that error occurs.how can I fix this?
0
votes
1
answer
776
views
pedometer pause and stop flutter
I'am building a simple pedometer application using flutter with pedometer package.
When I start the application, it starts constantly counting steps.
I want to have a button to start and pause the ...
0
votes
0
answers
85
views
How to keep track on date and update document in firestore ( Pedometer )?
I'm working on a personal project on a pedometer integrated with firebase but I'm not so good with date. Don't know if you can help out with this... What I'm trying to achieve will be a situation ...
0
votes
1
answer
3k
views
React native Really need to make Pedometer& Step Counter etc
I tryed a lot of packages,github repos, google fit,rn fitness etc. THere's no way to get step counts.Please help me how can I get step counts.Thank you
0
votes
0
answers
202
views
React native pedometer is not a counting
Hi everyone I'm trying to make an pedometer app. I installed theese packages.
"react-native-pedometer": "^0.0.7",
"react-native-pedometer-ios-android"//then i deleted it
&...
0
votes
1
answer
461
views
Pedometer Flutter Package Error MissingPluginException(No implementation found for method listen on channel step_detection)
Hi everyone and thanks for reading. I am using the Pedometer package (here https://pub.dev/packages/pedometer ) which is basically a step counter and am getting the following issue.
The Error
and my ...
0
votes
1
answer
57
views
Is there a way to exclude an app that requires pedometer from the App Store?
I'm working on an app that requires step counting.
There are several devices that don't support this feature (for example in my iPad mini 2, CMPedometer.isStepCountingAvailable() returns false).
Since ...
2
votes
2
answers
3k
views
Pedometer package in flutter doesn't work with some devices
I used the pedometer package version ^1.2.0 in my flutter app and I noticed that it doesn't work with some devices like Samsung A30 and others, the version I used doesn't need any permissions and it ...
2
votes
0
answers
168
views
problem after boot device (restart or shutdown) in flutter
I'm working on a health application with a step-counting feature.
I'using pedometer 1.2.5
https://pub.dev/packages/pedometer/versions/1.2.5
the app is working just fine while the app is not terminated ...
2
votes
1
answer
1k
views
Not able to run flutter pedometer plugin on android emulator
Background
I am new to flutter and need to implement a step counter.
I found the pedometer plugin for flutter, but can not get the example code to run.
I am using visual studio code and android studio....
0
votes
0
answers
2k
views
What algorithm can I use to count steps using Accelerometer and Gyroscope?
I need to count steps using data from Accelerometer and Gyroscope from a cellphone.
What algorithm can I use considering I have these data? Where my Accelerometer describes the velocity of the device,...
0
votes
1
answer
101
views
Update value of CircularProgressRing to values selected in 7 day chart
I'm in the progress of making a pedometer and using UICircularProgressRing from luispadron. I'm trying to update my circularProgressRing to show the current state of the ring to what the user has ...
0
votes
0
answers
4k
views
How to Implement Step Counter in Android Studio If Pedometer Sensor Not Available
I have a Samsung phone which apparently doesn't have a Pedometer (step counter) because when I use TYPE_STEP_COUNTER it says doesn't have one. So after searching online, I came across an ...
1
vote
1
answer
2k
views
Expo Pedometer "Getting step count for date range is not supported on Android yet"
When i updated expo SDK from 32 to 35, I get returned an error "Getting step count for date range is not supported on Android yet."
My code and google fit api configuration are clean. I know, because ...
3
votes
1
answer
900
views
pedometer is not working in background mode in ios 13 only
I have an app that just counting steps in Active State and Background Mode with CoreMotion CMPedometer.
It works fine on ios 12.4.1
ios 13: steps counting doesn't work in Background Mode, but work ...
-1
votes
1
answer
528
views
Reset the user's step count to 0
I am working on a health care application with a pedometer function. I am using the CMPedometer class to start counting step, but I am looking for a way that can set the pedometer's Step Count to 0 ...