Ren Decano
Ren Decano
Found an interesting approach for coroutines implementation. https://medium.com/@andrea.bresolin/playing-with-kotlin-in-android-coroutines-and-how-to-get-rid-of-the-callback-hell-a96e817c108b I'll try to create a fork and see if I can implement it.. :) Cheers, Ren
Maybe you can do something similar to OptionsMenuService? Create something like AppPermissionsService to invoke all the listeners added (in your case a child RIB / Interactor)? https://github.com/aitorvs/android-architecture/tree/todo-ribs/todoapp/app/src/main/java/com/example/android/architecture/blueprints/todoapp
As mentioned by @Zhuinden , is it possible to cut the presentation layer into features and keep the domain/data part into a separate package? In this way, we can really...