Skip to content

Commit c27d9cc

Browse files
committed
Merge branch 'develop' into release/1000301
2 parents 49807ea + 6a15fa3 commit c27d9cc

File tree

9 files changed

+15
-8
lines changed

9 files changed

+15
-8
lines changed

.github/workflows/develop_PR_builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Gradle cache
21-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2222
with:
2323
path: |
2424
~/.gradle/caches

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<table align="center">
4343
<tbody>
4444
<tr>
45-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/KwakEuiJin"><img src="https://github.com/Team-HMH/HMH-Android/assets/84266681/887eb00f-69de-4618-9a1c-07b2e1665da4" width="200px;" alt="Kwak EuiJin"/><br/><sub><b>KwakEuiJin</b></sub></a><br /><a href="https://github.com/Team-HMH/HMH-Android/commits?author=KwakEuiJin" title="Code">💻</a></td>
45+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kez-lab"><img src="https://avatars.githubusercontent.com/u/93872496?v=4" width="200px;" alt="Kez"/><br/><sub><b>kez</b></sub></a><br /><a href="https://github.com/Team-HMH/HMH-Android/commits?author=kez-lab" title="Code">💻</a></td>
4646
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kangyuri1114"><img src="https://github.com/Team-HMH/HMH-Android/assets/84266681/f1d5e563-74c8-4f16-a105-96a639a20f52" width="200px;" alt="Kang Yuri"/><br/><sub><b>KangYuri</b></sub></a><br /><a href="https://github.com/Team-HMH/HMH-Android/assets/84266681/eead72e1-a883-4ed0-a282-12deea8e3782" title="Code">💻</a></td>
4747
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jihyun0v0"><img src="https://github.com/Team-HMH/HMH-Android/assets/84266681/3c1e14bd-be7e-435c-9af1-315a73aab13f" width="200px;" alt="Kyoung JiHyun"/><br /><sub><b>JiHyun Kyoung</b></sub></a><br/><a href="https://github.com/Team-HMH/HMH-Android/commits?author=jihyun0v0" title="Code">💻</a></td>
4848
</tr>

core/common/src/main/res/layout/dialog_common_one_button.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="wrap_content"
7-
android:background="@drawable/shape_background_radius100"
7+
android:background="@drawable/shape_gray7_radius10"
88
android:paddingHorizontal="16dp"
99
android:paddingTop="36dp"
1010
android:paddingBottom="24dp">

core/common/src/main/res/layout/dialog_common_two_button.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="wrap_content"
7-
android:background="@drawable/shape_background_radius100"
7+
android:background="@drawable/shape_gray7_radius10"
88
android:paddingHorizontal="16dp"
99
android:paddingTop="36dp"
1010
android:paddingBottom="24dp">

core/designsystem/src/main/res/drawable/shape_background_radius100.xml renamed to core/designsystem/src/main/res/drawable/shape_background_radius100_alpha0.xml

File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:shape="rectangle">
4+
<solid android:color="@color/gray7" />
5+
<corners android:radius="10dp" />
6+
7+
</shape>

feature/challenge/src/main/java/com/hmh/hamyeonham/challenge/ChallengeFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ class ChallengeFragment : Fragment() {
342342
TwoButtonCommonDialog.newInstance(
343343
title = getString(R.string.delete_app_dialog_title, clickedAppNameToDialog),
344344
description = getString(R.string.delete_app_dialog_description),
345-
confirmButtonText = getString(R.string.all_okay),
345+
confirmButtonText = getString(R.string.all_delete),
346346
dismissButtonText = getString(R.string.all_cancel),
347347
).apply {
348348
setConfirmButtonClickListener {

feature/main/src/main/res/layout/item_banner.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
android:layout_width="0dp"
1313
android:layout_height="0dp"
1414
android:layout_marginTop="12dp"
15-
app:background="@drawable/shape_background_radius100"
15+
app:background="@drawable/shape_background_radius100_alpha0"
1616
app:layout_constraintBottom_toBottomOf="parent"
1717
app:layout_constraintEnd_toEndOf="parent"
1818
app:layout_constraintStart_toStartOf="parent"

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlin = "2.1.0"
1010
kotlinx-serialization-json = "1.7.3"
1111
kotlinx-serialization-converter = "1.0.0"
1212
kotlinx-coroutines = "1.10.1"
13-
kotlinx-datetime = "0.6.1"
13+
kotlinx-datetime = "0.6.2"
1414
ksp = "2.1.0-1.0.29"
1515

1616
# android
@@ -25,7 +25,7 @@ compose-bom = "2025.01.01"
2525
desugarJdk = "2.1.4"
2626
dagger-hilt = "2.54"
2727
flexbox = "3.0.0"
28-
fragment-ktx = "1.8.5"
28+
fragment-ktx = "1.8.6"
2929
activity-compose = "1.7.2"
3030
exifInterface = "1.3.7"
3131
zxing-core = "3.3.0"

0 commit comments

Comments
 (0)