Gooday! I have created a simple Kotlin library ava...
# android
p
Gooday! I have created a simple Kotlin library available via jitpack.io, when I extend my
BaseActivity
class Android Studio complains that
Overriding method should call super...
as a lint error. Since my inheriting class obviously calls super;
Copy code
override fun onPostResume() {
  super.onPostResume()
}
I guess this must be a lint error in AS or smth.. any ideas? 🤔
k
What is the actual signature of the library method you are overriding?