Exclude files not working

My build.settings
 

settings = { orientation = { default = "portrait", supported = { "portrait", "portraitUpsideDown"}, }, splashScreen = { enable = false }, excludeFiles = { all = { "Images.xcassets", }, win32 = { "Images.xcassets", } }, window = { titleText = { default = "GEt 10", }, } }

I tried a few more variations of exclude (“Images.xcassets*”,“Images.xcassets*”), the build still doesn’t exclude em.

Correction: it works if you put it in all as expected, just not in win32 (which if I read correctly is what html build.settings respond to)

Cheers

html5 builder uses ‘web’  keyword, so try 

    web = {
            “Images.xcassets”,
        }

Yep, that works! Much appreciated

html5 builder uses ‘web’  keyword, so try 

    web = {
            “Images.xcassets”,
        }

Yep, that works! Much appreciated