I am working on an android app where i am staring the login activity with deep link url and here is the intent i am using .
<activity android:name="Login_User"
android:screenOrientation="portrait">
<intent-filter
android:autoVerify="true">
<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:host="www.mySite.com"
android:path="/launch.php"
android:scheme="http"
></data>
<data
android:host="www.mySite.com"
android:path="/launch.php"
android:scheme="https" />
</intent-filter>
</activity>
this code works on all android version except android 10 , what should i do to make it work on android 10 . I can't find something specifically for android 10. Thanks.