Sadip Acharya

Results 12 comments of Sadip Acharya

can any one help on solving the issue for instance? even after removing the library implementation, it is giving the same error.

For the search by default, there should be mike enabled. Please verify that first. If you don't have mike enabled, need to customize search Fragment

Hello, I've used the codebase here, as base module, and created other modules like app, auth, feature, etc. which are again separated with core module on each that consists of...

> You can use Either for exception handling very much like Try. Either has one advantage over Try: you can have more specific error types at compile time, while Try...

@UriAbadAtabix Have you looked onto the Either and Usecase class? for reference, I've used this for post api class DoLogin ``` @Inject constructor(private val featureAuthRepo: FeatureAuthRepo):UseCase(){ data class Params(val mac:String,...

@Zhuinden Yes I agree on you, but for the startup on going through clean-architecture and to find all the functionalities without going through all the project, I found it easier...

it is just an example. You can use single entity class on all the layers you want or define the specific entity depending on each layer. I prefer to use...

it depends what and where you want to validate, if you want to validate on the views itself or if you want to validate before api call

I inherited ViewModelFactoryModule in different module to achieve it. It came quite hard to figure out **injection could not be done unless one viewmodel injects in constructor**

what I am doing is, put everything in core package with other utils required in a different module. > Just do not create daggerComponent for it > the module shall...