From f8de7d9b05de363874ebf5a5586e15148b161962 Mon Sep 17 00:00:00 2001 From: HaeTi Date: Wed, 13 Dec 2023 10:42:12 +0900 Subject: [PATCH 1/2] =?UTF-8?q?#169=20/=20=EB=8B=89=EB=84=A4=EC=9E=84=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=20=EB=B7=B0=EC=97=90=EC=84=9C=20=EC=B5=9C?= =?UTF-8?q?=EB=8C=80=20=EC=9E=85=EB=A0=A5=20=EA=B8=80=EC=9E=90=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/deploymentTargetDropDown.xml | 17 +++++++++++++++++ app/src/main/res/layout/activity_nickname.xml | 6 +++++- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .idea/deploymentTargetDropDown.xml diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml new file mode 100644 index 00000000..ed52fac2 --- /dev/null +++ b/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_nickname.xml b/app/src/main/res/layout/activity_nickname.xml index cabff398..db5ca196 100644 --- a/app/src/main/res/layout/activity_nickname.xml +++ b/app/src/main/res/layout/activity_nickname.xml @@ -7,6 +7,10 @@ + + @@ -88,7 +92,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4dp" - android:text="@{viewModel.nickName.length() + ` / 10`}" + android:text="@{viewModel.nickName.length() + ` / ` + cons.MAX_LENGTH}" android:textColor="@{viewModel.nickName.length() > 5 ? @color/Red_500 : @color/Gray_400}" app:layout_constraintEnd_toEndOf="@id/et_nickname" app:layout_constraintTop_toBottomOf="@id/et_nickname" From b2b6a068568ad1bdf8777df17ae19578eb555006 Mon Sep 17 00:00:00 2001 From: HaeTi Date: Thu, 14 Dec 2023 17:28:41 +0900 Subject: [PATCH 2/2] =?UTF-8?q?#169=20/=20Sentry=20=EC=97=B0=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 1 + app/src/main/AndroidManifest.xml | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 2b723a42..e799a149 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,6 +9,7 @@ plugins { id 'com.google.gms.google-services' id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' id 'com.google.android.gms.oss-licenses-plugin' + id "io.sentry.android.gradle" version "4.0.0" } Properties properties = new Properties() diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 637a4957..14c2938f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -169,6 +169,33 @@ android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" /> + + + + + + + + + + + + + + + \ No newline at end of file