-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to remove USE_FULL_SCREEN_INTENT? #1027
Comments
Faced a similar issue with Play Store complaining about FULL_SCREEN_INTENT permission, and removing my app from the Play Store. So, I removed the permission manually from
source: https://stackoverflow.com/questions/49025927/react-native-remove-default-android-permissions |
Will notifee work as expected If I remove the permission manually? |
I tried this, but it still seems to show up in the generated Manifest. I would have expected that the project manifest would be leading. |
I am also experiencing the same issue with my notifee configuration. I am not using asForgroundService and the category is Message. However, I can still see the USE_FULL_SCREEN_INTENT permission in the merged Manifest file.
Please let me know how to remove the USE_FULL_SCREEN_INTENT permission, and if I remove it manually, will it affect the functionality of notifee. |
Confirming that this worked, Will need to test on Android 14 and Android 12 or under to confirm this causes no actual issues. |
I tested on Android 14 and foreground service works. |
Thanks @taylorkline @RohanRajGautam you saved us. @mikehardy will this library be updated to handle this change? |
In my case I use only one function of library
and all application not approve because use this USE_FULL_SCREEN_INTENT permission :-) |
Hello, Could It be cache? Thanks. |
I also did the same but google play store still rejecting my app due to use of Full-screen intent permission. My |
I can confirm that #1027 (comment) works as expected. You can see the merged manifest in The message on the Play Store is super confusing. If you click into it, you'll see that the declaration is for existing bundles, not the new bundle you're trying to upload. However, you can't proceed with the new upload until the declaration is made. |
This works. Thank you all. |
If anyone is wondering how to do it in Expo, you can simply set in
|
I added to the app.json the android.permission.USE_FULL_SCREEN_INTENT ,but when I uploaded de aab file, it stills shows the android.permission.USE_FULL_SCREEN_INTENT permission on the list of permissions. Do I need anything else? prebuild? EDIT: yep, a prebuild is needed |
Will this permission be removed from the notifee manifest now? It does not seem to be required for it to function? |
Did you solved? the aab bundle still has permission..
even if set the below manifest.xml
|
When I run the expo prebuild it removed the permission from the manifest and when uploaded the aab, it showed that the permission was effectively removed in the Play Console. |
This logs looks correct, the final androidManifest will not have USE_FULL_SCREEN_INTENT. |
Hello 👋, to help manage issues we automatically close stale issues. This issue has been automatically marked as stale because it has not had activity for quite some time.Has this issue been fixed, or does it still require attention?
Thank you for your contributions. |
This appears to be work-around-able but not fixed. |
Hi, having the same issue, can someone confirm if the library works fine after we remove the permission? |
@gagtic the library works fine unless you have full screen notifications. (Alarm, calls etc) |
Confirmed on our end as well, we tested iOS and Android both with foreground and background notifications, no issues. |
What is s fullscreen notification? How is it triggered? |
Full Screen Notifications are notifications that cover the whole screen. Your app might need to display an urgent, time-sensitive message, such as an incoming phone call or a ringing alarm. In these situations, you can associate a full-screen intent with your notification. When the notification is invoked, users see one of the following, depending on the device's lock status:
|
Hello 👋, to help manage issues we automatically close stale issues. This issue has been automatically marked as stale because it has not had activity for quite some time.Has this issue been fixed, or does it still require attention?
Thank you for your contributions. |
This issue still exists. Will try the workaround |
This works for me |
…manifest for Android 14 compat (invertase#1027) BREAKING CHANGE: Android 14 no longer allows this by default so no longer include by default. Manually add it if you need it.
…manifest for Android 14 compat (#1027) BREAKING CHANGE: Android 14 no longer allows this by default so no longer include by default. Manually add it if you need it.
This is working. Those who are struggling might be adding it to the wrong manifest file. It has to be added in the main Manifest file i.e. android/app/src/main/AndroidManifest.xml |
Hello!
I recently uploaded a version of my application that uses notifee to the Play Store and the Android people made me notice that I was using USE_FULL_SCREEN_INTENT, and that I had until May 31 to solve it. Notice that notifee is adding these permissions to the intermediate files. Is there a way to remove this permission that I really don't think I'm using?
notifee 7.8.2
The text was updated successfully, but these errors were encountered: