Improvements to manage apps / running services:
- Running services now keeps a single data structure to make
switching through the UI a lot faster.
- Display text when there are no apps.
- Fix deadlock.
- Add new preference entry to view manage apps for storage use.
- Etc.
Change-Id: I0f5babf407ed7e84169f59584ddcb6cd0e9d67d9
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 43374eb..7b15e3f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -380,10 +380,10 @@
</intent-filter>
</activity>
- <!--
- <activity android:name=".applications.RunningServices"
- android:label="@string/runningservices_settings_title"
- android:clearTaskOnLaunch="true">
+ <!-- Provide direct entry into manage apps showing running services. -->
+ <activity-alias android:name=".RunningServices"
+ android:label="@string/runningservices_settings_title"
+ android:targetActivity=".applications.ManageApplications">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
@@ -391,11 +391,11 @@
<category android:name="android.intent.category.VOICE_LAUNCH" />
<category android:name="com.android.settings.SHORTCUT" />
</intent-filter>
- </activity>
- -->
+ </activity-alias>
<!-- Provide direct entry into manage apps showing running services. -->
- <activity-alias android:name=".RunningServices"
+ <activity-alias android:name=".applications.StorageUse"
+ android:label="@string/storageuse_settings_title"
android:targetActivity=".applications.ManageApplications">
<intent-filter>
<action android:name="android.intent.action.MAIN" />