This is not duplicate of InAppropriate names of parameter in implemented/overrided methods
How to get correct naming for arguments in method. In kotlin when we override any method its arguments name be like p0, p1 upto number of arguments. for example
in java
@NonNull
@Override
public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int position) {
}
in kotlin
override fun onCreateViewHolder(p0: ViewGroup, p1: Int): ViewHolder {
}
I already tried the given suggestion/answer in above linked question and restart the android studio and also perform clean/build project. But no success till now. Thanks in Advance
I am using stable release Android Studio 3.2.1 for MAC, compileSdkVersion 28 and also installed sources for the same
EDIT
i also found the same issue has been asked here on SO