mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-05-01 13:14:21 +02:00
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:
@@ -14,5 +14,7 @@ android {
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
implementation project(':repository')
|
||||
|
||||
testImplementation testLibraries.coroutinesTest
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package com.melih.detail.di
|
||||
|
||||
import com.melih.detail.di.modules.DetailFragmentModule
|
||||
import com.melih.detail.di.scopes.DetailFragmentScope
|
||||
import com.melih.detail.ui.DetailFragment
|
||||
import com.melih.list.di.scopes.DetailFragmentScope
|
||||
import dagger.Module
|
||||
import dagger.android.ContributesAndroidInjector
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.melih.list.di.scopes
|
||||
package com.melih.detail.di.scopes
|
||||
|
||||
import javax.inject.Scope
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.melih.list.di.scopes
|
||||
package com.melih.detail.di.scopes
|
||||
|
||||
import javax.inject.Scope
|
||||
|
||||
|
||||
Reference in New Issue
Block a user