android-beam

Is it possible to use Android Beam between an android device and another NFC device?

天涯浪子 提交于 2019-11-29 13:09:49
问题 I'd like to implement a NFC communication between my Android app and a NFC-enabled kiosk. I've read the documentation and I understand pushing data can be done in 2 ways: Via foreground NDEF pushing for API level 10 to 13 Via Android Beam from API level 14 I think I can do what I want to via the first solution but I'd like to know if it's possible to use Android Beam between an android device and a non-android device? Thanks for your help, Romain 回答1: Although the function calls between API

Android NFC with USB-NFC-Reader

不羁的心 提交于 2019-11-29 08:20:26
I have an Android tablet with Android 4.2. This tablet does not have NFC hardware. However I have an external USB reader: ACR 1252U , that came with an Android library . This library unfortunately only gives me basic functionality - read and write Tags. Altough this is working quite well, it is not enough... Because for my application I need to transfer files from my Android 4.2 tablet to other NFC devices (Android smartphones). So I need to put the NFC reader into peer-to-peer mode - which it supports. But how can I achive this with my setup? There indeed is an SDK for that reader, but it's

Host card emulation on Android (4.4 / KitKat and above) with Nexus 5

℡╲_俬逩灬. 提交于 2019-11-28 21:56:06
I'm trying to emulate an NFC tag with my Nexus 5 according to this document , but my service is never invoke. Should I turn off Android beam? I'd like to emulate a simple tag containing a url. The reader is a Nexus 7 (2012) and I've figured out the process like a simple scan of a NFC tag using Android beam on Nexus 7. In addition I'm a bit confused about aid-filter name. Is there a list of them? I'm sure that I don't understand something. Thanks First of all (though this does not directly answer your question), the preferred way to transfer a URL between two Android NFC device is to use

Android NFC with USB-NFC-Reader

ぐ巨炮叔叔 提交于 2019-11-28 01:40:49
问题 I have an Android tablet with Android 4.2. This tablet does not have NFC hardware. However I have an external USB reader: ACR 1252U, that came with an Android library. This library unfortunately only gives me basic functionality - read and write Tags. Altough this is working quite well, it is not enough... Because for my application I need to transfer files from my Android 4.2 tablet to other NFC devices (Android smartphones). So I need to put the NFC reader into peer-to-peer mode - which it

NFC tag detection is not calling onNewIntent and it's Launching From Main Activity

懵懂的女人 提交于 2019-11-27 20:49:09
I am new to NFC. I tried to connect to NFC and share the text data from a device to another device. I install my application on both devices and in one device I open my application and start tapping the device to the another device in order to transmit data over Beam. On the other device, my application opens due to the Beam interaction. However, the activity is started with the default MAIN intent action and not with TAG_DISCOVERED (or similar NFC intent). Every time it does the same thing. Also, it's not calling the onNewIntent() method. I tried to call onNewIntent from onCreate , but the

NFC tag detection is not calling onNewIntent and it's Launching From Main Activity

自闭症网瘾萝莉.ら 提交于 2019-11-26 20:30:21
问题 I am new to NFC. I tried to connect to NFC and share the text data from a device to another device. I install my application on both devices and in one device I open my application and start tapping the device to the another device in order to transmit data over Beam. On the other device, my application opens due to the Beam interaction. However, the activity is started with the default MAIN intent action and not with TAG_DISCOVERED (or similar NFC intent). Every time it does the same thing.