У нас вы можете посмотреть бесплатно Dependency Injection with Kodein & MVVM Architecture - Android Kotlin Tutorial или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
📗 Get the code from this tutorial 👇👇 https://resocoder.com/di-kodein-mvvm 💉 Kodein Docs: http://kodein.org/Kodein-DI/ Start saving time now by planning weekly with Week Sweep: http://bit.ly/2Jf3QA0 Not a single software developer ever said that a more loosely coupled code gives him headaches. On the contrary, tight coupling can and will create a bunch of things that are hard to deal with. But first, what is that "loose coupling"? Loose coupling means not instantiating dependencies of a class directly but getting them from a centralized place. Dependencies are simply classes which are needed by other classes. For example, a view model needs a repository, so the repository is a dependency of the view model. Loose coupling also means that your classes operate with their dependencies through an interface and not directly with their concrete implementation. This allows you to swap implementations really easily. For example, a production implementation of a database will store data on a remote server, while a test implementation will store data only locally. In this tutorial you are going to learn how to put what's written above into practice by using a dependency injection framework called Kodein. It is specifically designed to work well with Kotlin and it's also compatible with Java. Go to my website for more information, code examples and articles: ● http://resocoder.com Follow me on social media: ● / resocoder ● / resocoder