From b092262c7422a183e0313e7260ffa5273e698913 Mon Sep 17 00:00:00 2001 From: Alexey Krasilnikov Date: Mon, 20 Jan 2025 02:24:15 +0700 Subject: [PATCH] [android] Define manageSpaceActivity This is a nice feature to reduce amount of uninstalls and full cleans. Consider the case: 1. You don't have enough free space on your phone. 2. You go to the Settings -> Storage -> Apps to see which apps eats the space. 3. You see Organic Maps, click on it and click on Clean storage. 4. But instead of performing a full clean you see a screen to manage maps you have on the device. Third-party storage managment apps could support this as well. Resolves #1079 Signed-off-by: Alexey Krasilnikov --- android/app/src/main/AndroidManifest.xml | 6 ++++++ .../java/app/organicmaps/SplashActivity.java | 20 ++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 67ed66ef78..ba2f5c7606 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -79,6 +79,7 @@ android:resizeableActivity="true" android:supportsRtl="true" android:networkSecurityConfig="@xml/network_security_config" + android:manageSpaceActivity="${applicationId}.ManageSpaceActivity" tools:targetApi="33"> @@ -362,6 +363,11 @@ android:configChanges="uiMode" android:windowSoftInputMode="stateAlwaysHidden|adjustPan"/> + +