Assigned
Status Update
Comments
pe...@google.com <pe...@google.com> #2
having the same issue
Room version > 2.7.0-alpha08
agp = "8.2.2"
kotlin = "2.0.20"
ksp-plugin = "2.0.20-1.0.24"
also Reverting to Room version 2.7.0-alpha07 solves the issue.
Room version > 2.7.0-alpha08
agp = "8.2.2"
kotlin = "2.0.20"
ksp-plugin = "2.0.20-1.0.24"
also Reverting to Room version 2.7.0-alpha07 solves the issue.
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.