Does anyone know how to start application when phone is touched with a reader?
Type: Posts; User: mjakop; Keyword(s):
Does anyone know how to start application when phone is touched with a reader?
Hi
Does anyone know how to cancel p2p connection? I am having problems with canceling and closing it when user press Cancel (to not do some operation with the phone).
Why don't you try with NFC P2P? You find everthing that you need in com.nokia.nfc.p2p.*; package. But your reader must support this kind of cummunication.
We use for our applications arygon...
Same problem here. When will update for phone available?
How can I put application which uses NFC in secure application dir? Must I signed the application or upload it with external reader or something else?
In generally I only want so save visual...
I write myself this function which works good:
public String ByteToString(byte[] b){
String t="";
for(int i=0;i<b.length;i++) t=t+(char)b[i];
return t;
}