It seems to be a problem with upper- and lowercase of the filenames. Maybe you have an idea?
You have a reference in the *.b4a-file (zB: File1=Layouta.bal) and you have the *.bal-file in \Files-subfolder in your project-folder.
Try 1:
If you create a project and create a layout (you name it: "LayoutA"), then you have the following constellation, when you save the project on a FAT32-drive (=my situation):
In b4a-file: File1=LayoutA.bal
File in directory (FAT32): LAYOUTA.BAL
The warnings in the IDE appear.
Try 2:
If you copy the BAL-file to another folder, remove it from the files-tab in B4A and add the copied file, then you have the following:
File1=LAYOUTA.BAL
File in directory (FAT32): layouta.bal
The warnings in the IDE disappear.
Try 3:
If you repeat Try 1 and save the project on a NTFS-drive:
In b4a-file: File1=LayoutA.bal
File in directory (NTFS): layouta.bal
No warnings in the IDE.
Try 4:
If you create a project and create a layout (you name it: "layouta" -> all in lowercase), then you have the following constellation, when you save the project on a FAT32-drive:
In b4a-file: File1=layouta.bal
File in directory (FAT32): layouta.bal
I don't know why, but now I can start the project in emulator successfully without crashes. It doesn't matter, if the warnings appear or disappear. Maybe there was something wrong in memory in the morning, which prevents a successfully execution...
But it seems, that there is an issue, when storing the B4A-project on FAT32-drives?!