summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authord34d <clark@cyngn.com>2016-04-07 08:42:32 -0700
committerClark Scheff <clark@cyngn.com>2016-04-07 15:45:10 +0000
commit5a44ab8b8d9f84617a16a4601988cfba393b0e6f (patch)
tree2ba8b8ab68e329b884737b75d2eb901c578d3580
parente61c5f8df011baa0dcc6c477378b29080eed0c12 (diff)
downloadpackages_apps_ThemeChooser-5a44ab8b8d9f84617a16a4601988cfba393b0e6f.tar.gz
packages_apps_ThemeChooser-5a44ab8b8d9f84617a16a4601988cfba393b0e6f.tar.bz2
packages_apps_ThemeChooser-5a44ab8b8d9f84617a16a4601988cfba393b0e6f.zip
Use correct actions in broadcast receiver
Theme chooser was still using the old actions that were recently moved to the cm platform sdk. This patch changes them to the correct actions found in cyanogenmod.content.Intent Change-Id: I44e3604c61d0021a7f2354c107da163a64e3951d TICKET: CYNGNOS-2389
-rw-r--r--AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b9ad322..ee1914a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -87,9 +87,9 @@
<receiver android:name="com.cyngn.theme.chooser.AppReceiver" >
<intent-filter>
- <action android:name="themescontract.intent.action.THEME_INSTALLED" />
- <action android:name="themescontract.intent.action.THEME_REMOVED" />
- <action android:name="themescontract.intent.action.THEME_UPDATED" />
+ <action android:name="cyanogenmod.intent.action.THEME_INSTALLED" />
+ <action android:name="cyanogenmod.intent.action.THEME_REMOVED" />
+ <action android:name="cyanogenmod.intent.action.THEME_UPDATED" />
<data android:scheme="package" />
</intent-filter>
</receiver>