aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDebashish Chatterjee <debashishc@google.com>2011-07-28 12:23:22 +0100
committerDebashish Chatterjee <debashishc@google.com>2011-08-01 17:25:59 +0100
commitc6eb4fe44502116f834fadcc54214b3fa93ff564 (patch)
treea3fce1fc3f56304427520b20c5a024b1029258b9 /AndroidManifest.xml
parent3606209fe0f5bac0e7d312f0c1576b7ee5cf8ee7 (diff)
downloadContactsProvider-c6eb4fe44502116f834fadcc54214b3fa93ff564.tar.gz
Delete voicemail data when source package is uninstalled.
The deletion of voicemail data for the uninstalled package is done through a service. The PackageIntentReceiver just forwards the package removal intent to the service after sanity check that the intent is really for an uninstalled package. The logic to check whether the intent should trigger a clean up is repeated in VoicemailCleanupService as well. This provides an extra safety net and and also lets the unit test cover this functionality. Bug: 5056159 Change-Id: Id7315a1318d510b50878f26c2e0d380c1920ee4e
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 156041cc..88d5650f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -100,5 +100,7 @@
<action android:name="android.intent.action.LOCALE_CHANGED"/>
</intent-filter>
</receiver>
+
+ <service android:name="VoicemailCleanupService"/>
</application>
</manifest>