Deep linking not working on Android

Actions & Logic

Hello!
Recently I have configured deeplinking on my app for android and ios.
I have followed this tutorial:
https://www.youtube.com/watch?v=zs5-HCs8xmE
So on ios it worked perfectly, but on android it doesn't works!
I have made changes and follower the instructions directly from the Flutter official website, but still not working.
My android manifest activity tag is like this:

<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="myapp.web.app" />
<data android:scheme="https" />
</intent-filter>

And is simply doesn't work.
On its it works perfectly, but on Android it doesn't.
I have tried on emulador, generating an apk and via play store (published app) and none of them works.
Can anyone help with with that?

What have you tried so far?

Reading documentations, searching for tutorials etc

Did you check FlutterFlow's Documentation for this topic?
No
1