Hi all, I have been building an Android Library that starts internally an Activity. What is the best way of sending data ( complex object ) to this Activity? I think of a Kotlin object as singleton object (repository) to store all the config/data and fetch the data via this object in the Activity. Should I get back to pass parcelables instead ? Thanks in advance.