My Cordova app (for Android, using phonegap-nfc plugin) successfully receives an NFC intent and displays the UID of the tag, but the onConnected method isn't called. This is my index.js file: var app = { initialize: function() { this.bindEvents(); },
I need to create app with optional NFC functionality. Can I get access to NFC without manifest permission (Android)? Or should I create two apps: an NFC version and one without it.This is not possible without adding permission into manifest. And you
I am using chariotsolution's nfc plugin for phonegap (https://github.com/chariotsolutions/phonegap-nfc) and it's all working perfect until the time came that I needed to remove a listener. I can't do it and it seems like it's not working. My question
I am trying to run an example which I pulled out from open-nfc.org. I have followed all the instructions provided by this site, however when I am trying to run the program I am getting the following error Error: Could not find or load main class Proc
Is it possible to program an NFC tag with text and a URL that can be linked to a website so when you tap it, the message will then cause a browser to open and take you to the website? Example: Hello my name is Mike click here to go to my website.This
Everybody knows that Apple introduced NFC with their iPhone 6 smartphones breed. I am curios: are there any ways to emulate NFC on iPhone 5/5c/5s ? Could it be simulated somehow with hardware iPhone 5-series provide?The short answer is No. However, 5
I've seen in many articles a way to check that NFC is disabled like this: if (ProximityDevice.GetDefault() != null) MessageBox.Show("NFC present"); else MessageBox.Show("Your phone has no NFC or NFC is disabled"); ProximityDevice.GetDe
I have a requirement to implement a solution to read data from an android device, connected to PC via a USB cable. i.e. the phone connected to the PC will receive data through another android device via NFC where the PC - C# program must read the rec
As I know when an Android phone gets an NFC tag touched, it will send an event (NDEF_DISCOVERED intent), but Android doesn't seem to care whether this tag is staying in place. My solution is to lock the screen and then unlock it. If the tag is still
*Context: I'm wanting to test the Uid from a Mifare card using libnfc. I have taken apart this example: http://nfc-tools.org/index.php?title=Libnfc:quick_start_example* print_hex is a helper function at the top of the linked example, it is this: prin
I want to know if Beacons can launch a simple URL in iOS7 devices when they come into a predefined range of the Beacon or do they need a specially designed BLE enabled application sitting on the phone to do this other than a browser like Safari, Chro
I have implemented the NFC foreground dispatch in my Activity. The code works fine, when the NFC tag get close to my phone, the onNewIntent(Intent intent) is called. Now, I would like to show an Fragment(MyFragment.java) when the onNewIntent(Intent i
I'm developing a system including NFC tags and Android phone , using unique ID of NFC tags . But don't know what is the differences between 4 types NFC tag . I've found this : "NFC-compatible tags can be of the following technologies/standards and ea
Is there anyway to check if onResume was called from the device waking up from sleep state in Android? The reason why I need to check that is I don't want it to call a particular method if resumed from sleep state: @Override public void onResume() {
Is there any way to launch the BlackBerry or Windows Phone markets from a NFC tag when the application isn't installed? I mean, like AAR in Android platform, if the application that the tag is destined for isn't installed then google play store is la
I'm trying to create vcalendar for nfc tags,but what is the correct mime type? It should be something like this WindowsMime:WriteTag.Text/vcalendar WindowsMime:WriteTag.Text/x-vcalendar but when I try to read the tag, the prompt message is "Sorry you
I'm trying to launch a specific activity when my phone scans an NFC Tag. This is what my manifest looks like: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"
To be more specific, I'm trying to implement an Android application, which forces the phone to operate as an RFID tag. This tag is read by scanners placed around doors (thus the > 4 inches constraint) identifying the person and his whereabouts. The p
Does anyone know how I can find out via the Android NFC API which NFC chip is used in a tag which I am reading? Ideally I like to get the both the chip model and the manufacturer. Is that available somewhere in the Tag object? For clarification, I do
I did enough research on reading RFID tags using Android phones(smart phones). My understanding of this is that for NFC-enabled smart phones (Nexus S) it is possible to read RFID tags, but there are restrictions. For non-NFC-enabled Androids we need
I am trying to use Android's NFC API to do raw authentication (send commands to MifareClassic cards using transceive method). But I keep getting TagLostException for all NfcA transceive calls. This is my code: NfcA mfa = NfcA.get(tagFromIntent); //Mi
I used the ACR 122 before and it worked flawlessly with an Android < 4.1 phone. I used it to exchange P2P SNEP messsages... But since the phone got 4.1, the reader starts beeping and flashing when you place the phone above it. Does anyone else have f
Since straight Java development isn't going to be supported on BB10 (Am I right?), at least not without using the Android Java Runtime (which I don't want to use), I'd like to know if there will be official support and an official API from RIM for ac
Is there any way for an Android phone with NFC (Nexus, Galaxy, etc.) to read a passive RFID tag that was designed for longuer distances reads? I'm interested in using a same tag that can be read by a RFID reader at a longuer distance and a Android Ph
I'd like to implement a NFC communication between my Android app and a NFC-enabled kiosk. I've read the documentation and I understand pushing data can be done in 2 ways: Via foreground NDEF pushing for API level 10 to 13 Via Android Beam from API le
I would like to read an NFC tag's UID, tags don't have any ndef message or anything (empty), just UID. It's easy to do on Android, but Phonegap development is way faster so I would like to know if it's possible to get it working on Phonegap, probably
Possible Duplicate: Transfer an image via blutooth in android I have a problem that I want to handed over bluetooth connection when I connected with NFC. Means how we communicate over bluetooth after NFC connection establishment. Edit: I have two NFC
I am trying to implement a P2P communication between two Android phones (one of them will be replaced by an independent device in the end). I have seen that Android 4 supports SNEP which is published by the NFC forum and should be available on non-an
I am looking forward to implement NFC in iPhone. Can anyone share some sample codes for its implementation? Till now I know that one needs an adapter to implement this on iPhone while this feature has already been deployed successfully on android pho
Used Android Project:Tag After copying the Tag project into your workbench you should import the guava lib, to solve most of the errors. The Nullable errors can be fixed by importing the jsr305-1.3.9.jar regarding this solution After fixing all Error