My question is related to having a code module in a B4Xlib.
Our company has a PTT system. Currently each PTT Channel runs in its own VM. We are looking at consolidating it into one app, 'PTT Exchange'. I have taken all the class's of the original PTT channel an created a B4XLib. I can then create an instance of each channel in the new consolidated app.
I want to know if the code module in the B4Xlib is local to the instance or is it common to the whole consolidated application.
I think it will be common to the whole application in that there will be only one code module loaded. A B4XLib is just a set of application modules/classes that are loaded from a zip rather than being added individually in the IDE.
I think it will be common to the whole application in that there will be only one code module loaded. A B4XLib is just a set of application modules/classes that are loaded from a zip rather than being added individually in the IDE.
Let's say I have a file, or a layout, in a b4xlib. And in another b4xlib I have two different files, but they are named identically. Will this name-clash cause problems at some point? I kind of imagine it will cause problems, as things aren't really namespaced (as far as I can tell), but on the...