- When the resource library is used, resources should be imported explicitly. Replace this:
- When the resource library is used, resources should be imported explicitly.
```
import <modulePackage>.generated.resources.Res
> To quickly change your code to a new state, replace this:
```
> ```
by this:
> import <modulePackage>.generated.resources.Res
```
> ```
import <modulePackage>.generated.resources.Res
> by this:
import <modulePackage>.generated.resources.*
> ```
```
> import <modulePackage>.generated.resources.*
> ```
> and perform "Code - Optimize Imports" to apply the project code style. If code style doesn't allow wildcrads, `import <modulePackage>.generated.resources.*` will be replaced by explicit imports.