-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #934 from StepicOrg/release/1.206
Release/1.206
- Loading branch information
Showing
636 changed files
with
456 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
app/src/main/java/org/stepik/android/domain/base/analytic/ParcelableAnalyticEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.stepik.android.domain.base.analytic | ||
|
||
import android.os.Parcelable | ||
|
||
interface ParcelableAnalyticEvent : AnalyticEvent, Parcelable |
24 changes: 24 additions & 0 deletions
24
...ava/org/stepik/android/domain/personal_deadlines/analytic/DeadlinesNotificationClicked.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package org.stepik.android.domain.personal_deadlines.analytic | ||
|
||
import kotlinx.android.parcel.Parcelize | ||
import org.stepik.android.domain.base.analytic.ParcelableAnalyticEvent | ||
|
||
@Parcelize | ||
data class DeadlinesNotificationClicked( | ||
val course: Long, | ||
val hours: Long | ||
) : ParcelableAnalyticEvent { | ||
companion object { | ||
private const val PARAM_COURSE = "course" | ||
private const val PARAM_HOURS = "hours" | ||
} | ||
|
||
override val name: String = | ||
"Personal deadlines app notification clicked" | ||
|
||
override val params: Map<String, Any> = | ||
mapOf( | ||
PARAM_COURSE to course, | ||
PARAM_HOURS to hours | ||
) | ||
} |
24 changes: 24 additions & 0 deletions
24
...a/org/stepik/android/domain/personal_deadlines/analytic/DeadlinesNotificationDismissed.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package org.stepik.android.domain.personal_deadlines.analytic | ||
|
||
import kotlinx.android.parcel.Parcelize | ||
import org.stepik.android.domain.base.analytic.ParcelableAnalyticEvent | ||
|
||
@Parcelize | ||
data class DeadlinesNotificationDismissed( | ||
val course: Long, | ||
val hours: Long | ||
) : ParcelableAnalyticEvent { | ||
companion object { | ||
private const val PARAM_COURSE = "course" | ||
private const val PARAM_HOURS = "hours" | ||
} | ||
|
||
override val name: String = | ||
"Personal deadlines app notification dismissed" | ||
|
||
override val params: Map<String, Any> = | ||
mapOf( | ||
PARAM_COURSE to course, | ||
PARAM_HOURS to hours | ||
) | ||
} |
22 changes: 22 additions & 0 deletions
22
.../java/org/stepik/android/domain/personal_deadlines/analytic/DeadlinesNotificationShown.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.stepik.android.domain.personal_deadlines.analytic | ||
|
||
import org.stepik.android.domain.base.analytic.AnalyticEvent | ||
|
||
class DeadlinesNotificationShown( | ||
course: Long, | ||
hours: Long | ||
) : AnalyticEvent { | ||
companion object { | ||
private const val PARAM_COURSE = "course" | ||
private const val PARAM_HOURS = "hours" | ||
} | ||
|
||
override val name: String = | ||
"Personal deadlines app notification shown" | ||
|
||
override val params: Map<String, Any> = | ||
mapOf( | ||
PARAM_COURSE to course, | ||
PARAM_HOURS to hours | ||
) | ||
} |
6 changes: 4 additions & 2 deletions
6
...a/org/stepik/android/domain/purchase_notification/analytic/PurchaseNotificationClicked.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
...org/stepik/android/domain/purchase_notification/analytic/PurchaseNotificationDismissed.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
app/src/main/java/org/stepik/android/domain/remind/analytic/RemindAppNotificationClicked.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.stepik.android.domain.remind.analytic | ||
|
||
import kotlinx.android.parcel.Parcelize | ||
import org.stepik.android.domain.base.analytic.ParcelableAnalyticEvent | ||
|
||
@Parcelize | ||
object RemindAppNotificationClicked : ParcelableAnalyticEvent { | ||
override val name: String = | ||
"Remind app notification clicked" | ||
} |
10 changes: 10 additions & 0 deletions
10
...src/main/java/org/stepik/android/domain/remind/analytic/RemindAppNotificationDismissed.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.stepik.android.domain.remind.analytic | ||
|
||
import kotlinx.android.parcel.Parcelize | ||
import org.stepik.android.domain.base.analytic.ParcelableAnalyticEvent | ||
|
||
@Parcelize | ||
object RemindAppNotificationDismissed : ParcelableAnalyticEvent { | ||
override val name: String = | ||
"Remind app notification dismissed" | ||
} |
8 changes: 8 additions & 0 deletions
8
app/src/main/java/org/stepik/android/domain/remind/analytic/RemindAppNotificationShown.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.stepik.android.domain.remind.analytic | ||
|
||
import org.stepik.android.domain.base.analytic.AnalyticEvent | ||
|
||
object RemindAppNotificationShown : AnalyticEvent { | ||
override val name: String = | ||
"Remind app notification shown" | ||
} |
10 changes: 10 additions & 0 deletions
10
...n/java/org/stepik/android/domain/remind/analytic/RemindRegistrationNotificationClicked.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.stepik.android.domain.remind.analytic | ||
|
||
import kotlinx.android.parcel.Parcelize | ||
import org.stepik.android.domain.base.analytic.ParcelableAnalyticEvent | ||
|
||
@Parcelize | ||
object RemindRegistrationNotificationClicked : ParcelableAnalyticEvent { | ||
override val name: String = | ||
"Remind registration notification clicked" | ||
} |
Oops, something went wrong.