I have 3 projects:
- Android library
- Lite version of app
- Pro version of app
I want to override just the onCreate()
method of a class in the Android library. Is there a way to do this? I have been able to successfully override a whole class but I know it would save even more code duplication if I was able to override a single method in a class rather than override the whole class and duplicate 99% of the code just to change a couple of lines.
Hopefully that makes sense but let me know if it did not.