Tried to work with applinks and my app was not invoked. I put the below content in my sample HTML page and tried to invoke my app on page load. But it doesn't work.
<meta property="al:ios:url" content="xyz://docs" />
<meta property="al:ios:app_store_id" content="1234" />
<meta property="al:android:url" content="xyz://docs" />
<meta property="al:android:package" content="com.xyz.abc" />
The custom scheme seams to work fine and my app is invoked when i type xyz://docs from the chrome and safari browser.
When the sample page is loaded in the browser, I wanted my app to be invoked. Later I wanted the app to fallback once this works.
Note : The app_store_id, custom scheme and android:package in the above tags are properly configured in my test page.