Please describe the quesHi all,
I was wondering if anybody played with the the official Capacitor Motion Plugin (v2) yet?
URL: https://capacitorjs.com/docs/apis/motion
I was trying to get it to run, but cannot figure it out.
The recommended way of requesting permissions fails on the web:
try {
await DeviceMotionEvent.requestPermission()
} catch (e) {
console.log(e)
return;
}
TypeError: DeviceMotionEvent.requestPermission is not a function
If I just add the listener and return the event then I get all Acceleration Information to be null:
{
{
acceleration: DeviceMotionEventAcceleration
x: null
y: null
z: null
__proto__: DeviceMotionEventAcceleration
}, {
accelerationIncludingGravity: DeviceMotionEventAcceleration
x: null
y: null
z: null
__proto__: DeviceMotionEventAcceleration
}
}
Not sure if this is because it is on the web (via ionic serve), but the plugin should work on web, android, iOS. Should I not get readings back from the sensors?
If I run my code native on Android, then the request permission also does not work, and I do not even get the event from the Motion plugin back.
Question:
- Does anybody have any pointers/links to tutorials, github repos, etc. that have a working example of that plugin?
- Has anybody worked with this plugin across PWA, android, iOS and can confirm that it actually works in v2/v3 beta?
- Is there another capacitor kitchen sink repo, because the official one seems to be dead: https://github.com/ionic-team/capacitor-plugin-demo
General questions for the Ionic team:
- With capacitor now in v3 beta, should we still start projects with v2?
- What is going to happen to ionic native long term? Are you maintaining the long existing list of ionic native plugins or will efforts be shifted to grow capacitor? (Apologies if I have missed a blog article on that in the past.)
Any help would be very much welcome.
Thanks.