Assigned
Status Update
Comments
pe...@google.com <pe...@google.com> #2
Issue with notification access code in core. Unclear where, but probably safe to assume NotificationCompat
.
No update yet.
Issue with notification access code in core. Unclear where, but probably safe to assume NotificationCompat
.
Description
implementation 'androidx.browser:browser:1.3.0'
class 'androidx.browser.customtabs.CustomTabsIntent'
I have a intent-filter in android application:
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https"
android:host="myhost"
android:pathPattern="mypath"/>
</intent-filter>
CustomTab opens well. Then after navigation to URL declared in the intent-filter:
Expected behavior: the browser tab is closed and intent is sent in activity according declared intent-filter.
Actual behavior: the browser tab is closed and no intent is received.
The same works well when actions going in Google Chrome App instead of CustomTabsIntent. Tested.