Feature/core repository separation (#44)

* Fixed wrong package name. Fixes #43 

* Updated package name. Fixes #41 

* Ignoring not-used warning - this graph is included in main graph

* Separated repository from core. Fixes #42 

* Removing adapter from recyclerView when view is destroyed to prevent leak. Fixes #40 

* Updated new module graph

Signed-off-by: Melih Aksoy <aksoy.melihcan@gmail.com>
This commit is contained in:
Melih Aksoy
2019-09-26 17:23:53 +02:00
committed by GitHub
parent 8344e7f94b
commit 83e39400a9
22 changed files with 50 additions and 40 deletions

View File

@@ -14,7 +14,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api project(":repository")
implementation project(':repository')
implementation libraries.fragment
implementation libraries.paging
@@ -28,6 +28,4 @@ dependencies {
testImplementation testLibraries.mockk
testImplementation testLibraries.kluent
testImplementation testLibraries.coroutinesTest
compileOnly libraries.room
}