Skip to content

Commit

Permalink
Issues #287 feat: 프로젝트 정리 및 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
audxo112 committed Feb 9, 2023
1 parent 1ed75a5 commit 172ea49
Show file tree
Hide file tree
Showing 14 changed files with 90 additions and 75 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,19 @@ dependencies {
implementation(projects.core)
implementation(projects.coreAndroid)
implementation(projects.model)
implementation(projects.auth)
implementation(projects.common)
implementation(projects.commonAuth)
implementation(projects.commonAndroid)
implementation(projects.commonLocation)
implementation(projects.commonRecognizer)
implementation(projects.utilsLocation)
implementation(projects.utilsRecognizer)
implementation(projects.domain)
implementation(projects.presentation)
implementation(projects.data)
implementation(projects.dataContent)
implementation(projects.dataDatabase)
implementation(projects.dataPreference)
implementation(projects.dataRemote)
implementation(projects.dataStorage)

implementation(libs.androidX.hilt.work)
implementation(libs.androidX.work.runtime.ktx)
Expand Down
1 change: 1 addition & 0 deletions auth/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
17 changes: 17 additions & 0 deletions auth/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
plugins {
id("beep.android.library")
id("beep.android.hilt")
}

android {
namespace = "com.lighthouse.auth"
}

dependencies {
implementation(projects.core)
implementation(projects.coreAndroid)
implementation(projects.model)

implementation(platform(libs.firebase.bom))
implementation(libs.firebase.auth.ktx)
}
1 change: 1 addition & 0 deletions commons/common-auth/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
2 changes: 0 additions & 2 deletions data/data-preference/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ dependencies {
implementation(projects.model)
implementation(projects.common)
implementation(projects.commonAndroid)
implementation(projects.commonLocation)
implementation(projects.commonRecognizer)
implementation(projects.data)

implementation(libs.androidX.datastore.preferences)
Expand Down
1 change: 1 addition & 0 deletions data/data-storage/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
21 changes: 21 additions & 0 deletions data/data-storage/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id("beep.android.library")
id("beep.android.hilt")
alias(libs.plugins.ksp)
}

android {
namespace = "com.lighthouse.data.storage"
}

dependencies {
implementation(projects.core)
implementation(projects.coreAndroid)
implementation(projects.model)
implementation(projects.common)
implementation(projects.commonAndroid)
implementation(projects.data)

implementation(libs.timber)
}
3 changes: 1 addition & 2 deletions data/data/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id("beep.android.library")
id("beep.android.hilt")
alias(libs.plugins.ksp)
}

Expand All @@ -14,8 +15,6 @@ dependencies {
implementation(projects.model)
implementation(projects.common)
implementation(projects.commonAndroid)
implementation(projects.commonLocation)
implementation(projects.commonRecognizer)
implementation(projects.domain)

// implementation(libs.androidX.room.runtime)
Expand Down

This file was deleted.

6 changes: 4 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,17 @@ includeProject(":app")
includeProject(":core")
includeProject(":core-android")
includeProject(":model")
includeProject(":auth")
includeProject(":common", "commons")
includeProject(":common-auth", "commons")
includeProject(":common-android", "commons")
includeProject(":common-location", "commons")
includeProject(":common-recognizer", "commons")
includeProject(":utils-location", "utils")
includeProject(":utils-recognizer", "utils")
includeProject(":data", "data")
includeProject(":data-database", "data")
includeProject(":data-remote", "data")
includeProject(":data-content", "data")
includeProject(":data-preference", "data")
includeProject(":data-storage", "data")
includeProject(":presentation")
includeProject(":domain")
1 change: 1 addition & 0 deletions utils/utils-location/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
22 changes: 22 additions & 0 deletions utils/utils-location/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
plugins {
id("beep.android.library")
id("beep.android.hilt")
}

android {
namespace = "com.lighthouse.beep.utils.location"
}

dependencies {
implementation(projects.core)
implementation(projects.coreAndroid)
implementation(projects.model)

implementation(libs.gms.play.services.location)

// implementation(libs.androidX.activity.ktx)
// implementation(libs.androidX.appcompat)
// implementation(libs.androidX.core.ktx)
// implementation(libs.androidX.fragment.ktx)
// implementation(libs.zxing.core)
}
1 change: 1 addition & 0 deletions utils/utils-recognizer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
16 changes: 16 additions & 0 deletions utils/utils-recognizer/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
plugins {
id("beep.android.library")
id("beep.android.hilt")
}

android {
namespace = "com.lighthouse.beep.utils.recognizer"
}

dependencies {
implementation(projects.core)
implementation(projects.coreAndroid)
implementation(projects.model)

implementation(libs.mlkit.text.recognition.korean)
}

0 comments on commit 172ea49

Please sign in to comment.