1

I just downloaded the Open NFC API and it comes with an example project called NFCBrowser. I have gone through the PDF they have provided for the configuration of the AVD. But in the page no. 10 it says:

3.4 Launching of the AVD and starting of the Open NFC stack

The connection center is used by the “Open NFC for Android” add-on to access to NFC controller.Prior launching the AVD, the Connection center must be launched and configured to accept client connections from other machines, as shown below:"

and I am not able to find connection center as mentioned in the PDF.

I am also getting this error when try to run this application which says:

no NFC access granted at all for the application

4

2 回答 2

3

要使用 NFC API,应用程序必须通过声明向用户请求许可

<uses-permission android:name="android.permission.NFC">

在他们的清单文件中。

于 2011-01-27T20:39:25.177 回答
0

连接中心是与 Open NFC 核心版捆绑在一起的 Windows 应用程序。您将需要它来配置 NFCC 模拟器。NFCC 模拟器和运行模拟器所需的相应内核映像随 OpenNFC SDK 插件一起提供(如果您不知道从哪里获得它,请告诉我)。有关更多详细信息,请参阅我在类似线程上的帖子。正如我刚刚发现的那样,连接中心 AFAIK 没有相应的 Linux 版本——我在 Ubuntu 主机上。

于 2011-07-22T16:53:52.607 回答