Skip to content

Commit 5d9a4b0

Browse files
Merge pull request #545 from qonversion/release/6.3.1
Release 6.3.1
2 parents f4fc8ab + 6cd8dbd commit 5d9a4b0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import io.gitlab.arturbosch.detekt.DetektCreateBaselineTask
66
buildscript {
77
ext {
88
release = [
9-
versionName: "6.3.0",
9+
versionName: "6.3.1",
1010
versionCode: 1
1111
]
1212
}

fastlane/report.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77

8-
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.017216">
8+
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000477">
99

1010
</testcase>
1111

sdk/src/main/java/com/qonversion/android/sdk/dto/entitlements/QTransactionType.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enum class QTransactionType(val type: String) {
44
Unknown("unknown"),
55
SubscriptionStarted("subscription_started"),
66
SubscriptionRenewed("subscription_renewed"),
7-
TrialStrated("trial_started"),
7+
TrialStarted("trial_started"),
88
IntroStarted("intro_started"),
99
IntroRenewed("intro_renewed"),
1010
NonConsumablePurchase("non_consumable_purchase");
@@ -14,7 +14,7 @@ enum class QTransactionType(val type: String) {
1414
return when (type) {
1515
"subscription_started" -> SubscriptionStarted
1616
"subscription_renewed" -> SubscriptionRenewed
17-
"trial_started" -> TrialStrated
17+
"trial_started" -> TrialStarted
1818
"intro_started" -> IntroStarted
1919
"intro_renewed" -> IntroRenewed
2020
"non_consumable_purchase" -> NonConsumablePurchase

0 commit comments

Comments
 (0)