I am using React Native with Expo. I posted my app on Play Store, however, in permissions section, one of the permission ‘This app can appear on top of other apps’ is listed. Although, I don’t use any features in my app which uses such permission or explicitly setting it. Below are the dependencies list.
Even it shows the permission, but upon using the app, system does not use this permission.
Please let me know if you are facing same issue or know any dependency which might be triggering this issue?
Thank you in advance.
“dependencies”: {
“@react-native-async-storage/async-storage”: “2.1.2”,
“@react-navigation/bottom-tabs”: “^7.2.0”,
“@react-navigation/native”: “^7.0.14”,
“@react-navigation/native-stack”: “^7.2.0”,
“axios”: “^1.7.9”,
“date-fns”: “^4.1.0”,
“expo”: “~53.0.7”,
“expo-build-properties”: “~0.14.6”,
“expo-font”: “~13.3.1”,
“expo-linear-gradient”: “~14.1.4”,
“expo-location”: “~18.1.4”,
“expo-splash-screen”: “~0.30.8”,
“lottie-react-native”: “7.2.2”,
“metro-react-native-babel-transformer”: “^0.77.0”,
“react”: “19.0.0”,
“react-native”: “0.79.2”,
“react-native-progress”: “^5.0.1”,
“react-native-reanimated”: “~3.17.4”,
“react-native-safe-area-context”: “5.4.0”,
“react-native-screens”: “~4.10.0”,
“react-native-svg”: “15.11.2”,
“zustand”: “^5.0.3”
},
“devDependencies”: {
“@babel/core”: “^7.20.0”,
“react-native-svg-transformer”: “^1.5.0”
},
I tried blocking the permission explicitly using below code:
“android”:
“blockedPermissions”: [“android.permissions.SYSTEM_ALERT_WINDOW”];