iOS Question Can Project Folder Structure Be Customised?

Status
Not open for further replies.

Tom Phillips

Member
Licensed User
Is there a way to re-structure a project's folders & files without files being copied to the root of the project? For example, the default folder structure takes this form:

B4X:
- Project
----- Files
       ---- etc...
----- Objects
       ---- etc...
----- AppName.b4i
----- AppName.b4i.meta
----- Main.bas
----- SomeModule.bas
----- AnotherModule.bas
----- Etc.bas

What I would like to do is something like:

B4X:
- Project
----- Files
        ---- etc...
----- Objects
        ---- etc...
----- Models
        ---- CatModel.bas
        ---- DogModel.bas
------ CustomViews
        ---- CustomModel.bas
        ---- CustomButton.bas
------ AppName.b4i
------ AppName.b4i.meta
------ Main.bas
------ SomeModule.bas
------ AnotherModule.bas
------ Etc.bas

I like to organise my folder structure based on responsibility of the class/module (as is done in the case of projects using design patterns like MVC or MVVM). When projects get large, it's easier to manage organise the files this way. Is it possible?
 

cklester

Well-Known Member
Licensed User
I'm wanting to set up my structure using the MVC or MVVM pattern, and so I found this thread.

I seem to remember reading somewhere in this forum that this is possible now (organizing folders and modules). Is it?
 
Last edited:
Upvote 0
Status
Not open for further replies.
Top