Thanks for that quick reply what is the easiest and fastest way to convert an activity based app to b4xpages?
Here is how I do it.
1. Create a new B4XPages project
2. Add all the libraries you used in the previous project (Eg. B4A)
3. Add Xui and XUI Views library if its not already selected.
4. Start copying your code and layout one by one from the previous project to the new one.
**You can test each page after the code transfer and make sure its still working before moving on to another page**
5. Create new B4Xpages for the different modules you have in the previous project.
**Make sure to Select ADD TO PARENT FOLDER for modules that will be shared by all platforms**
6. When done, move to B4i, all your code should be synced there.
7. Add all libraries that are needed, DONT worry about the B4A specific ones. If its not available to B4i you will get something different which you can handle with Conditional directive .
**Conditional Directives like #IF B4A...... #IF B4I for unique things in respective platforms**
8. Create new layouts and copy from B4A to B4i
9. DONT CREATE NEW PAGES...Click Project to Add EXISTING MODULES from the Parent Folder. Select Link Relative path
10. Work is done.