Skip to content

Commit 873799d

Browse files
authored
fix: blackduck issues (#22)
* fixes blackduck issues * fix: dokka version
1 parent 23610fa commit 873799d

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

android/build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@ plugins {
55
kotlin("android")
66
kotlin("kapt")
77
kotlin("plugin.serialization") version "2.1.0"
8-
id("org.jetbrains.dokka") version "1.9.10"
8+
id("org.jetbrains.dokka") version "1.9.20"
99
id("jacoco")
1010
id("com.vanniktech.maven.publish") version "0.31.0"
1111
id("org.sonarqube") version "4.4.1.3373"
1212
}
1313

14-
// Import JaCoCo configuration
15-
// apply(from = "../jacoco.gradle.kts")
16-
1714
version = "1.0.2"
1815
val groupId = "com.formbricks"
1916
val artifactId = "android"
@@ -86,7 +83,6 @@ dependencies {
8683
implementation(libs.material)
8784

8885
implementation(libs.kotlinx.serialization.json)
89-
implementation(libs.androidx.legacy.support.v4)
9086
implementation(libs.androidx.lifecycle.livedata.ktx)
9187
implementation(libs.androidx.lifecycle.viewmodel.ktx)
9288
implementation(libs.androidx.fragment.ktx)

gradle/libs.versions.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ androidx-annotation = "1.9.1"
1414

1515
kotlinx-serialization-json = "1.8.0"
1616

17-
retrofit = "2.11.0"
18-
okhttp3 = "4.11.0"
19-
gson = "2.10.1"
20-
legacySupportV4 = "1.0.0"
21-
lifecycleLivedataKtx = "2.8.7"
22-
lifecycleViewmodelKtx = "2.8.7"
23-
fragmentKtx = "1.8.6"
17+
retrofit = "3.0.0"
18+
okhttp3 = "4.12.0"
19+
gson = "2.13.1"
20+
lifecycleLivedataKtx = "2.9.0"
21+
lifecycleViewmodelKtx = "2.9.0"
22+
fragmentKtx = "1.8.7"
2423
databindingCommon = "8.9.2"
2524

2625
[libraries]
@@ -39,7 +38,6 @@ okhttp3-logging-interceptor = { module = "com.squareup.okhttp3:logging-intercept
3938
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
4039

4140
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
42-
androidx-legacy-support-v4 = { group = "androidx.legacy", name = "legacy-support-v4", version.ref = "legacySupportV4" }
4341
androidx-lifecycle-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version.ref = "lifecycleLivedataKtx" }
4442
androidx-lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycleViewmodelKtx" }
4543
androidx-fragment-ktx = { group = "androidx.fragment", name = "fragment-ktx", version.ref = "fragmentKtx" }

0 commit comments

Comments
 (0)