浏览代码

Android: Added deactivated intent filter for testing drop file support.

Philipp Wiesemann 10 年之前
父节点
当前提交
c3186d5ee9
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      android-project/AndroidManifest.xml

+ 8 - 0
android-project/AndroidManifest.xml

@@ -39,6 +39,14 @@
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
+            <!-- Drop file event -->
+            <!--
+            <intent-filter>
+                <action android:name="android.intent.action.VIEW" />
+                <category android:name="android.intent.category.DEFAULT" />
+                <data android:mimeType="*/*" />
+            </intent-filter>
+            -->
         </activity>
     </application>