Re: [android-developers] NFC Application

2012-07-20 Thread GregM
Hi,

I suggest looking at the example here:

https://github.com/gast-lib/gast-lib/blob/master/app/src/root/gast/playground/nfc/NFCInventoryActivity.java

The code helps you write an Activity that helps the user create the right 
NFC tags. Just copy and paste the code into your app and change the MIME 
type and what data it writes to the NFC.

Greg

On Thursday, July 19, 2012 11:27:50 PM UTC-4, rmq wrote:

 What kind of Application you need to develop. 
  
 You can donwload some exmaple applicaiton from the path 
  
 http://developer.android.com/tools/samples/index.html and also go through 
  
 http://developer.android.com/guide/topics/connectivity/nfc/nfc.html
  
 Which is the protocol you will be supporting with NFC . I wanted to know , 
 if it NDEF category or ISO 15693 or ISO 14443.  If the card does not 
 support NDEF then you need to do bit differently 
  
 Regards
 Raunaque 


  
 On Thu, Jul 19, 2012 at 11:45 PM, TreKing wrote:

  I want to develop a NFC based application and don’t know where to 
 start. Can you give me some suggestions / help, any useful links.


 http://developer.android.com/guide/index.html


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] NFC Application

2012-07-19 Thread TreKing
On Tue, Jul 17, 2012 at 1:59 AM, Amarnath Choudhary 
amarnathchoudh...@gmail.com wrote:

 I want to develop a NFC based application and don’t know where to start.
 Can you give me some suggestions / help, any useful links.


http://developer.android.com/guide/index.html

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] NFC Application

2012-07-19 Thread Raunaque Quaiser
What kind of Application you need to develop.

You can donwload some exmaple applicaiton from the path

http://developer.android.com/tools/samples/index.html and also go through

http://developer.android.com/guide/topics/connectivity/nfc/nfc.html

Which is the protocol you will be supporting with NFC . I wanted to know ,
if it NDEF category or ISO 15693 or ISO 14443.  If the card does not
support NDEF then you need to do bit differently

Regards
Raunaque



On Thu, Jul 19, 2012 at 11:45 PM, TreKing treking...@gmail.com wrote:

 On Tue, Jul 17, 2012 at 1:59 AM, Amarnath Choudhary 
 amarnathchoudh...@gmail.com wrote:

 I want to develop a NFC based application and don’t know where to start.
 Can you give me some suggestions / help, any useful links.


 http://developer.android.com/guide/index.html


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] NFC Application

2012-07-19 Thread Amarnath Choudhary
Hi!

I am new to this group and Android. I want to develop a NFC based
application and don't know where to start. Can you give me some suggestions
/ help, any useful links.

Regards,
Amar.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] NFC application startup on Home screen

2011-09-15 Thread rapgaroo
I've been trying to solve this for ages but couldn't find a proper
answer.

I have a NFC application installed on my Nexus S and I'm trying to
execute that application whenever I tap on my NFC tag.
Inside of my tag contains an URI. Currently, if I tap on my NFC tag,
the default Tag application gets started always.
However, if I start my application and then tap on the tag, it does
its job as I intented.

All I'm looking for is that..

is there a way to start a specific application when tapping to a NFC
tag without bringing out the default Tag application on the Android
nor the app chooser?

Or Is there a way to put my application on the app chooser menu when
it pops up on the Home screen immediately after tagging??

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] NFC application startup on Home screen

2011-09-15 Thread Mark Murphy
On Wed, Sep 14, 2011 at 5:03 PM, rapgaroo hcc...@gmail.com wrote:
 is there a way to start a specific application when tapping to a NFC
 tag without bringing out the default Tag application on the Android
 nor the app chooser?

Yes. You need the appropriate intent-filter. See:

https://github.com/commonsguy/cw-advandroid/tree/master/NFC/URLTagger

If you tap a tag that has the URL http://commonsware.com/nfctest, the
application will start up, courtesy of:

intent-filter android:label=@string/app_name
  action android:name=android.nfc.action.NDEF_DISCOVERED /
  data android:scheme=http
android:host=commonsware.com
android:path=/nfctest
  /
  category android:name=android.intent.category.DEFAULT /
/intent-filter

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android App Developer Books: http://commonsware.com/books

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en