Skip to content

Commit 0f49cce

Browse files
committed
Remove android dependencies
1 parent c362be1 commit 0f49cce

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ junit = "4.13.2"
77
junitVersion = "1.3.0"
88
espressoCore = "3.7.0"
99
appcompat = "1.7.1"
10-
kotlinxCoroutinesTest = "1.10.2"
10+
kotlinxCoroutines = "1.10.2"
1111
lintApi = "31.12.0"
1212
material = "1.12.0"
1313
jetbrainsKotlinJvm = "2.2.0"
@@ -34,7 +34,8 @@ junit = { group = "junit", name = "junit", version.ref = "junit" }
3434
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
3535
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
3636
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
37-
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutinesTest" }
37+
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
38+
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutines" }
3839
lint-api = { module = "com.android.tools.lint:lint-api", version.ref = "lintApi" }
3940
lint-checks = { module = "com.android.tools.lint:lint-checks", version.ref = "lintApi" }
4041
lint-tests = { module = "com.android.tools.lint:lint-tests", version.ref = "lintApi" }

stream-android-core/build.gradle.kts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ dependencies {
5656
}
5757
implementation(project(":stream-android-core-annotations"))
5858

59-
implementation(libs.androidx.core.ktx)
60-
implementation(libs.androidx.appcompat)
61-
implementation(libs.material)
59+
implementation(libs.kotlinx.coroutines)
6260

6361
detektPlugins(libs.detekt.formatting)
6462

@@ -81,7 +79,4 @@ dependencies {
8179
testImplementation(libs.mockk)
8280
testImplementation(libs.kotlinx.coroutines.test)
8381
testImplementation(libs.mockwebserver)
84-
85-
androidTestImplementation(libs.androidx.junit)
86-
androidTestImplementation(libs.androidx.espresso.core)
8782
}

0 commit comments

Comments
 (0)