Android-CleanArchitecture-Kotlin
Android-CleanArchitecture-Kotlin copied to clipboard
This is a movies sample app in Kotlin, which is part of a serie of blog posts I have written about architecting android application using different approaches.
Any idea that how to use this architecture to be able to observe changes in database or firebase etc. Could be modified or create a new use case class Greetings
Would it be a good optimization to mark onResult() as inline?
I like the way it's doing all the work in background with asyc.await(). I also follow similar approach for my code base. But I couldn't find a better way to...
I would like to know what is the correct way to organize the different Models that represent the same Object in the different Layer of the application. For example in...
I want to auto cancel all UseCase request that is tied to the ViewModel. For now: I have reigstered a callback for `ViewModel.onCleared()` event. So when the `onCleared()` is called,...
when running MovieDetailsViewModelTest, I found the test always pass though I changed assertion of a test Also I set a debug inside LiveData, the test never reach the breakpoint ```...
## What? Pull in latest plugin and dependency versions; address deprecation warnings. ## Why? Stay up-to-date with the build ecosystem before things snowball and the project won't work with future...
## What? Fill out a short description about the purpose of the PR. ## Why? Fill out why this feature is needed. ## How? Explain in short terms what you...
Scenario: - I have 3 UseCase to perform 3 different API Request. - Based on the 3 UseCase response I need to combine them all according to the business logic....
In the examples, I see that you are returning the repository result, without implementing any other operation against them. But it is common, that in an use case you have...