Related to : Error: onActivityResult overrides nothing
I've tried Dhaval Patel's solution and get the report that it overrides nothing from my parser. Omitting the override annotation reports that it hides the super method and override is required. Is there an issue with my parser?
How the documentation says to implement the method (which won't compile) https://developer.android.com/training/basics/intents/result
How I only get a parser warning - overrides nothing, override redundant
override fun onActivityResult(requestCode:Int, resultCode:Int, data:Intent?)
How I get a compile error - override annotation required:
fun onActivityResult(requestCode:Int, resultCode:Int, data:Intent?)