How do you use the dynamic variables in the remote load path

Hi all,

I am still new to the addressable loading system and I have hit a little snag. I have tried to use the dynamic variables in the remote load path those in curly brackets {}. I need it to set a load path to our backend platform that contains the asset bundle I need to load. Only select users will have access to the asset bundle. I have got it to work as the documentation says it should if I put that variable in a namespace e.g:

{MyNamespace.MyClass.overrideURL}/[buildTarget]

But that only works if I set the overrideURL as a public static string. This URL will contain some user-specific terms so I have some worries about having that string exposed. Are there any other ways to reference a variable other than having it as a static one?

No, the property has to be static to be found for the class.
You can use the property to look into a singleton however.