Application Development for Near Field Communication (NFC)

Please point me to a toolkit that I can use to create Near Field Communication applications.

thank

0


source to share


5 answers


I would recommend trying out NFC with Android - get the SDK here:

http://developer.android.com/sdk/installing.html



NFC is now a feature that cannot be emulated with an emulator. so you will need to buy the actual device. The SDK demo also has FakeTagsActivity, but I would not recommend it as you could introduce errors and make sure your code works based on your own NFC assumptions.

+1


source


You can use the Java Contactless API .



+2


source


To get started, you usually need to get hardware. For example, NXP, ACS, Omnikey, etc. Then you can purchase SDKs with the product (including it included), these usually contain SDKs for JAVA, C and / or C #.

+2


source


Android supports NFC since Android 2.3

There is a demo project in the SDK

0


source


I have created an NDEF eclipse plugin that allows you to compose NDEF messages and write tags using the corresponding (free) Android (4.0) app.

It is based on the nfctools toolkit and is aimed at entry-level developers.

I also added NDEF Tools for Android , for which you might be interested - helps to handle NDEF messages at runtime.

0


source







All Articles