clean-architecture-components-boilerplate icon indicating copy to clipboard operation
clean-architecture-components-boilerplate copied to clipboard

A fork of our clean architecture boilerplate, this time using the Android Architecture Components

Results 7 clean-architecture-components-boilerplate issues
Sort by recently updated
recently updated
newest added

I could be wrong here but I thought the domain layer should not be aware of anything in the data layer, and I that the "entities" are actually at the...

This is probably not a big deal right now since there's currently just one ViewModel subclass, but it's still worth noting... Right now `BrowseBufferoosViewModelFactory` only supports one ViewModel subclass--`BrowseBufferoosViewModel`. If...

Have adapted some of this code for my own project and one issue I ran in to was around use of `CompositeDisposable.dispose()` in `FlowableUseCase` for case where I need to...

The requirements state Java 1.8, which requires anrdoid api 24. If this project truly requires 1.8, then will it not work on all api's below 24 which run java 1.7?

In the following code `saveBufferoos` is called even when data is retrieved from cache (db)....for relatively large amounts of data this can be pretty time consuming. ``` override fun getBufferoos():...

Hello @hitherejoe , I have a question about dependencies. Currently, **Remote** module depends on **Data**, and **Data** module depends on **Domain** and because of that If we want to get...

First off, thanks for all the great work that went into this repo. I just wanted some clarification with the purpose of `@PerActivity`. To explain further, after a configuration change...