|
49 | 49 | <action android:name="android.intent.action.MAIN"/>
|
50 | 50 | <category android:name="android.intent.category.LAUNCHER"/>
|
51 | 51 | </intent-filter>
|
| 52 | + |
| 53 | + <!-- App can open on notification action --> |
52 | 54 | <intent-filter>
|
53 | 55 | <action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
54 | 56 | <category android:name="android.intent.category.DEFAULT" />
|
55 | 57 | </intent-filter>
|
| 58 | + |
| 59 | + <!-- App can open https://matrix.to urls --> |
56 | 60 | <intent-filter>
|
57 | 61 | <action android:name="android.intent.action.VIEW" />
|
58 | 62 | <category android:name="android.intent.category.DEFAULT" />
|
|
61 | 65 | android:scheme="https"
|
62 | 66 | android:host="matrix.to"/>
|
63 | 67 | </intent-filter>
|
| 68 | + |
| 69 | + <!-- App can open matrix: uris --> |
64 | 70 | <intent-filter>
|
65 | 71 | <action android:name="android.intent.action.VIEW" />
|
66 | 72 | <category android:name="android.intent.category.DEFAULT" />
|
67 | 73 | <category android:name="android.intent.category.BROWSABLE" />
|
68 | 74 | <data android:scheme="matrix" />
|
69 | 75 | </intent-filter>
|
| 76 | + |
| 77 | + <!-- App can open im.fluffychat:// uris --> |
70 | 78 | <intent-filter>
|
71 | 79 | <action android:name="android.intent.action.VIEW" />
|
72 | 80 | <category android:name="android.intent.category.DEFAULT" />
|
73 | 81 | <category android:name="android.intent.category.BROWSABLE" />
|
74 | 82 | <data android:scheme="im.fluffychat" android:host="chat" />
|
75 | 83 | </intent-filter>
|
| 84 | + |
| 85 | + <!-- App can receive shared files --> |
| 86 | + <intent-filter> |
| 87 | + <action android:name="android.intent.action.VIEW" /> |
| 88 | + <category android:name="android.intent.category.DEFAULT" /> |
| 89 | + <data |
| 90 | + android:mimeType="*/*" |
| 91 | + android:scheme="content" /> |
| 92 | + </intent-filter> |
| 93 | + |
| 94 | + <!-- App can receive shared text --> |
76 | 95 | <intent-filter>
|
77 | 96 | <action android:name="android.intent.action.SEND" />
|
78 | 97 | <category android:name="android.intent.category.DEFAULT" />
|
79 | 98 | <data android:mimeType="text/*" />
|
80 | 99 | </intent-filter>
|
| 100 | + |
| 101 | + <!-- App can receive shared documents --> |
81 | 102 | <intent-filter>
|
82 | 103 | <action android:name="android.intent.action.SEND" />
|
83 | 104 | <category android:name="android.intent.category.DEFAULT" />
|
84 | 105 | <data android:mimeType="document/*" />
|
85 | 106 | </intent-filter>
|
| 107 | + |
| 108 | + <!-- App can receive shared images --> |
86 | 109 | <intent-filter>
|
87 | 110 | <action android:name="android.intent.action.SEND" />
|
88 | 111 | <category android:name="android.intent.category.DEFAULT" />
|
89 | 112 | <data android:mimeType="image/*" />
|
90 | 113 | </intent-filter>
|
| 114 | + |
| 115 | + <!-- App can receive shared videos --> |
91 | 116 | <intent-filter>
|
92 | 117 | <action android:name="android.intent.action.SEND" />
|
93 | 118 | <category android:name="android.intent.category.DEFAULT" />
|
94 | 119 | <data android:mimeType="video/*" />
|
95 | 120 | </intent-filter>
|
| 121 | + |
| 122 | + <!-- App can receive shared audios --> |
96 | 123 | <intent-filter>
|
97 | 124 | <action android:name="android.intent.action.SEND" />
|
98 | 125 | <category android:name="android.intent.category.DEFAULT" />
|
|
0 commit comments