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
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
android:allowBackup="true"
android:icon="@mipmap/ic_logo"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
Copy link
Contributor

Choose a reason for hiding this comment

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

우리 http를 사용하는 부분이 없나용

Copy link
Member Author

@m6z1 m6z1 Feb 17, 2025

Choose a reason for hiding this comment

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

있는데 manifest 속성 중 android:usesCleartextTraffic가 이미 true 값으로 설정이 되어있기에 해당 속성은 필요 없습니다. 그리고 network_security_config 파일 자체가 지금 깃에도 올라가있어서 url 이 노출되고 있는 중이라서욥

Copy link
Contributor

Choose a reason for hiding this comment

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

아하 그렇군요!
그럼 지워도 괜찮겠네용

android:roundIcon="@mipmap/ic_logo_round"
android:supportsRtl="true"
android:theme="@style/Theme.YouDongKnowMe"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class SettingFragment : BaseFragment<FragmentSettingBinding, SettingViewModel>()
binding.btnSettingAppHelp.setOnClickListener {
val intent = Intent(
Intent.ACTION_VIEW,
Uri.parse("https://docs.google.com/forms/d/e/1FAIpQLSeRTKalenelmffTbCZeK4mqmQg0palobghkXSoie1FlmV22ZQ/viewform")
Uri.parse("https://tally.so/r/n9oq91")
)
startActivity(intent)
}
Expand Down
6 changes: 0 additions & 6 deletions app/src/main/res/xml/network_security_config.xml

This file was deleted.

Loading