Commit c3186d5ee9090310426e0fd895f746588bea11f4

Philipp Wiesemann 2015-06-05T19:40:50

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/android-project/AndroidManifest.xml b/android-project/AndroidManifest.xml
index 960bde3..5dbb548 100644
--- a/android-project/AndroidManifest.xml
+++ b/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>