mgrzechocinski
The dependency injection API has been reviewed to allow you to use destructured declaration directly, without forcing you to use a Map of value
factory { (activity: FragmentActivity) -> PermissionManager(activity) }
val myModule = module { single{ view : View -> Presenter(view) } // should be: single{ (view : View) -> Presenter(view) } }
arnaud.giuliani
A modern programming language that makes developers happier.