Android Question Newbie: Where does *.bas go?

Christopher Brown

Member
Licensed User
Longtime User
I've grasped the fact that "*.xml" and "*.jar" go into the additional library folder, and that "*.b4a" is the program source code ... but when I looked at "CameraEx", it includes a "*bas" (BASIC?) file. So where does that go?
 

Christopher Brown

Member
Licensed User
Longtime User
When I looked at the IDE again, I found that the "*.bas" file had already opened a second tab in the window beside main, so if must have "read in" the data. (Alas, I THEN read that CameraEx is for a modern OS. My device is using 1.41 - which I think is quite old.
 
Upvote 0

raphaelcno

Active Member
Licensed User
Longtime User
I've grasped the fact that "*.xml" and "*.jar" go into the additional library folder, and that "*.b4a" is the program source code ... but when I looked at "CameraEx", it includes a "*bas" (BASIC?) file. So where does that go?

The usual directory for ".bas" files is the same as for the ".b4a" file.
The "b4a" file contains the code of "Main" module, and there is one "bas" file for each additional module (tab).
 
Upvote 0
Top