I added Android deep linking, but it’s not enabled by default. I have to enable it manually in settings.I want it to be enabled automatically.
already Add Intent Filter
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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:host="xxx.xxx.com" android:scheme="https" />
</intent-filter>