Attributes from documentation scheme://host:port/path
or pathPrefix
or pathPattern
.
You need to change define proprely scheme and host definition. If you don't specify scheme then all URI attributes will be ignored, and won't be applied.
You could use http
URI scheme.
<data android:scheme="http" android:host="afs.com.afs"/>
and in HTML
<a href="http://afs.com.afs:75235">Launch Application</a>
Or define own URL scheme.
<data android:scheme="myapp" android:host="afs.com.afs"/>
and in HTML
<a href="myapp://afs.com.afs:75235">Launch Application</a>
PS.
Change this
<data android:name="android.intent.action.VIEW" />
to
<action android:name="android.intent.action.VIEW" />
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…