From 0305a613ee7be9ba4a667f7cd80df8acee6f8edc Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Mon, 21 Oct 2024 17:27:09 -0400 Subject: [PATCH] Enable predictive back gestures Our activities are so simple, there's nothing special needed to support this. Signed-off-by: Andrew Gunnerson --- app/src/main/AndroidManifest.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 256d761..46e6f71 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -21,11 +21,13 @@ android:backupAgent=".backup.ConfigBackupAgent" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" + android:enableOnBackInvokedCallback="true" android:memtagMode="off" android:networkSecurityConfig="@xml/network_security_config" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/Theme.RSAF"> + android:theme="@style/Theme.RSAF" + tools:targetApi="tiramisu">