NOTES:
1. There is a new version of the ABMaterial library included (5.15) with the fix
2. In an ABMMini project, you must add the icons BEFORE Initializing the server:
B4X:
...
' needs to be done BEFORE Server.Initialize!
ABM.AddFavorityIcon("favicon-32x32.png", "32x32")
ABM.AddFavorityIcon("favicon-16x16.png", "16x16")
Dim DonatorKey As String = ""
Server.Initialize("", DonatorKey, "template") ' Application = ' the handler that will be used in the url e.g. http://localhost:51042/template
' some parameters
Server.Port = 51042
...