Commit eb64eb38 authored by Yuwei Huang's avatar Yuwei Huang Committed by Commit Bot

[Remoting Android] Fix AppLinkUrlError

This CL adds android:host="*" to the intent filter and removes the
AppLinkUrlError suppression.

Bug: 804441
Change-Id: I30dc3f0171fbfb6b4f195b90f7deba0fd43911ba
Reviewed-on: https://chromium-review.googlesource.com/879584Reviewed-by: default avatarLambros Lambrou <lambroslambrou@chromium.org>
Reviewed-by: default avatarPeter Wen <wnwen@chromium.org>
Commit-Queue: Yuwei Huang <yuweih@chromium.org>
Cr-Commit-Position: refs/heads/master@{#532071}
parent aed0e542
......@@ -91,10 +91,6 @@ Still reading?
<issue id="GoogleAppIndexingWarning" severity="Error">
<ignore regexp="AndroidManifest.xml"/>
</issue>
<!-- TODO(crbug.com/804441): Fix for remoting -->
<issue id="AppLinkUrlError">
<ignore regexp="AndroidManifest.xml"/>
</issue>
<issue id="HandlerLeak">
<ignore regexp="android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java" />
<ignore regexp="chromecast/internal" />
......
......@@ -29,12 +29,12 @@
android:enabled="false"
android:exported="true"
android:noHistory="true">
<!-- TODO(kevinp): suppress once crbug.com/501593 is fixed. -->
<!--suppress AppIndexingError -->
<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:host="*"/>
<data android:scheme="{{ APK_PACKAGE_NAME }}"/>
<data android:path="/oauthredirect/"/>
</intent-filter>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment