Skip to content

Commit

Permalink
[FIX/#16] solving conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Jul 9, 2024
1 parent 6cb7ff2 commit 3d46e51
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
4 changes: 0 additions & 4 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@ dependencies {
// Compose Preview
debugImplementation(libs.compose.ui.tooling)

//Compose Preview
implementation(libs.androidx.compose.ui.tooling)
implementation(libs.androidx.compose.ui.tooling.preview)

// Test Dependency
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
Expand Down
3 changes: 0 additions & 3 deletions feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ dependencies {

// Compose Preview
debugImplementation(libs.compose.ui.tooling)
// //Compose Preview
// implementation(libs.androidx.compose.ui.tooling)
// implementation(libs.androidx.compose.ui.tooling.preview)

// KakaoDependencies
implementation(libs.kakao.user)
Expand Down
1 change: 1 addition & 0 deletions feature/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
android:exported="true"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.TerningAndroid">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.theme.Black
import com.terning.core.designsystem.theme.SundayRed
import com.terning.core.designsystem.theme.TerningPointTheme
import com.terning.core.designsystem.theme.TerningTheme
import com.terning.feature.R

Expand All @@ -27,7 +28,8 @@ fun WeekDaysHeader(
.background(Color.White)
.padding(
horizontal = 20.dp,
vertical = 18.dp),
vertical = 18.dp
),
){
val dayOfWeek = listOf(
R.string.calendar_text_sunday,
Expand All @@ -52,7 +54,7 @@ fun WeekDaysHeader(
@Preview(showBackground = true)
@Composable
fun WeekDaysHeaderPreview() {
TerningTheme{
TerningPointTheme{
WeekDaysHeader()
}
}
6 changes: 1 addition & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", versi
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "androidxComposeMaterial3" }
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-compose-ui-test = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "uiTooling" }
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "uiTooling" }
androidx-compose-ui-testManifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "composeNavigation" }
androidx-compose-navigation-test = { group = "androidx.navigation", name = "navigation-testing", version.ref = "composeNavigation" }
Expand All @@ -119,6 +117,7 @@ android-desugarJdkLibs = { group = "com.android.tools", name = "desugar_jdk_libs
androidx-lifecycle-runtimeCompose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "androidxLifecycle" }
androidx-lifecycle-viewModelCompose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "androidxLifecycle" }
androidx-datastore = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "androidxDatastore" }
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "uiTooling" }

hilt-core = { group = "com.google.dagger", name = "hilt-core", version.ref = "hilt" }
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
Expand Down Expand Up @@ -157,9 +156,6 @@ lottie = {group = "com.airbnb.android", name = "lottie", version.ref = "lottieVe

kakao-user = {group = "com.kakao.sdk", name = "v2-user", version.ref = "kakaoVersion"}

compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "uiTooling" }


[plugins]
android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
Expand Down

0 comments on commit 3d46e51

Please sign in to comment.