From 287d91181f70c990e1d961eedf13676f2451a169 Mon Sep 17 00:00:00 2001 From: Daniel Nishi Date: Tue, 3 May 2016 18:00:49 -0700 Subject: [PATCH] Add an Activity to handle Intents to invoke the Deletion Helper. This will allow apps to launch the deletion helper when they need to have space freed up. To launch the activity using an intent, you can set it as follows: Intent intent = new Intent(Settings.ACTION_DELETION_HELPER_SETTINGS); startActivity(intent); This intent should bring up the Deletion Helper. Bug: 28675265 Change-Id: I781615ccad4ca1fcae97817ecb823e5dcad67b5b --- AndroidManifest.xml | 11 +++++++++++ src/com/android/settings/Settings.java | 1 + src/com/android/settings/SettingsActivity.java | 2 ++ 3 files changed, 14 insertions(+) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 1d72424ec23..7617c394e80 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2901,6 +2901,17 @@ android:value="true" /> + + + + + + + +