diff --git a/app/src/main/java/com/kickstarter/libs/AnalyticEvents.kt b/app/src/main/java/com/kickstarter/libs/AnalyticEvents.kt index 6355fd309a..addb4f4d2c 100644 --- a/app/src/main/java/com/kickstarter/libs/AnalyticEvents.kt +++ b/app/src/main/java/com/kickstarter/libs/AnalyticEvents.kt @@ -1,11 +1,5 @@ package com.kickstarter.libs -import com.kickstarter.libs.KoalaContext.CommentDialog -import com.kickstarter.libs.KoalaContext.Comments -import com.kickstarter.libs.KoalaContext.ExternalLink -import com.kickstarter.libs.KoalaContext.Message -import com.kickstarter.libs.KoalaContext.Share -import com.kickstarter.libs.KoalaContext.Update import com.kickstarter.libs.utils.AnalyticEventsUtils import com.kickstarter.libs.utils.BooleanUtils import com.kickstarter.libs.utils.ContextPropertyKeyName.CONTEXT_CTA @@ -66,16 +60,13 @@ import com.kickstarter.libs.utils.EventName.VIDEO_PLAYBACK_COMPLETED import com.kickstarter.libs.utils.EventName.VIDEO_PLAYBACK_STARTED import com.kickstarter.libs.utils.ExperimentData import com.kickstarter.libs.utils.checkoutProperties -import com.kickstarter.models.Activity import com.kickstarter.models.Backing import com.kickstarter.models.Project import com.kickstarter.models.User import com.kickstarter.services.DiscoveryParams -import com.kickstarter.services.apiresponses.PushNotificationEnvelope import com.kickstarter.ui.data.CheckoutData import com.kickstarter.ui.data.Editorial import com.kickstarter.ui.data.LoginReason -import com.kickstarter.ui.data.Mailbox import com.kickstarter.ui.data.PledgeData import com.kickstarter.ui.data.PledgeFlowContext import com.kickstarter.ui.data.ProjectData diff --git a/app/src/main/java/com/kickstarter/libs/KoalaContext.kt b/app/src/main/java/com/kickstarter/libs/KoalaContext.kt index d15a7934b0..508c5ac513 100644 --- a/app/src/main/java/com/kickstarter/libs/KoalaContext.kt +++ b/app/src/main/java/com/kickstarter/libs/KoalaContext.kt @@ -2,19 +2,6 @@ package com.kickstarter.libs class KoalaContext { - /** - * Determines the place from which the comments dialog was presented. - * - * PROJECT_ACTIVITY: The creator's project activity screen. - * PROJECT_COMMENTS: The comments screen for a project. - * UPDATE_COMMENTS: The comments screen for an update. - */ - enum class CommentDialog(val trackingString: String) { - PROJECT_ACTIVITY("project_activity"), - PROJECT_COMMENTS("project_comments"), - UPDATE_COMMENTS("update_comments") - } - /** * Determines the place from which the comments were presented. * @@ -26,17 +13,6 @@ class KoalaContext { UPDATE("update") } - /** - * Determines the place from which the external link was presented. - * - * PROJECT_UPDATE: The project update page. - * PROJECT_UPDATES: The project updates page. - */ - enum class ExternalLink(val trackingString: String) { - PROJECT_UPDATE("project_update"), - PROJECT_UPDATES("project_updates") - } - /** * Determines the place from where the Mailbox was presented. * @@ -88,17 +64,4 @@ class KoalaContext { THANKS("thanks"), UPDATE("update"), } - - /** - * Determines the place from which the Update was presented. - * - * UPDATES: The updates index. - * ACTIVITY: The activity feed. - * ACTIVITY_SAMPLE: The activity sample. - */ - enum class Update(val trackingString: String) { - UPDATES("updates"), - ACTIVITY("activity"), - ACTIVITY_SAMPLE("activity_sample") - } }