Skip to content

Fix for new phones running Android > 12 #98

@markalston

Description

@markalston

For some reason (my guess is that it is due to not calibrating the sensor) phones running android > 12 the sensor accuracy comes back as SensorManager.SENSOR_STATUS_ACCURACY_LOW.

This causes the shake detection to not work in the shake plugin due to the check in onSensorChanged in AccelListener.java

The following change fixes the issue and shake detection is now working great for me on all phones.

Change the line in plugins/cordova-plugin-device-motion/src/android/AccelListener.java:

if (this.accuracy >= SensorManager.SENSOR_STATUS_ACCURACY_MEDIUM) {

to

if (this.accuracy >= SensorManager.SENSOR_STATUS_ACCURACY_LOW) {

My guess is that while this works there is a better fix since the device-motion plugin is apparently depreciated.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions