How to stop Kotlin from override onDestroyView() in Fragment?
In our Base Fragment, we define the method onDestroyView() as final so the child won’t override it.
But Kotlin will override the method to call clearFindViewByIdCache().
Is there a solution?