Warwound, I'm not talking about the ZIP file which seems to be ok.
I tried this : (the Files sub-directory was empty, NOTHING under the Files tab)
Sub Process_Globals
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
End Sub
Sub Activity_Resume
Msgbox("done","")
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
The resulting APK was 82K.
Then I just copied -with windows explorer - a jpg file (1354K) to the Files sub-dir and compiled again (still with NOTHING under the Files tab).
The resulting APK was 1435K.
Checking the actual byte sizes of all 3 files it turned out that the 2nd, bigger APK file was 284 bytes bigger than the sum of the jpg + the smaller APK.
So my question still remains: why do ALL the files in the Files sub-dir get packed into the APK? What
exactly is the purpose of the Files tab (as I can refer to files in code)?