... 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?
... 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?
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