My app didn't open Activity when I open link from appwrite cloud. Google Chrome open this link and I don't know why. Maybe trouble in android:pathPattern
?
Why it's don't be able to open Link?
My app manifest
<activity
android:name=".FriendsActivity"
android:exported="false">
<intent-filter tools:ignore="AppLinkUrlError">
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"
tools:ignore="AppLinkUrlError" />
<data android:host="cloud.appwrite.io" android:pathPattern="/?" android:scheme="http"/>
<data android:host="cloud.appwrite.io" android:pathPattern="/?" android:scheme="https"/>
<data android:host="cloud.appwrite.io" android:pathPattern="/?" android:scheme="android-app"/>
<data android:scheme="http"/>
</intent-filter>
</activity>
I'm tried to use other host and android:autoVerify="true"
, but this don't help.