I implemented deep-linking on my flutter app.
I added this code to my androidManifest.xml
file
<!-- Deep linking -->
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<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="http" android:host="buddybee.eu" />
<data android:scheme="https" />
</intent-filter>
It's working, when I click on this (e.g. https://abirahsan.com ) type of link, which starts with https/http. But if the link starts with www. like www.abirahsan.com then it's not working.
How can I solve this problem?