Hi, I have two apps with ionic 6 and angular 16, for both I have no permissions in the android’s manifest but in the playstore there is defined of control the vibration, how can I remove it if my apps does not need it and as I said, there is no such entry in the manifest?
Vibration permission is added by haptics plugin as it’s required for vibrating, you can remove the haptics plugin if you don’t want haptic feedback in your app and that will remove the permissions.
In Android Studio if you open the AndroidManifest.xml
there is a tab to check the “merged manifest”, which is the final manifest that will be uploaded to Google Play with all the permissions, services or other elements that dependencies and plugins add to it and it tells you which line belongs to which package.
2 Likes
it works, thank you!