| Index: chrome/android/webapk/shell_apk/AndroidManifest.xml
|
| diff --git a/chrome/android/webapk/shell_apk/AndroidManifest.xml b/chrome/android/webapk/shell_apk/AndroidManifest.xml
|
| index 62aa4048d2cd68de2a4040b069c0d24f157009cc..baf1d5e3032ac23776a6433ba8033ef39014b14d 100644
|
| --- a/chrome/android/webapk/shell_apk/AndroidManifest.xml
|
| +++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
|
| @@ -22,10 +22,16 @@
|
| <action android:name="android.intent.action.MAIN" />
|
| <category android:name="android.intent.category.LAUNCHER" />
|
| </intent-filter>
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.VIEW"></action>
|
| + <category android:name="android.intent.category.DEFAULT"></category>
|
| + <category android:name="android.intent.category.BROWSABLE"></category>
|
| + <data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix=""></data>
|
| + </intent-filter>
|
| </activity>
|
| <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}" />
|
| <meta-data android:name="hostUrl" android:value="{{ host_url }}" />
|
| <meta-data android:name="mac" android:value="{{ mac }}" />
|
| - <meta-data android:name="scope" android:value="{{ scope }}" />
|
| + <meta-data android:name="scope" android:value="{{ scope_url }}" />
|
| </application>
|
| </manifest>
|
|
|