]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/AndroidManifest.xml
Bump target API to 33. https://redmine.stoutner.com/issues/890
[PrivacyCell.git] / app / src / main / AndroidManifest.xml
index 3df75fd6d3e8d2fcca70b7bf9c1380bd41ae8e0c..f79605c1cd9c9d41031a31c980dad4b226e34b8e 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2021-2022 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2021-2022 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
 
     xmlns:tools="http://schemas.android.com/tools"
     android:installLocation="auto" >
 
-    <!-- Required to read cell network information. -->
+    <!-- Required to read cell network information.  <Dangerous permission> -->
     <uses-permission android:name="android.permission.READ_PHONE_STATE" />
 
-    <!-- Required to display a realtime notification icon. -->
+    <!-- Required to display a notification.  <Dangerous permission> -->
+    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
+
+    <!-- Required to run a foreground service (which is the only type of service that can display notifications). -->
     <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
 
     <!-- Required to start the realtime notification icon at boot. -->
             </intent-filter>
         </receiver>
     </application>
-</manifest>
\ No newline at end of file
+</manifest>