Reputation: 4262
I am developing an android application and I want to store my data securely.
There are two way for that
Storing Sim card
I want to use second one but I don't want to buy this card before I make sure it is useful for me.
I am running Google's SmartcardSample
(svn) application.
But I get an error like this.
Upvotes: 0
Views: 8123
Reputation: 11662
See this answer for using the SIM as Secure Element https://stackoverflow.com/a/9364030/156477 (Its not scalable solution at present).
This isn't Google's code, and the SEEK API isn't part of Android (out of the box). Have a look at http://code.google.com/p/seek-for-android/wiki/SmartcardAPI. You'll see at the bottom you need to rebuild your own version of the Android OS, and flash it to your device.
I notice you haven't tagged the question with NFC. I wonder, do you really need SmartCard support or do you just need to store data securely? The typical SmartCard use case is to use the phone for payment, or building access - know as NFC Card Emulation mode.
Upvotes: 1