-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after installing this plugin, the app exits automatically (force close) #83
Comments
I'm not aware of crashes caused by this plugin, you'll need to debug using android studio to see where it crashes... |
This was happened in android for me too. You need to ask activity recognition permission before the location permission. Otherwise the app was getting crashed |
Use the android permission plugin and request for the permission before asking the location permission |
this.androidPermissions.requestPermission('android.permission.ACTIVITY_RECOGNITION') .then(result => { if (!result.hasPermission){ this.permissionActivity = false; }else{ this.permissionActivity = true; } }) .catch(err=>{ this.permissionActivity = false; }); |
Seems like a duplicate of #48. |
solved , after install android permission plugin
solved , after install android permission plugin, thank's sir |
Describe the bug
like the title
To Reproduce
Steps to reproduce the behavior:
Screenshots

Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered: