-
> https://github.com/android10/Android-CleanArchitecture
-
ref: https://github.com/android10/Android-CleanArchitecture
https://developer.android.com/jetpack/docs/guide#common-principles
this project is not big, will consider using MVVM to make it simple.
-
I have a library module that I am reusing across multiple applications.
The library is composed of two modules. One android library module that depends on a java library module that contains my doma…
-
I have errors, using Pixel 2XL with Oreo 8.1
`05-29 10:44:08.219 21446-21467/com.fernandocejas.sample I/zygote64: Explicit concurrent copying GC freed 14788(793KB) AllocSpace objects, 0(0B) LOS obj…
-
Resources:
- http://www.javapractices.com/topic/TopicAction.do?Id=205
- https://github.com/android10/Android-CleanArchitecture/issues/120
Right now the project uses an organization like this:
```
+ …
-
关于Android-CleanArchitecture的domain层
关于UserCase 的困惑:根据这边文章 http://www.jianshu.com/p/f3f0eccbcd6f “不能打断其链式结构”,确实rxjava的链式结构真的是一大优势,但是UserCase的写法我觉得已经违背了链式结构,因为没有办法几个请求使用flapmap链式执行了。还希望能够给点建议。
-
This is my etude.
## Design
first I will list up libraries I will use and try to use
- Retrofit
- Rx
- Dagger [try!] => gotcha!!
- Architecture Component [try!]
- Data Binding [try!]
- mo…
-
Scenario:
- set "Don't keep Activities" in Developer Options
- start Android-CleanArchitecture application
- go to Users List
- pick first entry, "Simon Hill" is presented
- press recent apps button
-…
-
I noticed the sample is not following the dependency rule proposed by the linked article Clean Architecture.I.e. [GetTasks](https://github.com/googlesamples/android-architecture/blob/todo-mvp-clean/to…
-
I keep seeing people do this in their clean architecture examples.
They put the mapper in the entity layer, pointing to a domain object. Doesn't this break the dependency rule?
Or am I missing …