From 251d53d81910da808f1829bdda94247783e9636f Mon Sep 17 00:00:00 2001 From: youngjinc Date: Thu, 15 Jun 2023 14:44:30 +0900 Subject: [PATCH] =?UTF-8?q?[mod]=20=EC=95=B1=20=EB=AC=B8=EC=84=9C=20?= =?UTF-8?q?=EB=A7=81=ED=81=AC=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wishboard/presentation/my/screens/MyFragment.kt | 8 ++++---- .../presentation/sign/screens/SignUpPasswordFragment.kt | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/main/java/com/hyeeyoung/wishboard/presentation/my/screens/MyFragment.kt b/app/src/main/java/com/hyeeyoung/wishboard/presentation/my/screens/MyFragment.kt index 833c0e53..918640f2 100644 --- a/app/src/main/java/com/hyeeyoung/wishboard/presentation/my/screens/MyFragment.kt +++ b/app/src/main/java/com/hyeeyoung/wishboard/presentation/my/screens/MyFragment.kt @@ -61,25 +61,25 @@ class MyFragment : NetworkFragment(R.layout.fragment_my) { } binding.howToUse.setOnClickListener { moveWebViewActivity( - "https://hushed-bolt-fd4.notion.site/383c308f256f4f189b7c0b68a8f68d9f", + "https://youngjinc.notion.site/1fb5fba5448941c7bac0dd72b1a51871?pvs=4", R.string.my_section_sub_title_how_to_use ) } binding.terms.setOnClickListener { moveWebViewActivity( - "${BuildConfig.BASE_URL}terms.html", + "https://youngjinc.notion.site/f0e9dae6172b47659a9e01e55db8e2e3?pvs=4", R.string.my_section_sub_title_terms ) } binding.personalInfo.setOnClickListener { moveWebViewActivity( - "${BuildConfig.BASE_URL}privacy-policy.html", + "https://youngjinc.notion.site/5c3da8efa7744e08a94d06fca2eecfc6?pvs=4", R.string.my_section_sub_title_personal_info ) } binding.opensourceLicense.setOnClickListener { moveWebViewActivity( - "https://hushed-bolt-fd4.notion.site/8fb33b8b0d7e47ae951abcac9ee4df12", + "https://youngjinc.notion.site/48d95a3554074db8af829bf5af28c842?pvs=4", R.string.my_section_sub_title_opensource_license ) } diff --git a/app/src/main/java/com/hyeeyoung/wishboard/presentation/sign/screens/SignUpPasswordFragment.kt b/app/src/main/java/com/hyeeyoung/wishboard/presentation/sign/screens/SignUpPasswordFragment.kt index f88a5a24..16446573 100644 --- a/app/src/main/java/com/hyeeyoung/wishboard/presentation/sign/screens/SignUpPasswordFragment.kt +++ b/app/src/main/java/com/hyeeyoung/wishboard/presentation/sign/screens/SignUpPasswordFragment.kt @@ -54,7 +54,7 @@ class SignUpPasswordFragment : val clickableSpanTerms = object : ClickableSpan() { override fun onClick(widget: View) { moveWebViewActivity( - "https://www.wishboard.xyz/terms.html", + "https://youngjinc.notion.site/f0e9dae6172b47659a9e01e55db8e2e3?pvs=4", R.string.my_section_sub_title_terms ) } @@ -62,7 +62,7 @@ class SignUpPasswordFragment : val clickableSpanPersonalInfo = object : ClickableSpan() { override fun onClick(widget: View) { moveWebViewActivity( - "https://www.wishboard.xyz/privacy-policy.html", + "https://youngjinc.notion.site/5c3da8efa7744e08a94d06fca2eecfc6?pvs=4", R.string.my_section_sub_title_personal_info ) }