Skip to content

Commit

Permalink
[feat] #4 module setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 13, 2024
1 parent 5d42716 commit ab862b8
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,12 @@ dependencies {
implementation(projects.core.ui)
implementation(projects.core.model)
implementation(projects.core.designsystem)
implementation(projects.core.database)
implementation(projects.core.common)
implementation(projects.core.data)
implementation(projects.core.domain)
implementation(projects.feature.main)
implementation(projects.feature.home)
implementation(projects.feature.search)
implementation(projects.feature.mypage)
}
16 changes: 10 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,22 @@
android:name="org.sopt.main.login.LoginActivity"
android:exported="true"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="org.sopt.main.signup.SignupActivity"
android:exported="false" />
android:exported="true" >

</activity>
<activity
android:name="org.sopt.main.main.MainActivity"
android:exported="false" />
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
4 changes: 4 additions & 0 deletions feature/home/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<resources>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
</resources>
3 changes: 3 additions & 0 deletions feature/main/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ dependencies {
implementation(libs.material)
implementation(libs.androidx.activity)
implementation(libs.constraintlayout)
implementation(projects.feature.home)
implementation(projects.feature.mypage)
implementation(projects.feature.search)
}
7 changes: 7 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@ include(":feature:main")
include(":core:ui")
include(":core:model")
include(":core:designsystem")
include(":core:database")
include(":feature:home")
include(":feature:search")
include(":feature:mypage")
include(":core:data")
include(":core:domain")
include(":core:common")

0 comments on commit ab862b8

Please sign in to comment.