I want to change the targetSdkVersion my Android project from 25 to 27. The problem is that I used Kotlin, but there are some big changes:
1) changed the signature View.findViewById() . Now I need to use findViewById<View>
2) the getContext() fragment has become not null safety, so I need to add !! to all context values in all fragments.
Is there a way to fix this automatically for the whole project? This is not a small project, and it will take a long time to complete these fixes manually.