We have an Android app that writes data to a NFC tag using Android Beam. After deprecation of Beam in sdk 29, is there any alternative for data transference with a NFC tag?
Is it possible to use Google Nearby Share with a NFC tag?
I didn't found any documentation for it.
Is it possible to transfer data to NFC tag without Beam? Any alternatives?
991 Views Asked by Belen Araña At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in TAGS
- How to make a multi model tag_cloud with a join table?
- Inserting template code below code in Handlebars layout.hbs
- Is it possible to access gmail anonymous profile for a logged in user?
- Youtube Google API V3: List Videos not returning video tags
- Winforms control for displaying html text
- git-svn problems creating tags
- Having an archive page with categories and tags
- How to keep comma between tags in _form?
- PHP Comment Tag
- custom WordPress tag.php page .. trying to get tag info
- Pushwoosh: how does it work
- Styling Two Navigation Bars
- git tag -l does not remove deleted tags
- unexpected end of file in html code
- <H2> followed by <Sup>
Related Questions in SHARE
- UIActivityViewController optional / different Content for different ActivityTypes
- SpriteKit share button not working
- how to share different urls via uiactivityviewcontroller?
- Difficulty placing share button in wordpress
- Facebook Share - codes in description
- Local files shared between two projects stored in git
- android development: how does my intent / icon get added to user's list like other social media in Android
- How to put file from android app to pc in LAN network
- Facebook Share button (add "via page" to share)
- Intent Filter for app in share menu - only show if LOCAL files are shared
- How to get and store Twitter share counts in database?
- Sharing photo using facebook sdk 4.2.0
- Dealing with extensionContext.inputItems for ShareExtension. Why only get firstObject of inputItems?
- How to share an Custom Image on LinkedIn Share
- Android Wear : create an App chooser
Related Questions in NFC
- Android NFCA issues
- Access protection for NFC Tags
- Android makeReadOnly() throws IOException
- NFC Bluetooth handover - WITHOUT user confirmation
- Using external ACR1222L to get NDEF Messages w/ nfctools OR nxpnfclib
- node-hid not showing all USB devices
- How to convert a Chinese string to english for windows phone store apps[Javascript]
- How can I prevent (overwriting or format or cloning anything else) my NFC TAG?
- Android HCE issue
- onNewIntent() being called in onResume() multiple times
- When app receives NFC data it opens "New Tag collected"
- Android NFC passing single parameter when starting application
- How to mock a Android NFC Tag object for unit testing
- Short range communication (Bluetooth, NFC ?)
- NFC Write Sample
Related Questions in ANDROID-BEAM
- How to receive file using NFC (Android Beam) in Android
- How to a send SNEP GET request from Android
- NFC Android App acting differently on different phones
- Android Beam: mimetype between different apps
- Android Beam: keep pairing
- Sending NDEF messages over NFC
- Beam meta informations to my app or a URL if app is not installed
- Is it possible to transfer data more than 2 times between two nfc supported android device without moving phones
- Disable Android Beam for selected activities
- Sending URL from Android to Windows Phone via NFC gives Play Store link
- Is it possible to use Android Beam between an android device and another NFC device?
- How to read NFC Beam and tags?
- Is it possible to transfer data to NFC tag without Beam? Any alternatives?
- Simulate NFC tag on an Android phone
- Android NFC still weak of API on 4.0.3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Google Nearby Share is Bluetooth or Wifi Direct as these were deemed by method to transfer data in the deprecation of Android Beam.
It should be technically possible to still transfer data via NFC without Android Beam, though there are some technical difficulties to over come.
One Device pretends to be a NFC Card with Host Card Emulation (HCE) and the other device reads/writes to it as if it was a normal Type 4 NFC card.
There are some complications if one device still has Android Beam but using the
enableReaderModeNFC API to read/write to the Emulated Card should get around this.I think some people of StackOverflow have tried this, I have not personally but the process of using HCE should be technically possible.