react-native-picker icon indicating copy to clipboard operation
react-native-picker copied to clipboard

Why SYSTEM_ALERT_WINDOW permission is required?

Open vahidd opened this issue 6 years ago • 2 comments

This package requires "android.permission.SYSTEM_ALERT_WINDOW" on Android. I removed permission from the manifest file but library works. Is something missing on the readme?

vahidd avatar May 25 '19 10:05 vahidd

I am having the same experience. I've removed it by adding the following to my release AndroidManifest.xml and the picker still seems to work.

<uses-permission tools:node="remove" android:name="android.permission.SYSTEM_ALERT_WINDOW" />

jjblumenfeld avatar Jul 16 '19 19:07 jjblumenfeld

I am facing this issue after publishing to Google Play:

Users that have the APK with version code may need to accept the android.permission.SYSTEM_ALERT_WINDOW permission, which may result in them not upgrading to this version of the app.

And I found that this permission is from this library, is it safe to remove it?

chengsam avatar Jul 21 '21 11:07 chengsam