Original Author Paul Laughton, 2011
Page 223
De Re BASIC!
Save the changes to setup.xml.
Note: If you do want to load files to the SD card, you must allow the creation of the data directory (set
"apk_create_data_dir" to true) and put the file names in the "load_file_names" list like this:
The files will be loaded from the assets folder. This will be explained in the next sections.
At this point, you have modified the source files of the BASIC! interpreter so it can be packaged into a
standalone application. You can build and run it, if you like, but it will display a blank Console. That's
result you get when you build BASIC! into an application but you don't give it a program to run.
Advanced Customization with setup.xml
The setup.xml file allows more customization than the minimum required for Cats.
The VERSION$() function gets its value from the item named "version". If your application uses
VERSION$(), this is where you set the value you want it to return.
The item "my_program" is the name of the BASIC! program you want your application to run. This will
be explained in the next section.