1

... but also I do not have to see that lint warning. It suggest to upgrade from 1.3 RC to 1.4 Alpha.

What would you suggest to do?

Solvek
  • 5,158
  • 5
  • 41
  • 64

1 Answers1

0

To disable the warning for a specific dependency, you can use the noinspection annotation just above the line that causes the warning. Like this:

//noinspection GradleDependency
implementation 'compose.....'

You can also check how to disable linting for whole gradle files or scopes

Vojin Purić
  • 2,140
  • 7
  • 9
  • 22