Re: [android-developers] handled the android.nfc.action.TRANSACTION_DETECTED event

2012-02-18 Thread tarun sablok
Hii

Add the DEFAULT   Category as well in the Intent  filter , i think it will
work out for  you

   

   

Well  i am also working in NFC  making applications on Google Nexus S ... I
think you are also working in card Emulation mode..
can you give me some pointers  how to go ahead with Card Emulation
 applications , actually i am struggling to get the things up.

cheers

tarun


On Thu, Feb 16, 2012 at 1:57 PM, Usman  wrote:

> I am struggling to handle android.nfc.action.TRANSACTION_DETECTED
> event. The device is NFC and also contains secure element which
> supports SWP to the UICC.
> I have registered the following BroadCast receiver in my app.
> public class TransactionReceiver extends BroadcastReceiver {
>
>private String TAG = "TransactionReceiver";
>
>@Override
>public void onReceive(Context context, Intent intent) {
>Log.d(TAG, "Transaction performed ...");
>
>}
>
> }
>
> Below is my manifest.
> 
> http://schemas.android.com/apk/res/android";
>package="com.mycompany.android.nfc.uicc.test"
>android:versionCode="1"
>android:versionName="1.0" >
>
>
>
>android:icon="@drawable/ic_launcher"
>android:label="@string/app_name" >
>android:name=".AndroidUiccTestActivity"
>android:label="@string/app_name" >
>
>
>
> android:name="android.intent.category.LAUNCHER" />
>
>
>
>android:name=".TransactionReceiver"
>android:enabled="true" >
>
> android:name="android.nfc.action.TRANSACTION_DETECTED" />
>
>
>
>
>
> 
>
> I am not receiving the broadcast event when I present the device on
> the contactless reader. Could anyone point out if I am missing
> anything or if following the right route.
> The android.nfc.action.TRANSACTION_DETECTED is hidden from the google
> api but can found at
> http://www.androidjavadoc.com/2.3/android/nfc/NfcAdapter.html#ACTION_TRANSACTION_DETECTED
> .
>
> thanks in advance
>
> --
> 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] handled the android.nfc.action.TRANSACTION_DETECTED event

2012-02-16 Thread Usman
I am struggling to handle android.nfc.action.TRANSACTION_DETECTED
event. The device is NFC and also contains secure element which
supports SWP to the UICC.
I have registered the following BroadCast receiver in my app.
public class TransactionReceiver extends BroadcastReceiver {

private String TAG = "TransactionReceiver";

@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "Transaction performed ...");

}

}

Below is my manifest.

http://schemas.android.com/apk/res/android";
package="com.mycompany.android.nfc.uicc.test"
android:versionCode="1"
android:versionName="1.0" >






















I am not receiving the broadcast event when I present the device on
the contactless reader. Could anyone point out if I am missing
anything or if following the right route.
The android.nfc.action.TRANSACTION_DETECTED is hidden from the google
api but can found at 
http://www.androidjavadoc.com/2.3/android/nfc/NfcAdapter.html#ACTION_TRANSACTION_DETECTED.

thanks in advance

-- 
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