Swift - Resources and Schemes (anyone?)

I have a very strange situation… I have an Xcode project that can compile for macOS/ iOS and tvOS
everything runs fine… EXCEPT for tvOS accessing ONE specific resource folder

MainFolder
|
+--- Folder_1
|      |
|      +-- Subfolder 1
|      |    |
|      |    + [list of files in subfolder]
|      |
|      + [list of other files in Folder _1]
|
+--- Folder_2
|      |
|      +-- Subfolder 2
|      |    |
|      |    + [list of files in subfolder]
|      |
|      + [list of other files in Folder _2]
|
+--- Folder_3
      |
      +-- Subfolder 3
      |    |
      |    + [list of files in subfolder]
      |
     + [list of other files in Folder _3]

MainFolder is designated to be accessible by all 3 target platforms. There is no way to add targets to any folder UNDER Mainfolder.

All the platforms can access ALL the files EXCEPT that AppleTV cannot access the contents of SUBFOLDER_1 (but it can everything else, include the other subfolders)

I cannot find anything that allows me to alter any permissions except at MainFolder

Anyone have any ideas?

Solved… don’t know why… but I deleted the resources and added them back again… and it all worked…

Go figure