I actually thought about that right after I wrote the answer.
I originally did the whole SNavigation thing so that I could then import it and change its name (by using "import [package].SNvaigation as Navigation) and then just use it instead of the Navigation class, but then I realized that in Kotlin you can’t access the static methods of a class from an instance (while in Java you can, although you get a lint warning), so I just edited my approach to use a different object name. Your answer is obviously more idiomatic and “Kotlinized,” so yeah, kudos on that.