Skip to content

Commit

Permalink
Merge pull request #199 from hellokitty-coding-club/release/v1.1.2
Browse files Browse the repository at this point in the history
[BACKMERGE] v1.1.3
  • Loading branch information
KxxHyoRim authored Nov 15, 2023
2 parents 9345419 + 7b462b8 commit 54dd489
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class ChooseRoleFragment : BaseFragment<FragmentChooseRoleBinding>(R.layout.frag

private fun shotChooseRoleExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("chooseRoleExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 5))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class IntroductionFragment :

private fun shotIntroductionExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("introductionExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 4))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class NicknameFragment : BaseFragment<FragmentNicknameBinding>(R.layout.fragment

private fun shotNickNameExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("nicknameExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 2))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class TechTagFragment : BaseFragment<FragmentTechTagBinding>(R.layout.fragment_t

private fun shotTechTagExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("techTagExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 3))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class TermsFragment : BaseFragment<FragmentTermsBinding>(R.layout.fragment_terms

private fun shotTermsExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("termsExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 1))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class EducationStatusFragment :

private fun shotEducationStatusExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("educationStatusExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 6, "juniorStep" to 1))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class RealNameFragment : BaseFragment<FragmentRealNameBinding>(R.layout.fragment

private fun shotRealNameExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("realNameExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 7, "juniorStep" to 2))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class BankAccountFragment :

private fun shotBankAccountExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("bankAccountExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 9, "seniorStep" to 4))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class CareerPeriodFragment :

private fun shotCareerPeriodExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("careerExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 8, "seniorStep" to 3))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CompanyNameFragment :

private fun shotCompanyNameExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("companyNameExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 6, "seniorStep" to 1))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class PositionFragment :

private fun shotPositionExposureLogging() {
val scheme = SwmCommonLoggingScheme.Builder()
.setEventLogName("positionExposure")
.setEventLogName("signUpExposure")
.setScreenName(this.javaClass)
.setLogData(mapOf("signUpStep" to 7, "seniorStep" to 2))
.build()
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
compileSdk = "33"
minSdk = "26"
targetSdk = "33"
appVersion = "1.1.1"
versionCode = "111"
appVersion = "1.1.3"
versionCode = "113"

# Kotlin and Serialization
kotlin = "1.7.20"
Expand Down

0 comments on commit 54dd489

Please sign in to comment.