Deep linking - Supported web addresses Auto Enable

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>

Just to confirm, you followed this guide? Deep Links | Capacitor Documentation

Yes, I followed the guide but have already solved it. I used the keystore certificate from google play instead of generating one myself. Keystore certificate might have been created earlier, and this app has been uploaded to google store before.

1 Like