I'm trying to introduce a deeplinking in my application. This is the process:
I tried to add intent-filters for deeplinking. When I submit to form still, I'm staying in the chrome custom tab. (I mean in the browser) But I want to go back to app.
Is it possible?
I solved my problem with custom scheme in AndroidManifest.xml
<data android:host="backToApplication"
android:scheme="someSchemeLikeHttp"/>
I was using https as scheme but for links, default application is default browser in the phone. I changed the schema and I'm sending my schema and host in the url callback like
?callback_url=someSchemeLikeHttp://backToApplication
Now it's working for me.