5

After upgrading android studio to 2022.1.1 many of my grade functions were marked with this warning:

enter image description here

How should I resolve warnings?

Thales Isidoro
  • 1,753
  • 1
  • 5
  • 19
Amir Hossein Ghasemi
  • 20,623
  • 10
  • 57
  • 53

1 Answers1

3

So from what others have written about this, this seems to be only a hint that it might change at one time in the future. Right now this seems to be still fine.

Basically it means you should keep your eyes open for changes in future versions since someone is working on making this better. If it really bothers you, Krystian Kaniowski mentioned in his answer:

https://stackoverflow.com/a/63915888/1565635

that you can suppress it for now via

@Suppress("UnstableApiUsage") 
Tobias Reich
  • 4,952
  • 3
  • 47
  • 90