Skip to content

Commit

Permalink
Settings access through system settings
Browse files Browse the repository at this point in the history
Close #620.
  • Loading branch information
Slion committed Mar 28, 2024
1 parent f314287 commit d80fa92
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,15 @@
android:theme="@style/Theme.App.DayNight"
android:exported="true">
<intent-filter>
<!--
Enable settings access from the App info system settings page, through the gear icon usually.
That notably let user access settings even if the browser is crashing for instance.
HONOR Magic V2: App info gear icon, top right corner next to app icon and name
Samsung Galaxy Tab S8 Ultra: App info page bottom click on 'In-app notification settings'
-->
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<!-- Not sure what that does -->
<action android:name="android.intent.action.SETTINGS" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Expand Down

0 comments on commit d80fa92

Please sign in to comment.