Suppress warning ~ Actual value of parameter X is always Y
File > Settings > Editor > Inspections > Find:"Actual method parameter is the same constant" uncheck and android studio restart
You can suppress it with
JAVA:
@SuppressWarnings("SameParameterValue")
KOTLIN:
@Suppress("SameParameterValue")