I just created this monster excludeFiles setting, and I’m just wondering if there’s any reason why this shouldn’t work across all devices? I used the latest build.settings documentation to make sure I only excluded the things that should be across Android and iOS, and everything works on my devices, I’m just asking if there’s anything weird I should look out for?
http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
If there are no problems anyone can see, feel free to use this in your own projects…
excludeFiles = { -- Exclude all files at paths which end with "secret.txt": all = { "GliderProperties.proj", -- Lua Glider project file }, -- Exclude all Android icon files and .ogg files in the "music" directory: iphone = { -- Android icons "Icon-\*dpi.png", -- Android music "music/\*.ogg" }, -- Exclude iOS icon files and .m4a files in the "music" directory: android = { -- iOS icons/images "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-40@3x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "iTunesArtwork.png", "iTunesArtwork@2x.png", -- iOS Launch images "Default-568h@2x.png", "Default-667h@2x.png", "Default-736h@3x.png", "Default-Landscape-568h@2x.png", "Default-Landscape-667h@2x.png", "Default-Landscape-736h@3x.png", "Default-Landscape@2x.png", "Default-Portrait@2x.png", -- iOS music "music/\*.m4a" } },