Skip to content

Commit

Permalink
fix: compatibility with flutter sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
kkostov committed Jan 6, 2025
1 parent fe88f7f commit 0fe3497
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Kotlin SDK for TelemetryDeck is available from Maven Central and can be used

```groovy
dependencies {
implementation 'com.telemetrydeck:kotlin-sdk:4.0.0'
implementation 'com.telemetrydeck:kotlin-sdk:4.0.2'
}
```

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[versions]
agp = "8.7.3"
kotlin = "2.0.21"
coreKtx = "1.15.0"
kotlin = "2.0.20"
coreKtx = "1.13.1"
junit = "4.13.2"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
lifecycleRuntimeKtx = "2.8.7"
activityCompose = "1.9.3"
composeBom = "2024.12.01"
ktor = "3.0.1"
composeBom = "2024.10.00"
ktor = "3.0.2"
kotlinx = "1.7.3"
coroutines = "1.10.1"
coroutines = "1.9.0"
vanniktech-publish = "0.30.0"
appcompat = "1.7.0"
mockk = "1.13.13"
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ dependencies {
}

mavenPublishing {
coordinates("com.telemetrydeck", "kotlin-sdk", "4.0.0")
coordinates("com.telemetrydeck", "kotlin-sdk", "4.0.2")

pom {
name = "TelemetryDeck SDK"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal class EnvironmentParameterProvider : TelemetryDeckProvider, TelemetryPr
private val platform: String = "Android"
private val os: String = "Android"
private val sdkName: String = "KotlinSDK"
private val sdkVersion: String = "4.0.0"
private val sdkVersion: String = "4.0.2"

override fun fallbackRegister(ctx: Application?, client: TelemetryDeckSignalProcessor) {
register(ctx, client)
Expand Down

0 comments on commit 0fe3497

Please sign in to comment.