Skip to content

Commit

Permalink
Merge pull request #475 from BCSDLab/hotfix/notification_logging
Browse files Browse the repository at this point in the history
[Fix] 알림 진입 페이지 스위칭 로깅 삭제
  • Loading branch information
Jokwanhee authored Nov 16, 2024
2 parents f75129a + 3366103 commit d2b9a23
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

extra.apply {
set("versionName", "4.0.5")
set("versionCode", 40005)
set("versionName", "4.0.6")
set("versionCode", 40006)
// 코인 버전 관리

set("versionBusinessName", "1.0.1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class NotificationHeader @JvmOverloads constructor(
binding.btnSwitchFake.isVisible = true
Handler(Looper.getMainLooper()).postDelayed({
binding.btnSwitch.isChecked = true
onSwitchClickListener?.onSwitch(true)
binding.btnSwitchFake.isVisible = false
}, 300)
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class NotificationRow @JvmOverloads constructor(
binding.btnSwitchFake.isVisible = true
Handler(Looper.getMainLooper()).postDelayed({
binding.btnSwitch.isChecked = true
onSwitchClickListener?.onSwitch(true)
binding.btnSwitchFake.isVisible = false
}, 300)
} else {
Expand Down

0 comments on commit d2b9a23

Please sign in to comment.