Classic Titanium App to Alloy #12730
-
Hi, is there an in detail documentation how to perform an update from Classic Titanium App to Alloy? thank you in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
it would help a bit if you tell us where you are stuck. Haven't used a classic setup in ages but what I do is:
ignore all the views and styles for now, that is the stuff that follows in step 2 of the tutorial. Oh and move your assets. Depending on your code and the SDK you were using it should already build and run now. After that it is time to move all the |
Beta Was this translation helpful? Give feedback.
it would help a bit if you tell us where you are stuck. Haven't used a classic setup in ages but what I do is:
appc new --no-services
)app/lib
(like in step 1) so basically all the files yourequire
in your codeapp.js
intoindex.js
since that is the new starting point of your Alloy app<alloy />
fromviews/index.xml
ignore all the views and styles for now, that is the stuff that follows in step 2 of the tutorial. Oh and move your assets. Depending on your code and the SDK you were using it should already build and run now.
After that it is time to move all the
Ti.UI.createWindow()
stuff i…