Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<!-- 미디어 접근 권한 (API 레벨별 조건부) -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
<!-- 미디어 접근 권한 (API 32 이하에서만 필요, 앱은 FileProvider로 임시 파일 처리) -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />

<!-- Foreground Service 관련 -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.unit.dp
import coil3.compose.AsyncImage
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Nit] import 순서

androidx.compose.ui.platform.LocalContext는 알파벳 순으로 androidx.compose.ui.unit.dp보다 앞에 와야 합니다.

// 현재
import androidx.compose.ui.unit.dp
import androidx.compose.ui.platform.LocalContext  // ← 순서 어긋남

// 개선
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.unit.dp

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

반영 완료 (6e44d8e)

  • platformunit 순으로 알파벳 정렬

import com.runnect.runnect.R
Expand Down Expand Up @@ -303,6 +304,12 @@ private fun MenuItem(

@Composable
private fun VersionSection() {
val context = LocalContext.current
val versionName = remember {
runCatching {
context.packageManager.getPackageInfo(context.packageName, 0).versionName ?: ""
}.getOrDefault("")
}
val textStyle = RunnectTheme.textStyle
Row(
modifier = Modifier
Expand All @@ -318,7 +325,7 @@ private fun VersionSection() {
color = G2
)
Text(
text = stringResource(R.string.my_page_version),
text = "v. $versionName",
style = textStyle.regular14,
color = G2
)
Expand Down
15 changes: 15 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_basic.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="96dp"
android:height="96dp"
android:viewportWidth="96"
android:viewportHeight="96">
<path
android:pathData="M48,48m-48,0a48,48 0,1 1,96 0a48,48 0,1 1,-96 0"
android:fillColor="#D5D4FF"/>
<path
android:pathData="M48.5,41.5m-17.5,0a17.5,17.5 0,1 1,35 0a17.5,17.5 0,1 1,-35 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M48,66C27.2,66 19.333,78.667 18,85C22.167,88.667 34,96 48,96C62,96 73.833,88.667 78,85C76.667,78.667 68.8,66 48,66Z"
android:fillColor="#ffffff"/>
</vector>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_c1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M38.204,62.958L17.887,42.571C16.704,41.384 16.704,39.464 17.887,38.277L38.204,17.89C39.387,16.703 41.3,16.703 42.483,17.89L62.8,38.277C63.983,39.464 63.983,41.384 62.8,42.571L42.483,62.958C41.3,64.141 39.383,64.141 38.204,62.958Z"
android:fillColor="#593EEC"/>
</vector>
15 changes: 15 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_c2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M38.204,62.958L17.887,42.571C16.704,41.384 16.704,39.464 17.887,38.277L38.204,17.89C39.387,16.703 41.3,16.703 42.483,17.89L62.8,38.277C63.983,39.464 63.983,41.384 62.8,42.571L42.483,62.958C41.3,64.141 39.383,64.141 38.204,62.958Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.341,56.378L24.44,40.422L40.341,24.466L56.243,40.422L40.341,56.378ZM25.882,40.422L40.341,54.932L54.801,40.422L40.341,25.913L25.882,40.422Z"
android:fillColor="#F7D198"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_c3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M38.204,62.958L17.887,42.571C16.704,41.384 16.704,39.464 17.887,38.277L38.204,17.89C39.387,16.703 41.3,16.703 42.483,17.89L62.8,38.277C63.983,39.464 63.983,41.384 62.8,42.571L42.483,62.958C41.3,64.141 39.387,64.141 38.204,62.958Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.341,56.378L24.44,40.422L40.341,24.466L56.243,40.422L40.341,56.378ZM25.882,40.422L40.341,54.932L54.801,40.422L40.341,25.913L25.882,40.422Z"
android:fillColor="#F7D198"/>
<path
android:pathData="M47.154,40.42L40.342,33.585L33.531,40.42L40.342,47.255L47.154,40.42Z"
android:fillColor="#F7D198"/>
</vector>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_r1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M58.507,58.721L47.075,53.734C46.499,53.482 45.835,53.785 45.641,54.381L41.843,66.263C41.54,67.214 40.211,67.255 39.847,66.328L35.289,54.715C35.061,54.129 34.376,53.873 33.817,54.16L22.73,59.876C21.844,60.332 20.876,59.423 21.275,58.51L26.262,47.077C26.514,46.501 26.211,45.837 25.615,45.643L13.737,41.848C12.786,41.545 12.745,40.216 13.672,39.852L25.284,35.294C25.87,35.065 26.126,34.381 25.84,33.822L20.124,22.734C19.667,21.848 20.577,20.881 21.49,21.279L32.922,26.266C33.497,26.518 34.161,26.215 34.356,25.619L38.154,13.737C38.457,12.786 39.785,12.745 40.15,13.672L44.708,25.285C44.936,25.871 45.62,26.127 46.179,25.84L57.267,20.124C58.153,19.668 59.12,20.577 58.722,21.49L53.735,32.923C53.482,33.499 53.786,34.163 54.382,34.357L66.263,38.155C67.214,38.458 67.255,39.787 66.328,40.152L54.716,44.71C54.13,44.938 53.874,45.623 54.16,46.181L59.876,57.27C60.329,58.149 59.42,59.119 58.507,58.721Z"
android:fillColor="#593EEC"/>
</vector>
15 changes: 15 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_r2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M58.413,58.775L47.006,53.781C46.431,53.529 45.769,53.832 45.575,54.429L41.785,66.326C41.482,67.278 40.157,67.319 39.793,66.391L35.245,54.763C35.017,54.177 34.334,53.921 33.776,54.207L22.712,59.931C21.829,60.388 20.863,59.477 21.261,58.563L26.237,47.116C26.489,46.54 26.186,45.875 25.591,45.68L13.735,41.877C12.787,41.574 12.746,40.243 13.671,39.878L25.258,35.315C25.843,35.086 26.098,34.401 25.812,33.841L20.109,22.739C19.653,21.852 20.561,20.883 21.472,21.282L32.879,26.276C33.453,26.528 34.116,26.225 34.31,25.628L38.1,13.738C38.403,12.786 39.728,12.745 40.092,13.673L44.64,25.301C44.868,25.887 45.551,26.143 46.109,25.856L57.173,20.133C58.056,19.676 59.022,20.587 58.624,21.501L53.648,32.948C53.396,33.524 53.699,34.189 54.294,34.383L66.15,38.187C67.098,38.49 67.139,39.82 66.214,40.185L54.627,44.749C54.042,44.978 53.787,45.663 54.073,46.223L59.776,57.325C60.232,58.201 59.324,59.174 58.413,58.775Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.533,58.321L36.73,48.593L27.474,53.382L31.638,43.804L21.716,40.622L31.41,36.805L26.638,27.517L36.182,31.696L39.354,21.74L43.158,31.467L52.413,26.678L48.249,36.256L58.171,39.438L48.477,43.255L53.25,52.543L43.705,48.364L40.533,58.321ZM37.263,47.164L40.435,55.268L43.076,46.973L51.03,50.455L47.053,42.716L55.129,39.534L46.866,36.884L50.336,28.902L42.624,32.893L39.452,24.789L36.811,33.084L28.857,29.601L32.834,37.341L24.758,40.523L33.021,43.173L29.551,51.155L37.263,47.164Z"
android:fillColor="#F7D198"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_r3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M58.513,58.722L47.081,53.735C46.505,53.482 45.841,53.786 45.646,54.382L41.848,66.263C41.545,67.214 40.216,67.255 39.852,66.328L35.294,54.716C35.065,54.13 34.381,53.874 33.822,54.16L22.734,59.876C21.848,60.333 20.88,59.423 21.279,58.51L26.266,47.078C26.518,46.503 26.215,45.839 25.619,45.644L13.737,41.846C12.786,41.543 12.745,40.215 13.672,39.85L25.285,35.292C25.871,35.064 26.127,34.38 25.84,33.821L20.124,22.733C19.668,21.847 20.577,20.88 21.49,21.278L32.923,26.265C33.499,26.517 34.163,26.214 34.354,25.618L38.152,13.737C38.455,12.786 39.784,12.745 40.148,13.672L44.706,25.284C44.935,25.87 45.619,26.126 46.178,25.84L57.266,20.124C58.152,19.667 59.119,20.577 58.721,21.49L53.734,32.922C53.482,33.497 53.785,34.161 54.381,34.356L66.263,38.154C67.214,38.457 67.255,39.785 66.328,40.15L54.715,44.708C54.129,44.936 53.873,45.62 54.16,46.179L59.876,57.267C60.336,58.153 59.426,59.12 58.513,58.722Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.72,58.159L36.916,48.431L27.66,53.22L31.824,43.642L21.902,40.46L31.597,36.643L26.824,27.356L36.369,31.534L39.54,21.578L43.344,31.305L52.6,26.517L48.436,36.094L58.358,39.277L48.664,43.093L53.436,52.381L43.891,48.203L40.72,58.159ZM37.45,47.002L40.621,55.106L43.263,46.811L51.216,50.293L47.239,42.554L55.316,39.372L47.049,36.722L50.52,28.74L42.807,32.731L39.636,24.627L36.994,32.919L29.041,29.436L33.018,37.175L24.941,40.358L33.208,43.008L29.737,50.989L37.45,47.002Z"
android:fillColor="#F7D198"/>
<path
android:pathData="M45.839,45.474L41.649,43.644L40.257,48L38.589,43.744L34.526,45.839L36.352,41.649L32,40.257L36.256,38.589L34.161,34.526L38.351,36.352L39.74,32L41.411,36.256L45.474,34.161L43.644,38.348L48,39.74L43.744,41.411L45.839,45.474Z"
android:fillColor="#F7D198"/>
</vector>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_s1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M62.863,41.92L49.885,49.016C49.517,49.217 49.217,49.517 49.016,49.885L41.921,62.863C41.089,64.379 38.911,64.379 38.08,62.863L30.984,49.885C30.783,49.517 30.483,49.217 30.115,49.016L17.137,41.92C15.621,41.089 15.621,38.911 17.137,38.08L30.112,30.984C30.48,30.783 30.78,30.483 30.981,30.115L38.076,17.137C38.908,15.621 41.086,15.621 41.917,17.137L49.013,30.115C49.214,30.483 49.514,30.783 49.882,30.984L62.86,38.08C64.38,38.911 64.38,41.092 62.863,41.92Z"
android:fillColor="#593EEC"/>
</vector>
15 changes: 15 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_s2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M62.741,41.942L49.797,49.043C49.43,49.245 49.13,49.545 48.93,49.913L41.853,62.902C41.023,64.42 38.852,64.42 38.022,62.902L30.945,49.913C30.745,49.545 30.445,49.245 30.078,49.043L17.135,41.942C15.622,41.11 15.622,38.93 17.135,38.098L30.075,30.997C30.442,30.795 30.741,30.495 30.942,30.127L38.019,17.138C38.848,15.62 41.02,15.62 41.849,17.138L48.926,30.127C49.127,30.495 49.426,30.795 49.793,30.997L62.737,38.098C64.253,38.93 64.253,41.113 62.741,41.942Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.136,58.938L33.454,46.847L21.404,40.141L33.314,33.698L39.735,21.746L46.418,33.838L58.468,40.543L46.557,46.987L40.136,58.938ZM23.528,40.155L34.205,46.096L40.126,56.806L45.81,46.229L56.35,40.526L45.674,34.585L39.752,23.875L34.069,34.452L23.528,40.155Z"
android:fillColor="#F7D198"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_s3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M62.741,41.942L49.797,49.043C49.43,49.245 49.13,49.545 48.93,49.913L41.853,62.902C41.023,64.42 38.852,64.42 38.022,62.902L30.945,49.913C30.745,49.545 30.445,49.245 30.078,49.043L17.135,41.942C15.622,41.11 15.622,38.93 17.135,38.098L30.078,30.997C30.445,30.795 30.745,30.495 30.945,30.127L38.022,17.138C38.852,15.62 41.023,15.62 41.853,17.138L48.93,30.127C49.13,30.495 49.43,30.795 49.797,30.997L62.741,38.098C64.253,38.93 64.253,41.113 62.741,41.942Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M40.137,58.621L33.454,46.53L21.404,39.824L33.315,33.381L39.736,21.429L46.418,33.521L58.468,40.226L46.558,46.669L40.137,58.621ZM23.529,39.834L34.205,45.776L40.127,56.486L45.81,45.909L56.351,40.206L45.677,34.264L39.753,23.558L34.069,34.131L23.529,39.834Z"
android:fillColor="#F7D198"/>
<path
android:pathData="M47.438,40.022L42.591,42.682L39.939,47.546L37.285,42.682L32.438,40.022L37.285,37.361L39.939,32.498L42.591,37.361L47.438,40.022Z"
android:fillColor="#F7D198"/>
</vector>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_u1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M51.462,62.721L40.828,54.836C40.335,54.47 39.662,54.47 39.165,54.836L28.532,62.721C27.545,63.453 26.172,62.649 26.304,61.416L27.727,48.146C27.795,47.53 27.457,46.941 26.896,46.688L14.839,41.303C13.72,40.803 13.72,39.197 14.839,38.697L26.899,33.312C27.46,33.062 27.795,32.473 27.73,31.854L26.308,18.584C26.176,17.351 27.551,16.55 28.535,17.279L39.168,25.164C39.662,25.53 40.335,25.53 40.832,25.164L51.465,17.279C52.452,16.547 53.824,17.351 53.693,18.584L52.27,31.854C52.202,32.47 52.54,33.059 53.101,33.312L65.161,38.697C66.28,39.197 66.28,40.803 65.161,41.303L53.101,46.688C52.54,46.938 52.205,47.527 52.27,48.146L53.693,61.416C53.821,62.649 52.449,63.453 51.462,62.721Z"
android:fillColor="#593EEC"/>
</vector>
15 changes: 15 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_u2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M51.677,62.55L40.983,54.695C40.487,54.33 39.81,54.33 39.311,54.695L28.617,62.55C27.625,63.28 26.244,62.479 26.377,61.251L27.808,48.03C27.876,47.416 27.536,46.83 26.972,46.577L14.844,41.212C13.719,40.714 13.719,39.114 14.844,38.616L26.972,33.251C27.536,33.002 27.873,32.416 27.808,31.798L26.377,18.578C26.244,17.35 27.628,16.552 28.617,17.278L39.311,25.133C39.807,25.498 40.483,25.498 40.983,25.133L51.677,17.278C52.669,16.548 54.049,17.35 53.917,18.578L52.486,31.798C52.418,32.412 52.758,32.999 53.322,33.251L65.45,38.616C66.575,39.114 66.575,40.714 65.45,41.212L53.322,46.577C52.758,46.826 52.421,47.413 52.486,48.03L53.917,61.251C54.053,62.479 52.669,63.28 51.677,62.55Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M50.008,57.052L40.147,49.811L30.286,57.052L31.608,44.862L20.429,39.916L31.608,34.97L30.286,22.78L40.147,30.024L50.008,22.78L48.686,34.97L59.865,39.916L48.686,44.862L50.008,57.052ZM22.954,39.916L32.703,44.227L31.551,54.855L40.147,48.542L48.743,54.855L47.591,44.227L57.34,39.916L47.591,35.601L48.743,24.973L40.147,31.286L31.551,24.973L32.703,35.601L22.954,39.916Z"
android:fillColor="#F7D198"/>
</vector>
18 changes: 18 additions & 0 deletions app/src/main/res/drawable/mypage_img_stamp_u3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:pathData="M40,40m-40,0a40,40 0,1 1,80 0a40,40 0,1 1,-80 0"
android:fillColor="#ffffff"/>
<path
android:pathData="M51.677,62.55L40.983,54.695C40.487,54.33 39.81,54.33 39.311,54.695L28.617,62.55C27.625,63.28 26.244,62.479 26.377,61.251L27.808,48.03C27.876,47.416 27.536,46.83 26.972,46.577L14.844,41.212C13.719,40.714 13.719,39.114 14.844,38.616L26.972,33.251C27.536,33.002 27.873,32.416 27.808,31.798L26.377,18.578C26.244,17.35 27.628,16.552 28.617,17.278L39.311,25.133C39.807,25.498 40.483,25.498 40.983,25.133L51.677,17.278C52.669,16.548 54.049,17.35 53.917,18.578L52.486,31.798C52.418,32.412 52.758,32.999 53.322,33.251L65.45,38.616C66.575,39.114 66.575,40.714 65.45,41.212L53.322,46.577C52.758,46.826 52.421,47.413 52.486,48.03L53.917,61.251C54.053,62.479 52.669,63.28 51.677,62.55Z"
android:fillColor="#593EEC"/>
<path
android:pathData="M50.008,57.052L40.147,49.811L30.286,57.052L31.608,44.862L20.429,39.916L31.608,34.97L30.286,22.78L40.147,30.024L50.008,22.78L48.686,34.97L59.865,39.916L48.686,44.862L50.008,57.052ZM40.147,48.542L48.743,54.855L47.591,44.227L57.34,39.916L47.591,35.601L48.743,24.973L40.147,31.286L31.551,24.973L32.703,35.601L22.954,39.916L32.703,44.227L31.551,54.855L40.147,48.542Z"
android:fillColor="#F7D198"/>
<path
android:pathData="M44.763,47.935L40.147,44.545L35.535,47.935L36.153,42.229L30.922,39.916L36.153,37.6L35.535,31.897L40.147,35.284L44.763,31.897L44.145,37.6L49.376,39.916L44.145,42.229L44.763,47.935Z"
android:fillColor="#F7D198"/>
</vector>
1 change: 0 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@

<string name="my_page_setting_title">설정</string>
<string name="my_page_version_title">버전 정보</string>
<string name="my_page_version">v. 1.0.4</string>
<string name="my_page_edit_name_title">닉네임 수정</string>
<string name="my_page_edit_name_finish">완료</string>
<string name="my_page_edit_name_guide">닉네임을 입력하세요</string>
Expand Down
Loading