安全元件教程错误

发布于 2025-01-03 16:25:10 字数 287 浏览 0 评论 0原文

我是 Android 开发新手。我使用UsingSmartCardAPI 教程来了解如何使用SmartCard Api 访问安全元素。不幸的是,我在尝试运行该项目时遇到错误。 教程链接 - http://code.google.com/p/seek- for-android/wiki/UsingSmartCardAPI

感谢有人可以帮助我解决这个问题。

I'm new for android development. I was using UsingSmartCardAPI tutorial to understand how to access Secure Element using the SmartCard Api. Unfortunately I'm getting error when try to run the project.
Tutorial Link - http://code.google.com/p/seek-for-android/wiki/UsingSmartCardAPI

Appreciate if someone can help me on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2025-01-10 16:25:10

是否找到了答案,但为我解决问题的方法如下(我正在使用 Android Studio 来开发一个使用 SmartCard API 和实际 Android 设备的应用程序,而不是使用 PC/SC 的模拟器):

  1. 不确定您 设备可以支持 SmartCardService
  2. 在使用它的所有活动中包括 simalliance 库的导入指令,并将以下行放入我的应用程序 gradle 中:
    提供的文件('libs/org.simalliance.openmobileapi.jar')
    提供的 fileTree(include: ['*.jar'], dir: 'libs')

一旦我将这两行从编译更改为提供,我的服务就连接了。

Not sure if you found the answer, but what fixed the problem for me were the following (I'm using Android Studio to develop an app using the SmartCard API with an actual Android device, not an emulator with PC/SC) :

  1. Ensuring your device can support SmartCardService
  2. Including import directives of the simalliance library in all the activities that use it and putting the following lines in my app gradle :
    provided files('libs/org.simalliance.openmobileapi.jar')
    provided fileTree(include: ['*.jar'], dir: 'libs')

Once I changed those two lines from compiled to provided, my service connected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文