安全元件教程错误
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否找到了答案,但为我解决问题的方法如下(我正在使用 Android Studio 来开发一个使用 SmartCard API 和实际 Android 设备的应用程序,而不是使用 PC/SC 的模拟器):
提供的文件('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) :
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.