]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
android: Request USE_FULL_SCREEN_INTENT permission
authorTobias Brunner <tobias@strongswan.org>
Fri, 30 Oct 2020 14:30:29 +0000 (15:30 +0100)
committerTobias Brunner <tobias@strongswan.org>
Fri, 30 Oct 2020 14:33:37 +0000 (15:33 +0100)
This is required to associate a full screen intent with a notification
when targeting Android 10 (29).

src/frontends/android/app/src/main/AndroidManifest.xml

index d6bbc3aadb269baf5387d6930c3db2c2acc537a7..5b34164ca04a316125b22e47f5c64a2762c322b3 100644 (file)
@@ -24,6 +24,7 @@
     <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
     <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
+    <uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
 
     <application
         android:name=".logic.StrongSwanApplication"