Skip to content

Commit 9d57066

Browse files
committed
chore: feature, core module init
1 parent e8c4da1 commit 9d57066

20 files changed

Lines changed: 27 additions & 17 deletions

File tree

.idea/gradle.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ plugins {
55

66
android {
77
namespace = "com.moneymong.moneymong"
8-
compileSdk = 33
8+
compileSdk = 34
99

1010
defaultConfig {
1111
applicationId = "com.moneymong.moneymong"
1212
minSdk = 24
13-
targetSdk = 33
13+
targetSdk = 34
1414
versionCode = 1
1515
versionName = "1.0"
1616

@@ -50,6 +50,14 @@ android {
5050
}
5151

5252
dependencies {
53+
implementation(project(":data"))
54+
implementation(project(":domain"))
55+
implementation(project(":di"))
56+
implementation(project(":design-system"))
57+
58+
implementation(project(":feature:sign"))
59+
60+
implementation(project(":core:ui"))
5361

5462
implementation("androidx.core:core-ktx:1.9.0")
5563
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plugins {
44
}
55

66
android {
7-
namespace = "com.moneymong.moneymong.core"
8-
compileSdk = 33
7+
namespace = "com.moneymong.moneymong.core.ui"
8+
compileSdk = 34
99

1010
defaultConfig {
1111
minSdk = 24

feature/src/androidTest/java/com/moneymong/moneymong/feature/ExampleInstrumentedTest.kt renamed to core/ui/src/androidTest/java/com/moneymong/moneymong/core/ui/ExampleInstrumentedTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.moneymong.moneymong.feature
1+
package com.moneymong.moneymong.core.ui
22

33
import androidx.test.platform.app.InstrumentationRegistry
44
import androidx.test.ext.junit.runners.AndroidJUnit4
@@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
1919
fun useAppContext() {
2020
// Context of the app under test.
2121
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22-
assertEquals("com.moneymong.moneymong.feature.test", appContext.packageName)
22+
assertEquals("com.moneymong.moneymong.core.ui.test", appContext.packageName)
2323
}
2424
}

core/src/test/java/com/moneymong/moneymong/core/ExampleUnitTest.kt renamed to core/ui/src/test/java/com/moneymong/moneymong/core/ui/ExampleUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.moneymong.moneymong.core
1+
package com.moneymong.moneymong.core.ui
22

33
import org.junit.Test
44

data/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66
android {
77
namespace = "com.moneymong.moneymong.data"
8-
compileSdk = 33
8+
compileSdk = 34
99

1010
defaultConfig {
1111
minSdk = 24

0 commit comments

Comments
 (0)