aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorjruesga <jorge@ruesga.com>2012-10-25 20:36:09 +0200
committerjruesga <jorge@ruesga.com>2012-10-25 20:36:09 +0200
commit3c9f8492575ceb59ec46a4574a89806f413ed7db (patch)
treede334b316a83b0192ebc416f36426af8b5ec9442 /AndroidManifest.xml
parent0ccbd081eb5d8974e4779f685266c3938c96302d (diff)
downloadandroid_packages_apps_CMFileManager-3c9f8492575ceb59ec46a4574a89806f413ed7db.tar.gz
android_packages_apps_CMFileManager-3c9f8492575ceb59ec46a4574a89806f413ed7db.tar.bz2
android_packages_apps_CMFileManager-3c9f8492575ceb59ec46a4574a89806f413ed7db.zip
Support of Internal Editors (Issue #4)
* This changes add a internal editor to view and edit root and non-root files. * Also add the logic to add internal editors to Associations Dialog without make persistent the user selection.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 09b016f9..18c2aeb6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -131,6 +131,18 @@
</intent-filter>
</activity>
+ <activity
+ android:name=".activities.EditorActivity"
+ android:label="@string/editor"
+ android:icon="@drawable/ic_launcher_editor"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="android.intent.action.EDIT" />
+ <category android:name="com.cyanogenmod.explorer.category.INTERNAL_VIEWER" />
+ <category android:name="com.cyanogenmod.explorer.category.EDITOR" />
+ </intent-filter>
+ </activity>
+
</application>
</manifest>