Skip to content

Commit 99329d4

Browse files
anikikiaitorvs
authored andcommitted
Upgrade version.androidx.work - AppTP should not specify a different version as that is not used (duckduckgo#2873)
Task/Issue URL: https://app.asana.com/0/1202552961248957/1201421366311638/f ### Description Removed different work manager version from vpn-impl. ### Steps to test this PR Develop - [ ] Checkout from develop, sync project with gradle files. - [ ] Look at the androidx.work versions used `./gradlew app:dependencies | grep androidx.work:work-multiprocess:` and notice `androidx.work:work-multiprocess:2.5.0-beta01 -> 2.7.1` in the results. This branch - [ ] Checkout from this branch, sync project with gradle files. - [ ] Look at the androidx.work versions used `./gradlew app:dependencies | grep androidx.work:work-multiprocess:` and notice only 2.7.1 is used. ### NO UI changes
1 parent e10d246 commit 99329d4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

app-tracking-protection/vpn-impl/build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ android {
3838
}
3939
}
4040

41-
ext {
42-
workManager = "2.5.0-beta01"
43-
}
44-
4541
dependencies {
4642
anvil project(path: ':anvil-compiler')
4743
implementation project(path: ':anvil-annotations')
@@ -113,7 +109,7 @@ dependencies {
113109

114110
// WorkManager
115111
implementation AndroidX.work.runtimeKtx
116-
implementation "androidx.work:work-multiprocess:$workManager"
112+
implementation "androidx.work:work-multiprocess:_"
117113
testImplementation AndroidX.work.testing
118114
implementation AndroidX.work.rxJava2
119115

0 commit comments

Comments
 (0)