Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove rxdebug dependency as it is no longer available #174

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ object Deps {
const val rxAndroid = "io.reactivex.rxjava2:rxandroid:${Versions.rxAndroid}"
const val rxJava = "io.reactivex.rxjava2:rxjava:${Versions.rxJava}"
const val rxRelay = "com.jakewharton.rxrelay2:rxrelay:${Versions.rxRelay}"
const val rxDebug = "com.sumera.rxdebug:rxdebug:${Versions.rxDebug}"
}

object Lint {
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ object Versions {
const val rxAndroid = "2.1.1"
const val rxJava = "2.2.21"
const val rxRelay = "2.1.1"
const val rxDebug = "1.1.3"

// android tools
const val androidTools = "31.1.2"
Expand Down
1 change: 0 additions & 1 deletion rx-usecases/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ dependencies {
implementation(Deps.Rx.rxAndroid)
implementation(Deps.Rx.rxJava)
implementation(Deps.Rx.rxRelay)
implementation(Deps.Rx.rxDebug)

testImplementation(Deps.Test.mockitoCore)
testImplementation(Deps.Test.androidXTestRunner)
Expand Down
Loading