summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3024a17a..eb7eed4a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -56,6 +56,7 @@
<uses-permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING" />
<application android:process="android.process.media"
+ android:icon="@mipmap/ic_launcher_download"
android:label="@string/app_label">
<provider android:name=".DownloadProvider"
@@ -90,6 +91,22 @@
</intent-filter>
</receiver>
+ <activity android:name=".LiveFolderConfigActivity" android:label="@string/live_folder_drawer_label"
+ android:permission="com.cyanogenmod.trebuchet.permission.MANAGE_LIVE_FOLDERS"
+ android:theme="@android:style/Theme.NoDisplay">
+ <intent-filter>
+ <action android:name="cyanogenmod.intent.action.CREATE_LIVE_FOLDER" />
+ </intent-filter>
+ </activity>
+
+ <receiver android:name=".LiveFolderReceiver"
+ android:permission="com.cyanogenmod.trebuchet.permission.MANAGE_LIVE_FOLDERS"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="cyanogenmod.intent.action.LIVE_FOLDER_UPDATES" />
+ </intent-filter>
+ </receiver>
+
<activity android:name=".SizeLimitActivity"
android:launchMode="singleTask"
android:theme="@style/Theme.Translucent"/>