release_notes.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. Social Connect QML Plug-in
  2. ==========================
  3. This plug-in delivers an interface for Qt Quick developers for accessing the
  4. APIs of Facebook and Twitter that allow creating mobile applications powered
  5. by social media.
  6. The plug-in is hosted in Nokia Developer Projects:
  7. - http://projects.developer.nokia.com/socialconnect
  8. The main features of the plug-in are:
  9. - Out-of-the-box support for Facebook and Twitter
  10. - Integrated authentication implementation
  11. - Simplified common interface for all supported services
  12. - Interfaces for native API calls
  13. - Design enabling easy addition of new services e.g. LinkedIn
  14. The plug-in also contains some simple examples.
  15. The plug-in can be used as a pre-compiled shared library or you can copy the
  16. source code into your project and compile it with your application. Although
  17. the plug-in has been designed to be used with QML UI applications, it can also be
  18. used as-is with Qt C++.
  19. For more information on the implementation and usage, visit the wiki pages:
  20. - http://projects.developer.nokia.com/socialconnect/wiki
  21. - http://projects.developer.nokia.com/socialconnect/wiki/GettingStarted
  22. 1. Prerequisites
  23. -------------------------------------------------------------------------------
  24. - Qt basics
  25. - Qt Quick basics
  26. 2. Project structure
  27. -------------------------------------------------------------------------------
  28. | The root folder contains the project file, the license
  29. | information, and this file (release notes).
  30. |
  31. |- doc Contains documentation on the project in general.
  32. |
  33. |- examples Contains a set of example applications that utilise the
  34. | Social Connect plug-in.
  35. |
  36. |- plugin Root folder of the plug-in implementation.
  37. | |
  38. | |- src Plug-in source codes.
  39. |
  40. 3. Compatibility
  41. -------------------------------------------------------------------------------
  42. - Symbian devices with Qt 4.7.4 and Qt Mobility 1.2.1 or higher.
  43. - Nokia N9 (MeeGo 1.2 Harmattan).
  44. Developed with Qt SDK 1.2.1.
  45. 3.1 Required capabilities
  46. -------------------------
  47. In Symbian: ALL -TCB
  48. For more information on Symbian capabilities, see:
  49. - http://www.developer.nokia.com/Community/Wiki/App_types_that_require_sensitive_Symbian_capabilities
  50. 3.2 Known issues
  51. ----------------
  52. None.
  53. 4. Building and using the plug-in
  54. -------------------------------------------------------------------------------
  55. 4.1 Preparations
  56. ----------------
  57. Check that you have the latest Qt SDK installed in the development environment
  58. and the latest Qt version on the device.
  59. 4.2 Using the Qt SDK
  60. --------------------
  61. You can install and run the application on the device by using the Qt SDK.
  62. Open the project in the SDK, set up the correct target (depending on the device
  63. platform), and click the Compile button. For more details about this approach,
  64. visit the Qt Getting Started section at Nokia Developer
  65. (http://www.developer.nokia.com/Develop/Qt/Getting_started/).
  66. 4.3 Using the plug-in in your application
  67. -----------------------------------------
  68. The plug-in is by default compiled and installed to plugin/install. After this,
  69. you can use the plug-in in your QML application by doing
  70. "import SocialConnect 1.0". Note that the plugin/install directory must be in your
  71. QML module import path.
  72. Visit the online project documentation and see the examples for more
  73. information.
  74. 5. License
  75. -------------------------------------------------------------------------------
  76. See the license text file delivered with this project. The license file is also
  77. available online at
  78. http://projects.developer.nokia.com/socialconnect/browser/trunk/Licence.txt
  79. 6. Version history
  80. -------------------------------------------------------------------------------
  81. 1.0 Initial release