I have an app divided by different modules, one of which is the "Resources" module where it has the Assets, localization strings, fonts, etc.
I wanted to leave the R.generated inside the module (framework Resources, since everything related lives there).
But I can't, because the R type is internal, I cannot access it from the other modules / main app.
FYI The compile error when the type is internal (the default by Swift) is "Cannot find R in scope"
I have an app divided by different modules, one of which is the "Resources" module where it has the Assets, localization strings, fonts, etc.
I wanted to leave the R.generated inside the module (framework Resources, since everything related lives there). But I can't, because the
R
type is internal, I cannot access it from the other modules / main app. FYI The compile error when the type is internal (the default by Swift) is "Cannot find R in scope"Can we add the
public
?