Register
Register copied to clipboard
Mark all APP module resources as private
All resources in a library default to public. To make all resources implicitly private, you must define at least one specific attribute as public. Resources include all files in your project’s res/ directory, such as images. To prevent users of your library from accessing resources intended only for internal use, you should use this automatic private designation mechanism by declaring one or more public resources.
To declare a public resource, add a
The following example code creates two public string resources with the names mylib_app_name and mylib_public_string:
@wdziemia this seems like something that we should still do. Should we include in 1.0?
Yea this would be nice