Skip to content

Commit

Permalink
[chore] #8 중복된 dependencies 삭제 및 패키지 구조 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed May 15, 2024
1 parent 0876df4 commit 3c818f0
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 13 deletions.
4 changes: 0 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,4 @@ dependencies {
implementation(libs.bundles.okhttp)
implementation(libs.bundles.retrofit)
implementation(libs.kotlin.serialization.json)

// Jetpack Navigation
implementation(libs.androidx.navigation.fragment)
implementation(libs.androidx.navigation.ui)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.kream.presentation.ui.main.recommend
package org.sopt.kream.presentation.ui.main.home.recommend

import android.os.Bundle
import android.view.LayoutInflater
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.kream.presentation.ui.main.release
package org.sopt.kream.presentation.ui.main.home.release

import android.os.Bundle
import android.view.LayoutInflater
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.kream.presentation.ui.productDetail
package org.sopt.kream.presentation.ui.productdetail

import android.os.Bundle
import android.view.LayoutInflater
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_product_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".presentation.ui.productDetail.ProductDetailFragment">
tools:context=".presentation.ui.productdetail.ProductDetailFragment">

<TextView
android:layout_width="wrap_content"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_recommend.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".presentation.ui.main.recommend.RecommendFragment">
tools:context=".presentation.ui.main.home.recommend.RecommendFragment">

<TextView
android:layout_width="wrap_content"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_release.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".presentation.ui.main.release.ReleaseFragment">
tools:context=".presentation.ui.main.home.release.ReleaseFragment">

<androidx.compose.ui.platform.ComposeView
android:id="@+id/cv_release"
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/navigation/nav_graph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<fragment
android:id="@+id/recommendFragment"
android:name="org.sopt.kream.presentation.ui.main.recommend.RecommendFragment"
android:name="org.sopt.kream.presentation.ui.main.home.recommend.RecommendFragment"
android:label="fragment_recommend"
tools:layout="@layout/fragment_recommend">
<action
Expand All @@ -22,7 +22,7 @@
</fragment>
<fragment
android:id="@+id/releaseFragment"
android:name="org.sopt.kream.presentation.ui.main.release.ReleaseFragment"
android:name="org.sopt.kream.presentation.ui.main.home.release.ReleaseFragment"
android:label="fragment_release"
tools:layout="@layout/fragment_release">
<action
Expand All @@ -46,7 +46,7 @@
</fragment>
<fragment
android:id="@+id/productDetailFragment"
android:name="org.sopt.kream.presentation.ui.productDetail.ProductDetailFragment"
android:name="org.sopt.kream.presentation.ui.productdetail.ProductDetailFragment"
android:label="fragment_product_detail"
tools:layout="@layout/fragment_product_detail" />
</navigation>

0 comments on commit 3c818f0

Please sign in to comment.