You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
As we can see in plugin initialization code
@CapacitorPlugin(
name = "Contacts",
permissions = { @Permission(strings = { Manifest.permission.READ_CONTACTS, Manifest.permission.WRITE_CONTACTS }, alias = "contacts") }
)
Plugin requires Manifest.permission.WRITE_CONTACTS. that's why Google Play always throw annoying warning before publising release
Describe the solution you'd like
Permissions should be configurable by client side.
Describe alternatives you've considered
It would be better if we could configure permissions in capasitor.confit.ts or when calling requestPermissions method
The text was updated successfully, but these errors were encountered:
Hiya, I've also been looking to remove unnecessary permissions, and have seen the same issue as above when only using READ_CONTACTS and the getContacts method. Would love to see this improved.
Is your feature request related to a problem? Please describe.
As we can see in plugin initialization code
Plugin requires
Manifest.permission.WRITE_CONTACTS
. that's why Google Play always throw annoying warning before publising releaseDescribe the solution you'd like
Permissions should be configurable by client side.
Describe alternatives you've considered
It would be better if we could configure permissions in
capasitor.confit.ts
or when callingrequestPermissions
methodThe text was updated successfully, but these errors were encountered: