I have a magnetic card reader code in android, i want to access this app into a browser (via javascript) or using HTML5 getUserMedia()
API to get a swipe from the card and get the card information through JavaScript. Any way to do this? Please share example code, if you have...
Edit: I referred this link: Jquery Mobile Web: Is Calling Native Apps possible?
I don't know how to use this in my script: myapp://myparam
i added this code in my manifest file,
<intent-filter>
<action android:name="android.intent.action.VIEW" >
</action>
<category android:name="android.intent.category.DEFAULT" >
</category>
<category android:name="android.intent.category.BROWSABLE" >
</category>
<data
android:host="http://market.android.com/"
android:scheme="http" >
</data>
</intent-filter>
how to launch this app in browser(i.e link)...