Wish Support for subdirectories in resources?

TheMightySwe

Active Member
Licensed User
Longtime User
Hi,

is support for sub
directories in resources in the GUI on the wish-list, if not I would like to put it there.


B4X:
    res/


        drawable-xhdpi/


        drawable-hdpi/


        drawable-mdpi/


        drawable-ldpi/
 

TheMightySwe

Active Member
Licensed User
Longtime User
I fixed it by adding this to the Project Attributes.

B4X:
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\*.* /s
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\drawable\*.* /s
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\drawable-ldpi\*.* /s
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\drawable-mdpi\*.* /s
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\drawable-hdpi\*.* /s
    #CustomBuildAction: 1, c:\windows\system32\attrib.exe, +r res\drawable-xhdpi\*.* /s
 
Top