I'm trying to test app links for my application without success. I created on my dev machine a simple IIS web application with a test.html page containing:
<html>
<head>
<title>test</title>
<meta property="al:android:package" content="com.test.debug">
<meta property="al:android:app_name" content="test">
</head>
<body>
<H1>123</H1>
</body>
</html>
in my AndroidManifast.xml I've inserted the following intent filter:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Now from the android device's browser I go to the url in my dev machine. i.e http://10.1.10.125/testFB/test.html, and share the page.
Then from the wall of my facebook app i click the link. but the app doesn't open - it shows the web page in the internal webview.
I also tried using the schema(copied from facebook documentation) without success.
What am i doing wrong?