release_notes.txt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. NFC NDEF Tag Reader
  2. ===================
  3. A simple NFC tag reader application for Windows Phone 8. This Nokia example app
  4. demonstrates how to use the Proximity API to read NFC Data Exchange Format
  5. (NDEF) compliant tags.
  6. This example application is hosted in Nokia Developer Projects:
  7. - http://projects.developer.nokia.com/nfctagreader
  8. For more information on implementation and porting, visit the wiki pages:
  9. - http://projects.developer.nokia.com/nfctagreader/wiki
  10. 1. Implementation
  11. -------------------------------------------------------------------------------
  12. 1.1 Important files and classes
  13. -------------------------------
  14. - MainPage.cs:
  15. Ties the UI and the application logic together. Contains the method for
  16. parsing the NDEF data. Shows the log containing the details of each tag
  17. read.
  18. - NdefRecordUtility.cs:
  19. Contains utility methods for handling NDEF tag data.
  20. - NdefRecord.cs: Container class for NDEF record data.
  21. - NdefRecordTypeDefinitions.cs:
  22. Contains the implementation for two Record Type Definitions (RTD) classes:
  23. NdefTextRtd and NdefUriRtd. Like the names of the classes indicate, the
  24. first is for text and the second for URI types.
  25. 1.2 Used APIs
  26. -------------
  27. - Windows.Networking.Proximity: ProximityDevice
  28. 2. Compatibility
  29. -------------------------------------------------------------------------------
  30. Compatible with Windows Phone 8. Developed with Microsoft Visual Studio Express
  31. 2012 for Windows Phone.
  32. 2.1 Required Capabilities
  33. -------------------------
  34. ID_CAP_NETWORKING
  35. ID_CAP_PROXIMITY
  36. 2.2 Known issues
  37. ----------------
  38. None.
  39. 3. Building, installing, and running the application
  40. -------------------------------------------------------------------------------
  41. 3.1 Preparations
  42. ----------------
  43. Make sure you have the following installed:
  44. * Windows 8
  45. * Windows Phone SDK 8.0
  46. 3.2 Using the Windows Phone 8 SDK
  47. ---------------------------------
  48. 1. Open the SLN file:
  49. File > Open Project, select the file NfcNdefTagReader.sln
  50. 2. Select the target 'Device'.
  51. 3. Press F5 to build the project and run it on the device.
  52. 3.3 Deploying to Windows Phone 8
  53. --------------------------------
  54. Please see the official documentation for deploying and testing applications on
  55. Windows Phone devices:
  56. http://msdn.microsoft.com/en-us/library/gg588378%28v=vs.92%29.aspx
  57. 4. License
  58. -------------------------------------------------------------------------------
  59. See the license text file delivered with this project. The license file is also
  60. available online at
  61. http://projects.developer.nokia.com/nfctagreader/browser/Licence.txt
  62. 5. Related documentation
  63. -------------------------------------------------------------------------------
  64. - Nokia Developer: NFC:
  65. - http://www.developer.nokia.com/Develop/NFC/
  66. - NFC Forum Specifications:
  67. - http://www.nfc-forum.org/specs/
  68. 6. Version history
  69. -------------------------------------------------------------------------------
  70. 1.0 Initial release