is it possible to start activity in kotlin/native ...
# kotlin-native
i
is it possible to start activity in kotlin/native android specific module? or ask for strings, use resources etc
s
It looks like it is possible but tricky to do from a native activity. https://groups.google.com/forum/#!topic/android-ndk/SHCXgUCE7t4
On native Android you should have access to everything that is defined in that platform under https://github.com/JetBrains/kotlin-native/tree/master/platformLibs/src/platform/android
i
@Sam the issue is that I need to use some platform strings or drawables, or even start app from zero by starting splash screen for each platform, at versions before 1.3.20 the folders of the project were structured the way that android specific module could see the android app module so things were easy with MyApp:Application context. Now android specific module cant see app, so kn plugin update played big joke on me) Trying to figure out a way without some object Singleton with interface realization for each platform