Advertisement
Guest User

Untitled

a guest
Dec 5th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. Unify Project
  2. =============
  3.  
  4. Native-like applications for smartphones, tablets and desktops
  5. --------------------------------------------------------------
  6.  
  7. Unify was built to improve the development efficiency of apps for smartphones. Currently it supports smartphones based on the platforms iOS, Android and WebOS. There is support for deskop operating systems like Windows or Mac OS as well.
  8.  
  9. Unify is made available under a dual license: MIT + Apache, Version 2.0. For details take a look at the individual license files.
  10.  
  11.  
  12. Setup
  13. -----
  14.  
  15. You only need 5 steps to set up unify.
  16.  
  17. 1. $ git clone https://github.com/unify/unify.git
  18. 2. $ cd unify
  19. 3. $ git clone http://github.com/unify/qooxdoo.git
  20. 4. $ git submodule init
  21. 5. $ git submodules update
  22.  
  23. Usage
  24. =====
  25.  
  26. * Create an application:
  27.  
  28. $ python unify/tool/create-application.py -n $appname
  29. $ cd $appname
  30.  
  31. * Prepare development version (re-run after major changes)
  32.  
  33. $ ./generate.py source
  34.  
  35. * Create deployment version
  36.  
  37. $ ./generate.py build
  38.  
  39. There is a client auto detection built into the included index.html. You might to override
  40. your user agent string or just use the HTML file of the version you prefer to load. For
  41. example: to open the mobile version on a desktop browser just open "mobile.html" directly.
  42.  
  43. Tutorials
  44. ---------
  45.  
  46. Tutorials can be found at http://www.unify-training.com
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement