Bug? Unused files

mlc

Active Member
Licensed User
Longtime User
In version 4.30, on the Logs tab are not detected unused files, such as Thumbs.db in the files folder.
Before showed a warning.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
There are two different types of warnings related to asset files.
#14 - When there is a file in the Files folder that was not added to the files tab.
#15 - Warns of unused files.

#15 will be disabled if there is one or more places where the compiler cannot determine the loaded file.

For example:
B4X:
LoadBitmap(File.DirAssets, "File" & x)
 
Top