Android Question Code modules files location

David Cochrane

Member
Licensed User
Longtime User
Every time I add an existing module to my project, it creates a local copy in project folder and uses only that.
How to share *.bas modules between projects?

For example, I have two project located at "C:\Project1" and "C:\Project2" and both use the same
"C:\Common\SharedModule.bas" file.

When I add "C:\Common\SharedModule.bas" to Project1 it creates a copy "C:\Project\SharedModule.bas" and ignores an original "C:\Common\SharedModule.bas" in the future.

I've tried to edit project *.b4a file and set a full or relative path to the module but this approach does not work
=====
Version=5.8
NumberOfModules=4

Module1= C:\Common\SharedModule.bas
...
===========
 
Top