0

I've added this to my manifest:

<uses-permission android:name="android.permission.VIBRATE" />

I am wondering whether this will disable auto update for my current users. This question says asking for redundant permissions will not require manual update. So I wonder will VIBRATE prevent auto update?

Community
  • 1
  • 1
Guy
  • 12,488
  • 16
  • 79
  • 119

1 Answers1

2

It will still auto update. The permission android.permission.VIBRATE is not a dangerous permission, and even if it were you would only have to ensure you are correctly requesting that permission when required.

From this google support page

For apps built for Android 6.0 and up: You won't need to review or accept permission changes for the app to update. The first time you use a feature that uses a new permission, you can allow or deny the use of that data or capability.

Joe Maher
  • 5,354
  • 5
  • 28
  • 44