1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Add android.permission.POST_NOTIFICATIONS to manifest when push notifications enabled

This commit is contained in:
reuk 2024-11-21 21:12:03 +00:00
parent 051e701780
commit 5878adaecd
No known key found for this signature in database
5 changed files with 7 additions and 0 deletions

View file

@ -1992,6 +1992,9 @@ private:
if (androidVibratePermission.get())
s.add ("android.permission.VIBRATE");
if (arePushNotificationsEnabled())
s.add ("android.permission.POST_NOTIFICATIONS");
return getCleanedStringArray (s);
}