diff --git a/data/src/main/java/com/android254/data/repos/SpeakersManager.kt b/data/src/main/java/com/android254/data/repos/SpeakersManager.kt index 18bb36e6..4fa54e50 100644 --- a/data/src/main/java/com/android254/data/repos/SpeakersManager.kt +++ b/data/src/main/java/com/android254/data/repos/SpeakersManager.kt @@ -17,7 +17,6 @@ package com.android254.data.repos import com.android254.data.repos.mappers.toDomainModel import com.android254.data.repos.mappers.toEntity -import com.android254.domain.models.ResourceResult import com.android254.domain.models.Speaker import com.android254.domain.repos.SpeakersRepo import javax.inject.Inject diff --git a/domain/src/main/java/com/android254/domain/repos/SpeakersRepo.kt b/domain/src/main/java/com/android254/domain/repos/SpeakersRepo.kt index 47350484..51e9fc1b 100644 --- a/domain/src/main/java/com/android254/domain/repos/SpeakersRepo.kt +++ b/domain/src/main/java/com/android254/domain/repos/SpeakersRepo.kt @@ -15,7 +15,6 @@ */ package com.android254.domain.repos -import com.android254.domain.models.ResourceResult import com.android254.domain.models.Speaker import kotlinx.coroutines.flow.Flow diff --git a/settings.gradle.kts b/settings.gradle.kts index 5acd7283..72b71462 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -12,4 +12,4 @@ rootProject.name = "DroidconKE2023" include(":app") include(":chai") include(":datasource:remote", ":datasource:local", ":data", ":domain", ":presentation") -include(":shared", ":shared:data", ":shared:domain", ":shared:datasource") +include(":shared", ":shared:data", ":shared:domain", ":shared:datasource") \ No newline at end of file diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 4e7ccd2a..93bc4c62 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -22,4 +22,4 @@ kotlin { android { namespace = "ke.droidcon.kotlin.shared" -} +} \ No newline at end of file diff --git a/shared/data/build.gradle.kts b/shared/data/build.gradle.kts index 52c826a7..16abb151 100644 --- a/shared/data/build.gradle.kts +++ b/shared/data/build.gradle.kts @@ -20,4 +20,4 @@ kotlin { android { namespace = "ke.droidcon.kotlin.shared.data" -} +} \ No newline at end of file diff --git a/shared/datasource/build.gradle.kts b/shared/datasource/build.gradle.kts index 51f6b457..c3733649 100644 --- a/shared/datasource/build.gradle.kts +++ b/shared/datasource/build.gradle.kts @@ -6,7 +6,6 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - } } val commonTest by getting { @@ -19,4 +18,4 @@ kotlin { android { namespace = "ke.droidcon.kotlin.shared.datasource" -} +} \ No newline at end of file diff --git a/shared/domain/build.gradle.kts b/shared/domain/build.gradle.kts index 07842ea9..02ee1ce8 100644 --- a/shared/domain/build.gradle.kts +++ b/shared/domain/build.gradle.kts @@ -6,7 +6,6 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - } } val commonTest by getting { @@ -20,4 +19,4 @@ kotlin { android { namespace = "ke.droidcon.kotlin.shared.domain" compileSdk = 34 -} +} \ No newline at end of file