Don Coleman
Don Coleman
Unfortunately I think BLE can just be flaky, especially on older version of Android. If you increase the scan time, you might see better results.
@Vartex05 There is a demo app that uses the Google card reader sample see https://github.com/don/cordova-plugin-hce#hce-demo-app
HCE emulates smart cards. APDU commands are the commands used exchange of data between the reader and the card. The reader will send you a command and you need to...
@BUATHERA you should be able to use this plugin to emulate a credit card. You'll need to respond to multiple commands. This means that you need to implement the logic...
You're not receiving any commands in the callback you registered in [hce.registerCommandCallback](https://github.com/don/cordova-plugin-hce#hceregistercommandcallback)? Read through the output of `adb logcat` and see if there are any errors or stack traces. Run...
@Adrien-Delahaye the message about downgrading the SDK means you need to delete the android-23 version from your phone before the android-22 version can be installed.
@tsukasa1989 thanks for this fix. I'll get it added into the next release. I have a Huawei device running Android 5.1. It started working a lot better with Cordova apps...
Are you still seeing this issue? Have you tried with Cordova 5?
I haven't looked at this plugin for a long time. I'd expect those "missing" files use context:// URI or some newer android stuff that was added after this plugin was...
If you want to manipulate the contents of the file you're probably better off using the [Cordova File Plugin](http://plugins.cordova.io/#/package/org.apache.cordova.file). Unfortunately the API is pretty clunky, so I suggest reading [Exploring...