Chromium Code Reviews| Index: blimp/client/app/android/AndroidManifest.xml.jinja2 |
| diff --git a/blimp/client/app/android/AndroidManifest.xml.jinja2 b/blimp/client/app/android/AndroidManifest.xml.jinja2 |
| index adb5b2f7b7531d4ce91c9cbb57fd0930a1e2c04e..a8dc01fdcccd2a94d28e5f0d97e27a47ed63c860 100644 |
| --- a/blimp/client/app/android/AndroidManifest.xml.jinja2 |
| +++ b/blimp/client/app/android/AndroidManifest.xml.jinja2 |
| @@ -22,8 +22,64 @@ |
| android:windowSoftInputMode="adjustResize" |
| android:hardwareAccelerated="true"> |
| <intent-filter> |
| - <action android:name="android.intent.action.MAIN"/> |
| - <category android:name="android.intent.category.LAUNCHER"/> |
| + <action android:name="android.intent.action.MAIN" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <category android:name="android.intent.category.LAUNCHER" /> |
| + <category android:name="android.intent.category.BROWSABLE" /> |
| + <category android:name="android.intent.category.APP_BROWSER" /> |
| + <category android:name="android.intent.category.NOTIFICATION_PREFERENCES" /> |
|
Khushal
2016/03/25 18:59:30
Since we don't post any notifications right now, i
shaktisahu
2016/03/29 19:04:12
Done.
|
| + </intent-filter> |
| + <!-- Matches the common case of intents with no MIME type. |
| + Make sure to keep in sync with the next filter. --> |
| + <intent-filter> |
| + <action android:name="android.intent.action.VIEW" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <category android:name="android.intent.category.BROWSABLE" /> |
| + <data android:scheme="http" /> |
|
Khushal
2016/03/25 18:59:30
We are not handling any of these intents in the ac
shaktisahu
2016/03/29 19:04:12
Done.
|
| + <data android:scheme="https" /> |
| + <data android:scheme="about" /> |
| + <data android:scheme="javascript" /> |
| + </intent-filter> |
| + <!-- Same filter as above but with MIME types. Intents that |
| + do not specify a MIME type won't match. --> |
| + <intent-filter> |
| + <action android:name="android.intent.action.VIEW" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <category android:name="android.intent.category.BROWSABLE" /> |
| + <data android:scheme="http" /> |
| + <data android:scheme="https" /> |
| + <data android:scheme="about" /> |
| + <data android:scheme="content" /> |
| + <data android:scheme="javascript" /> |
| + <data android:mimeType="text/html"/> |
| + <data android:mimeType="text/plain"/> |
| + <data android:mimeType="application/xhtml+xml"/> |
| + </intent-filter> |
| + <!-- MHTML support, used for snapshots --> |
| + <intent-filter> |
| + <action android:name="android.intent.action.VIEW" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <data android:scheme="file" android:mimeType="multipart/related"/> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.intent.action.MEDIA_SEARCH" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.speech.action.VOICE_SEARCH_RESULTS" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.nfc.action.NDEF_DISCOVERED" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <data android:scheme="http" /> |
| + <data android:scheme="https" /> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.intent.action.SEARCH" /> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="com.sec.android.airview.HOVER" /> |
| </intent-filter> |
| </activity> |