From 789f41fb0ee613ba99e29cfb7cea176a259523c8 Mon Sep 17 00:00:00 2001 From: Ben Henning Date: Fri, 18 Nov 2022 16:58:58 -0800 Subject: [PATCH] Revert Robolectric to using SDK 30 for now. Properly moving tests over will be fixed with #4748. --- WORKSPACE | 4 +- app/BUILD.bazel | 4 +- app/build.gradle | 6 +- app/src/test/AndroidManifest.xml | 2 +- data/build.gradle | 2 +- .../src/test/resources/robolectric.properties | 2 +- domain/build.gradle | 2 +- domain/src/test/AndroidManifest.xml | 2 +- .../src/test/resources/robolectric.properties | 2 +- .../src/javatests/AndroidManifest.xml | 2 +- testing/build.gradle | 2 +- .../src/test/resources/robolectric.properties | 2 +- third_party/maven_install.json | 1286 ++++++++--------- third_party/versions.bzl | 4 +- utility/build.gradle | 2 +- utility/src/test/AndroidManifest.xml | 2 +- .../src/test/resources/robolectric.properties | 2 +- 17 files changed, 625 insertions(+), 703 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index bc1e39d2a45..4585974c87e 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -96,8 +96,8 @@ load("@dagger//:workspace_defs.bzl", "DAGGER_ARTIFACTS", "DAGGER_REPOSITORIES") # Add support for Robolectric: https://github.com/robolectric/robolectric-bazel http_archive( name = "robolectric", - strip_prefix = "robolectric-bazel-4.7", - urls = ["https://github.com/robolectric/robolectric-bazel/archive/4.7.tar.gz"], + strip_prefix = "robolectric-bazel-4.5", + urls = ["https://github.com/robolectric/robolectric-bazel/archive/4.5.tar.gz"], ) load("@robolectric//bazel:robolectric.bzl", "robolectric_repositories") diff --git a/app/BUILD.bazel b/app/BUILD.bazel index 29bf5117a6a..c74dca27553 100644 --- a/app/BUILD.bazel +++ b/app/BUILD.bazel @@ -935,7 +935,7 @@ MIGRATED_TESTS = [ manifest_values = { "applicationId": "org.oppia.android", "minSdkVersion": "19", - "targetSdkVersion": "31", + "targetSdkVersion": "30", "versionCode": "0", "versionName": "0.1-alpha", }, @@ -951,7 +951,7 @@ MIGRATED_TESTS = [ manifest_values = { "applicationId": "org.oppia.android", "minSdkVersion": "19", - "targetSdkVersion": "31", + "targetSdkVersion": "30", "versionCode": "0", "versionName": "0.1-alpha", }, diff --git a/app/build.gradle b/app/build.gradle index 85d31e6a3d4..1466243e441 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -195,8 +195,8 @@ dependencies { 'com.github.bumptech.glide:mocks:4.11.0', 'com.google.truth:truth:1.1.3', 'com.google.truth.extensions:truth-liteproto-extension:1.1.3', - 'org.robolectric:annotations:4.7', - 'org.robolectric:robolectric:4.7', + 'org.robolectric:annotations:4.5', + 'org.robolectric:robolectric:4.5', 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version", 'org.mockito:mockito-core:2.7.22', @@ -214,7 +214,7 @@ dependencies { 'com.google.truth.extensions:truth-liteproto-extension:1.1.3', 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', 'org.mockito:mockito-android:2.7.22', - 'org.robolectric:annotations:4.7', + 'org.robolectric:annotations:4.5', ) // Adding the testing module directly causes duplicates of the below groups so we need to // exclude them before adding the testing module to the androidTestImplementation dependencies diff --git a/app/src/test/AndroidManifest.xml b/app/src/test/AndroidManifest.xml index f04879668a4..7e21885881d 100644 --- a/app/src/test/AndroidManifest.xml +++ b/app/src/test/AndroidManifest.xml @@ -1,5 +1,5 @@ + android:targetSdkVersion="30" /> diff --git a/data/build.gradle b/data/build.gradle index c938c133358..d51015b8c24 100644 --- a/data/build.gradle +++ b/data/build.gradle @@ -88,7 +88,7 @@ dependencies { 'junit:junit:4.12', 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', 'org.mockito:mockito-core:2.19.0', - 'org.robolectric:robolectric:4.7', + 'org.robolectric:robolectric:4.5', project(":testing"), ) // TODO(#59): Remove this once Bazel is introduced diff --git a/data/src/test/resources/robolectric.properties b/data/src/test/resources/robolectric.properties index fb8d1b61609..8750d209615 100644 --- a/data/src/test/resources/robolectric.properties +++ b/data/src/test/resources/robolectric.properties @@ -1,3 +1,3 @@ # data/src/test/resources/robolectric.properties # TODO(#1794): Remove the need for this file & use SDK 29 at the project level. -sdk=31 +sdk=30 diff --git a/domain/build.gradle b/domain/build.gradle index b53f16ec8ee..b0e246d6e27 100644 --- a/domain/build.gradle +++ b/domain/build.gradle @@ -116,7 +116,7 @@ dependencies { 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2', 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', 'org.mockito:mockito-core:3.9.0', - 'org.robolectric:robolectric:4.7', + 'org.robolectric:robolectric:4.5', project(":testing"), ) kapt( diff --git a/domain/src/test/AndroidManifest.xml b/domain/src/test/AndroidManifest.xml index 378d36974f6..852db61ae7b 100644 --- a/domain/src/test/AndroidManifest.xml +++ b/domain/src/test/AndroidManifest.xml @@ -2,5 +2,5 @@ + android:targetSdkVersion="30" /> diff --git a/domain/src/test/resources/robolectric.properties b/domain/src/test/resources/robolectric.properties index 47d1873b792..eb717fe859c 100644 --- a/domain/src/test/resources/robolectric.properties +++ b/domain/src/test/resources/robolectric.properties @@ -1,3 +1,3 @@ # domain/src/test/resources/robolectric.properties # TODO(#1794): Remove the need for this file & use SDK 29 at the project level. -sdk=31 +sdk=30 diff --git a/instrumentation/src/javatests/AndroidManifest.xml b/instrumentation/src/javatests/AndroidManifest.xml index de3b63ff38d..9f6f103645b 100644 --- a/instrumentation/src/javatests/AndroidManifest.xml +++ b/instrumentation/src/javatests/AndroidManifest.xml @@ -3,7 +3,7 @@ package="org.oppia.android.app.instrumentation"> + android:targetSdkVersion="30" /> diff --git a/testing/build.gradle b/testing/build.gradle index c5c866543d5..9e502acee95 100644 --- a/testing/build.gradle +++ b/testing/build.gradle @@ -79,7 +79,7 @@ dependencies { 'com.google.truth.extensions:truth-liteproto-extension:1.1.3', 'nl.dionsegijn:konfetti:1.2.5', 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', - 'org.robolectric:robolectric:4.7', + 'org.robolectric:robolectric:4.5', 'org.jetbrains.kotlin:kotlin-reflect:$kotlin_version', 'org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version', 'org.mockito:mockito-core:2.19.0', diff --git a/testing/src/test/resources/robolectric.properties b/testing/src/test/resources/robolectric.properties index 5773aca145f..9cbd3124fd5 100644 --- a/testing/src/test/resources/robolectric.properties +++ b/testing/src/test/resources/robolectric.properties @@ -1,3 +1,3 @@ # testing/src/test/resources/robolectric.properties # TODO(#1794): Remove the need for this file & use SDK 29 at the project level. -sdk=31 +sdk=30 diff --git a/third_party/maven_install.json b/third_party/maven_install.json index 9fba42c2949..3522dd4d415 100644 --- a/third_party/maven_install.json +++ b/third_party/maven_install.json @@ -1,8 +1,8 @@ { "dependency_tree": { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 1917466880, - "__RESOLVED_ARTIFACTS_HASH": 1530567409, + "__INPUT_ARTIFACTS_HASH": -109720896, + "__RESOLVED_ARTIFACTS_HASH": 860179600, "conflict_resolution": { "androidx.constraintlayout:constraintlayout:1.1.3": "androidx.constraintlayout:constraintlayout:2.0.1", "androidx.core:core:1.0.1": "androidx.core:core:1.3.1", @@ -4680,12 +4680,12 @@ "androidx.legacy:legacy-support-core-utils:aar:1.0.0", "com.google.guava:guava:30.1.1-android", "androidx.slidingpanelayout:slidingpanelayout:aar:1.0.0", + "com.google.errorprone:error_prone_annotations:2.7.1", "androidx.lifecycle:lifecycle-livedata:aar:2.2.0", "androidx.vectordrawable:vectordrawable:aar:1.1.0", "androidx.cursoradapter:cursoradapter:aar:1.0.0", "androidx.drawerlayout:drawerlayout:aar:1.1.0", "androidx.core:core:aar:1.3.1", - "com.google.errorprone:error_prone_annotations:2.9.0", "com.github.bumptech.glide:gifdecoder:4.11.0", "androidx.coordinatorlayout:coordinatorlayout:aar:1.1.0", "androidx.print:print:aar:1.0.0", @@ -4754,7 +4754,7 @@ "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "androidx.customview:customview:aar:sources:1.1.0", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "androidx.loader:loader:aar:sources:1.0.0", "androidx.vectordrawable:vectordrawable:aar:sources:1.1.0" ], @@ -5789,34 +5789,34 @@ "url": "https://repo1.maven.org/maven2/com/google/dagger/dagger/2.28.1/dagger-2.28.1-sources.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:2.9.0", + "coord": "com.google.errorprone:error_prone_annotations:2.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar", "mirror_urls": [ - "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", - "https://maven.fabric.io/public/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", - "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar", - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar" + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar", + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar", + "https://maven.fabric.io/public/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar", + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar", + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar" ], - "sha256": "f947bdc33ae27a6b4aa44799e6c21e1944797bd0010ba43eb82d11446e163694", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0.jar" + "sha256": "cd5257c08a246cf8628817ae71cb822be192ef91f6881ca4a3fcff4f1de1cff3", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar" }, { - "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar", "mirror_urls": [ - "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", - "https://maven.fabric.io/public/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", - "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar", - "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar" + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar", + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar", + "https://maven.fabric.io/public/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar", + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar", + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar" ], - "sha256": "0e41e099f0d4c9be030c34a6991821e67a57e2846dba908f4e9bc9ec60732837", - "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.9.0/error_prone_annotations-2.9.0-sources.jar" + "sha256": "e38921f918b8ad8eabd12bc61de426fa96c72de077054e9147d2f9fe7c648923", + "url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar" }, { "coord": "com.google.errorprone:javac-shaded:9-dev-r4023-3", @@ -6367,7 +6367,7 @@ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.errorprone:error_prone_annotations:2.7.1", "com.google.guava:failureaccess:1.0.1", "org.checkerframework:checker-compat-qual:2.5.5" ], @@ -6375,7 +6375,7 @@ "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", - "com.google.errorprone:error_prone_annotations:2.9.0", + "com.google.errorprone:error_prone_annotations:2.7.1", "com.google.guava:failureaccess:1.0.1", "org.checkerframework:checker-compat-qual:2.5.5" ], @@ -6398,7 +6398,7 @@ "org.checkerframework:checker-compat-qual:jar:sources:2.5.5", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1" ], "directDependencies": [ "com.google.code.findbugs:jsr305:jar:sources:3.0.2", @@ -6406,7 +6406,7 @@ "org.checkerframework:checker-compat-qual:jar:sources:2.5.5", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0" + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1" ], "file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/30.1.1-android/guava-30.1.1-android-sources.jar", "mirror_urls": [ @@ -6532,21 +6532,21 @@ "com.google.truth:truth:1.1.3", "com.google.code.findbugs:jsr305:3.0.2", "com.google.guava:guava:30.1.1-android", + "com.google.errorprone:error_prone_annotations:2.7.1", "org.hamcrest:hamcrest-core:1.3", "org.checkerframework:checker-qual:3.13.0", - "org.ow2.asm:asm:9.2", "com.google.auto.value:auto-value-annotations:1.8.1", - "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:failureaccess:1.0.1", + "org.ow2.asm:asm:9.1", "junit:junit:4.13.2", "org.checkerframework:checker-compat-qual:2.5.5" ], "directDependencies": [ "com.google.truth:truth:1.1.3", "com.google.guava:guava:30.1.1-android", + "com.google.errorprone:error_prone_annotations:2.7.1", "org.checkerframework:checker-qual:3.13.0", - "com.google.auto.value:auto-value-annotations:1.8.1", - "com.google.errorprone:error_prone_annotations:2.9.0" + "com.google.auto.value:auto-value-annotations:1.8.1" ], "file": "v1/https/repo1.maven.org/maven2/com/google/truth/extensions/truth-liteproto-extension/1.1.3/truth-liteproto-extension-1.1.3.jar", "mirror_urls": [ @@ -6562,10 +6562,10 @@ { "coord": "com.google.truth.extensions:truth-liteproto-extension:jar:sources:1.1.3", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", "com.google.guava:guava:jar:sources:30.1.1-android", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", + "org.ow2.asm:asm:jar:sources:9.1", "org.checkerframework:checker-qual:jar:sources:3.13.0", "junit:junit:jar:sources:4.13.2", "org.hamcrest:hamcrest-core:jar:sources:1.3", @@ -6573,14 +6573,14 @@ "org.checkerframework:checker-compat-qual:jar:sources:2.5.5", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1" ], "directDependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", "org.checkerframework:checker-qual:jar:sources:3.13.0", "com.google.truth:truth:jar:sources:1.1.3", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1" ], "file": "v1/https/repo1.maven.org/maven2/com/google/truth/extensions/truth-liteproto-extension/1.1.3/truth-liteproto-extension-1.1.3-sources.jar", @@ -6601,21 +6601,21 @@ "com.google.j2objc:j2objc-annotations:1.3", "com.google.code.findbugs:jsr305:3.0.2", "com.google.guava:guava:30.1.1-android", + "com.google.errorprone:error_prone_annotations:2.7.1", "org.hamcrest:hamcrest-core:1.3", "org.checkerframework:checker-qual:3.13.0", - "org.ow2.asm:asm:9.2", "com.google.auto.value:auto-value-annotations:1.8.1", - "com.google.errorprone:error_prone_annotations:2.9.0", "com.google.guava:failureaccess:1.0.1", + "org.ow2.asm:asm:9.1", "junit:junit:4.13.2", "org.checkerframework:checker-compat-qual:2.5.5" ], "directDependencies": [ "com.google.guava:guava:30.1.1-android", + "com.google.errorprone:error_prone_annotations:2.7.1", "org.checkerframework:checker-qual:3.13.0", - "org.ow2.asm:asm:9.2", "com.google.auto.value:auto-value-annotations:1.8.1", - "com.google.errorprone:error_prone_annotations:2.9.0", + "org.ow2.asm:asm:9.1", "junit:junit:4.13.2" ], "file": "v1/https/repo1.maven.org/maven2/com/google/truth/truth/1.1.3/truth-1.1.3.jar", @@ -6632,25 +6632,25 @@ { "coord": "com.google.truth:truth:jar:sources:1.1.3", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", "com.google.guava:guava:jar:sources:30.1.1-android", "com.google.code.findbugs:jsr305:jar:sources:3.0.2", "com.google.j2objc:j2objc-annotations:jar:sources:1.3", + "org.ow2.asm:asm:jar:sources:9.1", "org.checkerframework:checker-qual:jar:sources:3.13.0", "junit:junit:jar:sources:4.13.2", "org.hamcrest:hamcrest-core:jar:sources:1.3", "org.checkerframework:checker-compat-qual:jar:sources:2.5.5", "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava", "com.google.guava:failureaccess:jar:sources:1.0.1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", "com.google.guava:guava:jar:sources:30.1.1-android", + "org.ow2.asm:asm:jar:sources:9.1", "org.checkerframework:checker-qual:jar:sources:3.13.0", "junit:junit:jar:sources:4.13.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", + "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1" ], "file": "v1/https/repo1.maven.org/maven2/com/google/truth/truth/1.1.3/truth-1.1.3-sources.jar", @@ -6728,7 +6728,6 @@ "coord": "com.squareup.moshi:moshi-kotlin-codegen:1.11.0", "dependencies": [ "com.squareup:kotlinpoet:1.6.0", - "org.ow2.asm:asm:9.2", "com.squareup.moshi:moshi:1.11.0", "com.google.auto.service:auto-service-annotations:1.0-rc7", "net.ltgt.gradle.incap:incap:0.3", @@ -6736,15 +6735,16 @@ "com.squareup.okio:okio:2.6.0", "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10", "org.jetbrains.kotlin:kotlin-stdlib:1.5.0", + "org.ow2.asm:asm:9.1", "org.jetbrains.kotlin:kotlin-reflect:1.5.0" ], "directDependencies": [ "com.squareup:kotlinpoet:1.6.0", - "org.ow2.asm:asm:9.2", "com.squareup.moshi:moshi:1.11.0", "com.google.auto.service:auto-service-annotations:1.0-rc7", "net.ltgt.gradle.incap:incap:0.3", "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10", + "org.ow2.asm:asm:9.1", "org.jetbrains.kotlin:kotlin-reflect:1.5.0" ], "file": "v1/https/repo1.maven.org/maven2/com/squareup/moshi/moshi-kotlin-codegen/1.11.0/moshi-kotlin-codegen-1.11.0.jar", @@ -6762,8 +6762,8 @@ "coord": "com.squareup.moshi:moshi-kotlin-codegen:jar:sources:1.11.0", "dependencies": [ "com.google.auto.service:auto-service-annotations:jar:sources:1.0-rc7", - "org.ow2.asm:asm:jar:sources:9.2", "org.jetbrains.kotlin:kotlin-stdlib:jar:sources:1.5.0", + "org.ow2.asm:asm:jar:sources:9.1", "org.jetbrains.kotlin:kotlin-reflect:jar:sources:1.5.0", "org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:sources:1.4.10", "org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:sources:1.4.10", @@ -6774,7 +6774,7 @@ ], "directDependencies": [ "com.google.auto.service:auto-service-annotations:jar:sources:1.0-rc7", - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm:jar:sources:9.1", "org.jetbrains.kotlin:kotlin-reflect:jar:sources:1.5.0", "org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:sources:1.4.10", "com.squareup:kotlinpoet:jar:sources:1.6.0", @@ -7660,34 +7660,34 @@ "url": "https://repo1.maven.org/maven2/org/antlr/antlr4/4.5.3/antlr4-4.5.3-sources.jar" }, { - "coord": "org.bouncycastle:bcprov-jdk15on:1.68", + "coord": "org.bouncycastle:bcprov-jdk15on:1.65", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "file": "v1/https/repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar", "mirror_urls": [ - "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", - "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", - "https://maven.fabric.io/public/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", - "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", - "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar" + "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar", + "https://maven.fabric.io/public/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar", + "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar" ], - "sha256": "f732a46c8de7e2232f2007c682a21d1f4cc8a8a0149b6b7bd6aa1afdc65a0f8d", - "url": "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar" + "sha256": "e78f96eb59066c94c94fb2d6b5eb80f52feac6f5f9776898634f8addec6e2137", + "url": "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65.jar" }, { - "coord": "org.bouncycastle:bcprov-jdk15on:jar:sources:1.68", + "coord": "org.bouncycastle:bcprov-jdk15on:jar:sources:1.65", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar", - "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar", - "https://maven.fabric.io/public/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar", - "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar", - "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar" + "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar", + "https://maven.fabric.io/public/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar", + "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar" ], - "sha256": "d9bb57dd73ae7ae3a3b37fcbee6e91ca87156343123d6d3079712928088fb370", - "url": "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68-sources.jar" + "sha256": "12f179dee8bb7113f3d187319b260f3210d1ca7fbf403cd70385d339eacaeb4b", + "url": "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.65/bcprov-jdk15on-1.65-sources.jar" }, { "coord": "org.checkerframework:checker-compat-qual:2.5.5", @@ -8724,966 +8724,888 @@ "url": "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2-sources.jar" }, { - "coord": "org.ow2.asm:asm-analysis:9.2", + "coord": "org.ow2.asm:asm-analysis:9.0", "dependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm:9.1" ], "directDependencies": [ - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm-tree:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar", - "https://maven.google.com/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar" + "https://maven.google.com/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar", + "https://maven.google.com/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar" ], - "sha256": "878fbe521731c072d14d2d65b983b1beae6ad06fda0007b6a8bae81f73f433c4", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar" + "sha256": "2d46de6df856a4daac9aa534459ab7287eb80584e9109850405e5b302dc9c2a6", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar" }, { - "coord": "org.ow2.asm:asm-analysis:jar:sources:9.2", + "coord": "org.ow2.asm:asm-analysis:jar:sources:9.0", "dependencies": [ - "org.ow2.asm:asm-tree:jar:sources:9.2", - "org.ow2.asm:asm:jar:sources:9.2" + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.ow2.asm:asm:jar:sources:9.1" ], "directDependencies": [ - "org.ow2.asm:asm-tree:jar:sources:9.2" + "org.ow2.asm:asm-tree:jar:sources:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar", - "https://maven.google.com/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar" + "https://maven.google.com/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar", + "https://maven.google.com/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar" ], - "sha256": "c5a6764bbcee9e4bcd8ee1ea33808f96b8b587371f329aa75a2f541f2ee1b0d5", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2-sources.jar" + "sha256": "a34153ef6bac79a2a0535f62590671fe7c632ade294aa74938ee79da14707521", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0-sources.jar" }, { - "coord": "org.ow2.asm:asm-commons:9.2", + "coord": "org.ow2.asm:asm-commons:9.0", "dependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-analysis:9.0", + "org.ow2.asm:asm:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm:9.1", + "org.ow2.asm:asm-analysis:9.0", + "org.ow2.asm:asm-tree:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar", - "https://maven.google.com/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar" + "https://maven.google.com/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar", + "https://maven.google.com/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar" ], - "sha256": "be4ce53138a238bb522cd781cf91f3ba5ce2f6ca93ec62d46a162a127225e0a6", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar" + "sha256": "1b9090acb7e67bd4ed2f2cfb002063316d79cecace237bd07cc4f7f1b302092f", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar" }, { - "coord": "org.ow2.asm:asm-commons:jar:sources:9.2", + "coord": "org.ow2.asm:asm-commons:jar:sources:9.0", "dependencies": [ - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "org.ow2.asm:asm:jar:sources:9.2" + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm:jar:sources:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2" + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm-tree:jar:sources:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar", - "https://maven.google.com/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar" + "https://maven.google.com/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar", + "https://maven.google.com/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar" ], - "sha256": "6d98839136be45d5b1ffdca0fd2647eb8eaf92cff576648cbbf96f08afd3ed6d", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.2/asm-commons-9.2-sources.jar" + "sha256": "7ced1227cc5e9d9762a930e19f8708591c5ef458bcdebdebd7e934fbb1b1adf3", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0-sources.jar" }, { - "coord": "org.ow2.asm:asm-tree:9.2", + "coord": "org.ow2.asm:asm-tree:9.0", "dependencies": [ - "org.ow2.asm:asm:9.2" + "org.ow2.asm:asm:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:9.2" + "org.ow2.asm:asm:9.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar", - "https://maven.google.com/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar" + "https://maven.google.com/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar", + "https://maven.google.com/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar" ], - "sha256": "aabf9bd23091a4ebfc109c1f3ee7cf3e4b89f6ba2d3f51c5243f16b3cffae011", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar" + "sha256": "e2c25f332eb95861883a8568e45aac5e77d140d0fe961ae8eb9a474ec876e00d", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar" }, { - "coord": "org.ow2.asm:asm-tree:jar:sources:9.2", + "coord": "org.ow2.asm:asm-tree:jar:sources:9.0", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2" + "org.ow2.asm:asm:jar:sources:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2" + "org.ow2.asm:asm:jar:sources:9.1" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar", - "https://maven.google.com/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar" + "https://maven.google.com/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar", + "https://maven.google.com/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar" ], - "sha256": "c35bc5b4b6c54bf15abec34ab821cf9d0801a64451f4f6070d93dcb87122aa08", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.2/asm-tree-9.2-sources.jar" + "sha256": "e75b132b75a861dcbb8aa75b98783b863310fb2e3e3d28394c22063db5ec7432", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0-sources.jar" }, { - "coord": "org.ow2.asm:asm-util:9.2", + "coord": "org.ow2.asm:asm-util:9.0", "dependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-analysis:9.0", + "org.ow2.asm:asm:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-tree:9.2" + "org.ow2.asm:asm:9.1", + "org.ow2.asm:asm-analysis:9.0", + "org.ow2.asm:asm-tree:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar", - "https://maven.google.com/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar" + "https://maven.google.com/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar", + "https://maven.google.com/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar" ], - "sha256": "ff5b3cd331ae8a9a804768280da98f50f424fef23dd3c788bb320e08c94ee598", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2.jar" + "sha256": "2af6e7d01e0862e75193f3c01a06a689b0a245947e29f38eb683633391519bb6", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0.jar" }, { - "coord": "org.ow2.asm:asm-util:jar:sources:9.2", + "coord": "org.ow2.asm:asm-util:jar:sources:9.0", "dependencies": [ - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "org.ow2.asm:asm:jar:sources:9.2" + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm:jar:sources:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2" + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm-tree:jar:sources:9.0" ], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar", - "https://maven.google.com/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar" + "https://maven.google.com/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar", + "https://maven.google.com/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar" ], - "sha256": "b631d4561a24e84eaeee2c0495added214e4961ed328b02300f7d9b1f407c853", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.2/asm-util-9.2-sources.jar" + "sha256": "cdc52c849b9af5d157df3919621d484697ed35c755292c682704227c0e012710", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.0/asm-util-9.0-sources.jar" }, { - "coord": "org.ow2.asm:asm:9.2", + "coord": "org.ow2.asm:asm:9.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm/9.2/asm-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm/9.2/asm-9.2.jar", - "https://maven.google.com/org/ow2/asm/asm/9.2/asm-9.2.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.jar" + "https://maven.google.com/org/ow2/asm/asm/9.1/asm-9.1.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm/9.1/asm-9.1.jar", + "https://maven.google.com/org/ow2/asm/asm/9.1/asm-9.1.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar" ], - "sha256": "b9d4fe4d71938df38839f0eca42aaaa64cf8b313d678da036f0cb3ca199b47f5", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2.jar" + "sha256": "cda4de455fab48ff0bcb7c48b4639447d4de859a7afc30a094a986f0936beba2", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar" }, { - "coord": "org.ow2.asm:asm:jar:sources:9.2", + "coord": "org.ow2.asm:asm:jar:sources:9.1", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/ow2/asm/asm/9.2/asm-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2-sources.jar", - "https://maven.fabric.io/public/org/ow2/asm/asm/9.2/asm-9.2-sources.jar", - "https://maven.google.com/org/ow2/asm/asm/9.2/asm-9.2-sources.jar", - "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2-sources.jar" + "https://maven.google.com/org/ow2/asm/asm/9.1/asm-9.1-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1-sources.jar", + "https://maven.fabric.io/public/org/ow2/asm/asm/9.1/asm-9.1-sources.jar", + "https://maven.google.com/org/ow2/asm/asm/9.1/asm-9.1-sources.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1-sources.jar" ], - "sha256": "81e807010631f0e8074b0fb85e80afd6efbbd7e4b3694aad19e944c171980fb7", - "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.2/asm-9.2-sources.jar" + "sha256": "64a1059b152dee08e203b4e1117b7979fff1578c545573f05329fb6d9090bb41", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.1/asm-9.1-sources.jar" }, { - "coord": "org.robolectric:annotations:4.7", + "coord": "org.robolectric:annotations:4.5", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/annotations/4.7/annotations-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/annotations/4.7/annotations-4.7.jar", - "https://maven.google.com/org/robolectric/annotations/4.7/annotations-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7.jar" + "https://maven.google.com/org/robolectric/annotations/4.5/annotations-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/annotations/4.5/annotations-4.5.jar", + "https://maven.google.com/org/robolectric/annotations/4.5/annotations-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5.jar" ], - "sha256": "e6b50343f492e3a6d8a5ddbfd886be685c946459146f1ea2934cd0dacd8f558b", - "url": "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7.jar" + "sha256": "76b5bf55bb0d98e3b72fee1e015dea04c3a5a907aff02b9b405cebd50a19e1ab", + "url": "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5.jar" }, { - "coord": "org.robolectric:annotations:jar:sources:4.7", + "coord": "org.robolectric:annotations:jar:sources:4.5", "dependencies": [], "directDependencies": [], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/annotations/4.7/annotations-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/annotations/4.7/annotations-4.7-sources.jar", - "https://maven.google.com/org/robolectric/annotations/4.7/annotations-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7-sources.jar" + "https://maven.google.com/org/robolectric/annotations/4.5/annotations-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/annotations/4.5/annotations-4.5-sources.jar", + "https://maven.google.com/org/robolectric/annotations/4.5/annotations-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5-sources.jar" ], - "sha256": "1b86f73e9267b1642ec131b4d5a2137caab975a0316b88a0a99b3f036e615440", - "url": "https://repo1.maven.org/maven2/org/robolectric/annotations/4.7/annotations-4.7-sources.jar" + "sha256": "32eccf8cbb11da68ffbe0fc14278150dc4236f77de26af1d1727e6acd61a086b", + "url": "https://repo1.maven.org/maven2/org/robolectric/annotations/4.5/annotations-4.5-sources.jar" }, { - "coord": "org.robolectric:junit:4.7", + "coord": "org.robolectric:junit:4.5", "dependencies": [ - "org.ow2.asm:asm-tree:9.2", - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", - "org.ow2.asm:asm-util:9.2", + "org.ow2.asm:asm-analysis:9.0", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "org.robolectric:sandbox:4.7", - "org.ow2.asm:asm:9.2", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", + "org.ow2.asm:asm-commons:9.0", + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-util:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1", - "org.robolectric:shadowapi:4.7" + "org.ow2.asm:asm:9.1", + "org.robolectric:shadowapi:4.5", + "org.robolectric:sandbox:4.5" ], "directDependencies": [ - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", - "org.robolectric:sandbox:4.7", - "org.robolectric:pluginapi:4.7", - "org.robolectric:shadowapi:4.7" + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", + "org.robolectric:shadowapi:4.5", + "org.robolectric:sandbox:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/junit/4.7/junit-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/junit/4.7/junit-4.7.jar", - "https://maven.google.com/org/robolectric/junit/4.7/junit-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7.jar" + "https://maven.google.com/org/robolectric/junit/4.5/junit-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/junit/4.5/junit-4.5.jar", + "https://maven.google.com/org/robolectric/junit/4.5/junit-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5.jar" ], - "sha256": "887adf35c2cfff04a3f40d15eaa1f9b2bdda3290068fb36a851dcba262c9e454", - "url": "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7.jar" + "sha256": "c9eec2e87d53fc7a4af3c0c1c4b722963f2dc7d0a01b90568a6c83ca6d751c4a", + "url": "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5.jar" }, { - "coord": "org.robolectric:junit:jar:sources:4.7", + "coord": "org.robolectric:junit:jar:sources:4.5", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.robolectric:sandbox:jar:sources:4.7", + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:shadowapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm-util:jar:sources:9.0", + "org.robolectric:sandbox:jar:sources:4.5", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" - ], - "directDependencies": [ - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.robolectric:sandbox:jar:sources:4.7", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" - ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7-sources.jar", - "mirror_urls": [ - "https://maven.google.com/org/robolectric/junit/4.7/junit-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/junit/4.7/junit-4.7-sources.jar", - "https://maven.google.com/org/robolectric/junit/4.7/junit-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7-sources.jar" - ], - "sha256": "3b80163d73fd2ac07af4f9189a95b4e53cd718502ee304b8d3ac10522216c80c", - "url": "https://repo1.maven.org/maven2/org/robolectric/junit/4.7/junit-4.7-sources.jar" - }, - { - "coord": "org.robolectric:nativeruntime:4.7", - "dependencies": [ - "com.google.guava:guava:30.1.1-android" - ], - "directDependencies": [ - "com.google.guava:guava:30.1.1-android" - ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar", - "mirror_urls": [ - "https://maven.google.com/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar", - "https://maven.google.com/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar" - ], - "sha256": "2a19ea7935855831ccff605e5b07d2539d44fbd9741b767bdfd34b8b3a35d508", - "url": "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7.jar" - }, - { - "coord": "org.robolectric:nativeruntime:jar:sources:4.7", - "dependencies": [ - "com.google.guava:guava:jar:sources:30.1.1-android" + "org.robolectric:utils-reflector:jar:sources:4.5" ], "directDependencies": [ - "com.google.guava:guava:jar:sources:30.1.1-android" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:shadowapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "org.robolectric:sandbox:jar:sources:4.5", + "org.robolectric:utils-reflector:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar", - "https://maven.google.com/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar" + "https://maven.google.com/org/robolectric/junit/4.5/junit-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/junit/4.5/junit-4.5-sources.jar", + "https://maven.google.com/org/robolectric/junit/4.5/junit-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5-sources.jar" ], - "sha256": "46d85199dafff6224e1d450f252c0b2974eac8fd6f98bb3fe060d1ead63bbb39", - "url": "https://repo1.maven.org/maven2/org/robolectric/nativeruntime/4.7/nativeruntime-4.7-sources.jar" + "sha256": "6e631445ffcb2ecefb4ba4e170ae31e39f281244a3ce68b444f8d8fe1944782f", + "url": "https://repo1.maven.org/maven2/org/robolectric/junit/4.5/junit-4.5-sources.jar" }, { - "coord": "org.robolectric:pluginapi:4.7", + "coord": "org.robolectric:pluginapi:4.5", "dependencies": [ - "org.robolectric:annotations:4.7" + "org.robolectric:annotations:4.5" ], "directDependencies": [ - "org.robolectric:annotations:4.7" + "org.robolectric:annotations:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar", - "https://maven.google.com/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar" + "https://maven.google.com/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar", + "https://maven.google.com/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar" ], - "sha256": "101dbd8b6a920a9bf21f6ca06ff68eb8e6dd7a887091c6d51488faa7ffea9b71", - "url": "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7.jar" + "sha256": "9292f4a65d546b27b000112f1daeea8228c039ba9eb790d122ee99a4b04d8c43", + "url": "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5.jar" }, { - "coord": "org.robolectric:pluginapi:jar:sources:4.7", + "coord": "org.robolectric:pluginapi:jar:sources:4.5", "dependencies": [ - "org.robolectric:annotations:jar:sources:4.7" + "org.robolectric:annotations:jar:sources:4.5" ], "directDependencies": [ - "org.robolectric:annotations:jar:sources:4.7" + "org.robolectric:annotations:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar", - "https://maven.google.com/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar" + "https://maven.google.com/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar", + "https://maven.google.com/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar" ], - "sha256": "3f8124589ec2bdcd644ba3d43b24bfaf696df4f4ff8ca91bf79033d55465a7f7", - "url": "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.7/pluginapi-4.7-sources.jar" + "sha256": "c90002bd085a03daf77b51ed4e0867cff898adaa754023aea21f4bcb84567127", + "url": "https://repo1.maven.org/maven2/org/robolectric/pluginapi/4.5/pluginapi-4.5-sources.jar" }, { - "coord": "org.robolectric:plugins-maven-dependency-resolver:4.7", + "coord": "org.robolectric:plugins-maven-dependency-resolver:4.5", "dependencies": [ - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", "javax.annotation:javax.annotation-api:1.3.2", - "org.robolectric:utils:4.7", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1" ], "directDependencies": [ "com.google.guava:guava:30.1.1-android", - "org.robolectric:pluginapi:4.7", - "org.robolectric:utils:4.7" + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar", - "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar" + "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar", + "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar" ], - "sha256": "a72c736098cfcbf806fabb8560fca4e518fee0bba3182f55ada86b291128d94c", - "url": "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7.jar" + "sha256": "e6c381016e2da09c3f3a7859075042d3457d0dc0a6ba088b8d969b9d3a525cfa", + "url": "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5.jar" }, { - "coord": "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.7", + "coord": "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.5", "dependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "javax.annotation:javax.annotation-api:jar:sources:1.3.2" ], "directDependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:pluginapi:jar:sources:4.7", - "org.robolectric:utils:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:utils:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar", - "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar" + "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar", + "https://maven.google.com/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar" ], - "sha256": "cb681a34d6a1acc22cad99483c5adf2f168871b5faca652a390f2559b4a9bdf6", - "url": "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.7/plugins-maven-dependency-resolver-4.7-sources.jar" + "sha256": "628689f56c37d669a60d5aa669e59acb0d64001f6b2533174ed5ddee4871d7bb", + "url": "https://repo1.maven.org/maven2/org/robolectric/plugins-maven-dependency-resolver/4.5/plugins-maven-dependency-resolver-4.5-sources.jar" }, { - "coord": "org.robolectric:resources:4.7", + "coord": "org.robolectric:resources:4.5", "dependencies": [ - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", "javax.annotation:javax.annotation-api:1.3.2", - "org.robolectric:utils:4.7", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1" ], "directDependencies": [ "com.google.guava:guava:30.1.1-android", - "org.robolectric:annotations:4.7", - "org.robolectric:pluginapi:4.7", - "org.robolectric:utils:4.7" + "org.robolectric:annotations:4.5", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/resources/4.7/resources-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/resources/4.7/resources-4.7.jar", - "https://maven.google.com/org/robolectric/resources/4.7/resources-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7.jar" + "https://maven.google.com/org/robolectric/resources/4.5/resources-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/resources/4.5/resources-4.5.jar", + "https://maven.google.com/org/robolectric/resources/4.5/resources-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5.jar" ], - "sha256": "bfca8d227eafc738f9c4fcab08cc6251d1e876330d6cfd6b994bcfdf65894bba", - "url": "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7.jar" + "sha256": "21b60d114670827bf80b7815faa16da02eeda2fcd01cba088dfb630fa9721eb3", + "url": "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5.jar" }, { - "coord": "org.robolectric:resources:jar:sources:4.7", + "coord": "org.robolectric:resources:jar:sources:4.5", "dependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "javax.annotation:javax.annotation-api:jar:sources:1.3.2" ], "directDependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7", - "org.robolectric:utils:jar:sources:4.7" + "org.robolectric:annotations:jar:sources:4.5", + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:utils:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/resources/4.7/resources-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/resources/4.7/resources-4.7-sources.jar", - "https://maven.google.com/org/robolectric/resources/4.7/resources-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7-sources.jar" + "https://maven.google.com/org/robolectric/resources/4.5/resources-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/resources/4.5/resources-4.5-sources.jar", + "https://maven.google.com/org/robolectric/resources/4.5/resources-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5-sources.jar" ], - "sha256": "f40a32c9af6ac056c94606956d842b6d9db130bfae6f3006c171a4309b9fbc87", - "url": "https://repo1.maven.org/maven2/org/robolectric/resources/4.7/resources-4.7-sources.jar" + "sha256": "d5baa25e556e4fc67d3dc6bdf0bf32d29df4439856fc054112f81596a1fe1574", + "url": "https://repo1.maven.org/maven2/org/robolectric/resources/4.5/resources-4.5-sources.jar" }, { - "coord": "org.robolectric:robolectric:4.7", + "coord": "org.robolectric:robolectric:4.5", "dependencies": [ - "org.robolectric:nativeruntime:4.7", - "org.ow2.asm:asm-tree:9.2", + "org.robolectric:shadows-framework:4.5", + "org.ow2.asm:asm-analysis:9.0", "androidx.annotation:annotation:1.1.0", - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", "androidx.test:monitor:1.4.0", - "org.ow2.asm:asm-util:9.2", + "org.robolectric:plugins-maven-dependency-resolver:4.5", + "org.robolectric:resources:4.5", + "org.robolectric:junit:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "org.robolectric:sandbox:4.7", + "org.ow2.asm:asm-commons:9.0", "androidx.test:monitor:aar:1.4.0", - "org.bouncycastle:bcprov-jdk15on:1.68", - "org.ow2.asm:asm:9.2", "com.google.auto.value:auto-value-annotations:1.8.1", "com.almworks.sqlite4java:sqlite4java:1.0.392", - "org.robolectric:shadows-framework:4.7", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:plugins-maven-dependency-resolver:4.7", - "org.robolectric:resources:4.7", - "org.robolectric:pluginapi:4.7", + "org.ow2.asm:asm-tree:9.0", + "org.bouncycastle:bcprov-jdk15on:1.65", + "org.ow2.asm:asm-util:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:junit:4.7", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1", + "org.ow2.asm:asm:9.1", "com.ibm.icu:icu4j:53.1", - "org.robolectric:shadowapi:4.7" + "org.robolectric:shadowapi:4.5", + "org.robolectric:sandbox:4.5" ], "directDependencies": [ - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", + "org.robolectric:shadows-framework:4.5", + "org.robolectric:pluginapi:4.5", "androidx.test:monitor:1.4.0", - "org.robolectric:sandbox:4.7", - "org.bouncycastle:bcprov-jdk15on:1.68", - "org.robolectric:shadows-framework:4.7", - "org.robolectric:plugins-maven-dependency-resolver:4.7", - "org.robolectric:resources:4.7", - "org.robolectric:pluginapi:4.7", + "org.robolectric:plugins-maven-dependency-resolver:4.5", + "org.robolectric:resources:4.5", + "org.robolectric:junit:4.5", + "org.robolectric:utils:4.5", + "org.bouncycastle:bcprov-jdk15on:1.65", "javax.annotation:javax.annotation-api:1.3.2", - "org.robolectric:junit:4.7", - "org.robolectric:utils:4.7", - "javax.inject:javax.inject:1" + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", + "javax.inject:javax.inject:1", + "org.robolectric:sandbox:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/robolectric/4.7/robolectric-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/robolectric/4.7/robolectric-4.7.jar", - "https://maven.google.com/org/robolectric/robolectric/4.7/robolectric-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7.jar" + "https://maven.google.com/org/robolectric/robolectric/4.5/robolectric-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/robolectric/4.5/robolectric-4.5.jar", + "https://maven.google.com/org/robolectric/robolectric/4.5/robolectric-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5.jar" ], - "sha256": "7b13241ae4af4719499da02bd1be8aacf9ff13e695df93a115d052a61da4d885", - "url": "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7.jar" + "sha256": "ba9f8130c11d5b34dfe61990d2e9adfbcf5a945476309c3dcb48fce547331c27", + "url": "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5.jar" }, { - "coord": "org.robolectric:robolectric:jar:sources:4.7", + "coord": "org.robolectric:robolectric:jar:sources:4.5", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", "androidx.test:monitor:jar:sources:1.4.0", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:shadows-framework:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.ow2.asm:asm-analysis:jar:sources:9.2", - "org.robolectric:sandbox:jar:sources:4.7", - "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.7", + "org.robolectric:resources:jar:sources:4.5", + "org.ow2.asm:asm:jar:sources:9.1", "androidx.test:monitor:aar:sources:1.4.0", - "org.robolectric:junit:jar:sources:4.7", + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", + "org.robolectric:pluginapi:jar:sources:4.5", "com.almworks.sqlite4java:sqlite4java:jar:sources:1.0.392", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", + "org.robolectric:shadows-framework:jar:sources:4.5", + "org.robolectric:shadowapi:jar:sources:4.5", "androidx.annotation:annotation:jar:sources:1.1.0", "com.ibm.icu:icu4j:jar:sources:53.1", - "org.robolectric:nativeruntime:jar:sources:4.7", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "org.bouncycastle:bcprov-jdk15on:jar:sources:1.68", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:resources:jar:sources:4.7", + "org.bouncycastle:bcprov-jdk15on:jar:sources:1.65", + "org.robolectric:annotations:jar:sources:4.5", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.5", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1", - "org.robolectric:utils:jar:sources:4.7", + "org.ow2.asm:asm-util:jar:sources:9.0", + "org.robolectric:sandbox:jar:sources:4.5", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:junit:jar:sources:4.5", + "org.robolectric:utils-reflector:jar:sources:4.5" ], "directDependencies": [ "androidx.test:monitor:jar:sources:1.4.0", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:shadows-framework:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.robolectric:sandbox:jar:sources:4.7", - "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.7", - "org.robolectric:junit:jar:sources:4.7", + "org.robolectric:resources:jar:sources:4.5", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "org.bouncycastle:bcprov-jdk15on:jar:sources:1.68", - "org.robolectric:resources:jar:sources:4.7", - "org.robolectric:utils:jar:sources:4.7", + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:shadows-framework:jar:sources:4.5", + "org.bouncycastle:bcprov-jdk15on:jar:sources:1.65", + "org.robolectric:annotations:jar:sources:4.5", + "org.robolectric:plugins-maven-dependency-resolver:jar:sources:4.5", + "org.robolectric:sandbox:jar:sources:4.5", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:junit:jar:sources:4.5", + "org.robolectric:utils-reflector:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar", - "https://maven.google.com/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar" + "https://maven.google.com/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar", + "https://maven.google.com/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar" ], - "sha256": "e5e5e2ae2d4a498dd74d08211c6c93d530d9b3b20711d56d554f3b5072a2e8c3", - "url": "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.7/robolectric-4.7-sources.jar" + "sha256": "54293237f2b9f48f1609935bffc37b353b3e981962fb578da64bae1a82c6c25d", + "url": "https://repo1.maven.org/maven2/org/robolectric/robolectric/4.5/robolectric-4.5-sources.jar" }, { - "coord": "org.robolectric:sandbox:4.7", + "coord": "org.robolectric:sandbox:4.5", "dependencies": [ - "org.ow2.asm:asm-tree:9.2", - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", - "org.ow2.asm:asm-util:9.2", + "org.ow2.asm:asm-analysis:9.0", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "org.ow2.asm:asm:9.2", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", + "org.ow2.asm:asm-commons:9.0", + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-util:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1", - "org.robolectric:shadowapi:4.7" + "org.ow2.asm:asm:9.1", + "org.robolectric:shadowapi:4.5" ], "directDependencies": [ - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "org.ow2.asm:asm:9.2", + "org.ow2.asm:asm-commons:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1", - "org.robolectric:shadowapi:4.7" + "org.ow2.asm:asm:9.1", + "org.robolectric:shadowapi:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/sandbox/4.7/sandbox-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/sandbox/4.7/sandbox-4.7.jar", - "https://maven.google.com/org/robolectric/sandbox/4.7/sandbox-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7.jar" + "https://maven.google.com/org/robolectric/sandbox/4.5/sandbox-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/sandbox/4.5/sandbox-4.5.jar", + "https://maven.google.com/org/robolectric/sandbox/4.5/sandbox-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5.jar" ], - "sha256": "a75c6d7ff0b6cd8862fece94a3c47f223f3f3db2d7f35a5ae696a967e76ff747", - "url": "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7.jar" + "sha256": "cf18639f2991893122f88df87bf83eb325b3ca1031c9a730acead5acdc7e275c", + "url": "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5.jar" }, { - "coord": "org.robolectric:sandbox:jar:sources:4.7", + "coord": "org.robolectric:sandbox:jar:sources:4.5", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.ow2.asm:asm-analysis:jar:sources:9.2", + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:shadowapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm-util:jar:sources:9.0", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:utils-reflector:jar:sources:4.5" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", + "org.ow2.asm:asm:jar:sources:9.1", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "org.ow2.asm:asm-commons:jar:sources:9.2", - "org.robolectric:utils:jar:sources:4.7", + "org.robolectric:shadowapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:shadowapi:jar:sources:4.7" + "org.robolectric:utils-reflector:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar", - "https://maven.google.com/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar" + "https://maven.google.com/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar", + "https://maven.google.com/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar" ], - "sha256": "7ff8eb25e89130662997e329430fba44f438c2f3bbe3d56b2e921c1d85e9c469", - "url": "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.7/sandbox-4.7-sources.jar" + "sha256": "e9c61c173f65a73f4ae415cc0095c8570ed199d8247b4421032b82cc2aca3571", + "url": "https://repo1.maven.org/maven2/org/robolectric/sandbox/4.5/sandbox-4.5-sources.jar" }, { - "coord": "org.robolectric:shadowapi:4.7", + "coord": "org.robolectric:shadowapi:4.5", "dependencies": [ - "org.robolectric:annotations:4.7", - "com.google.guava:guava:30.1.1-android", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", - "javax.annotation:javax.annotation-api:1.3.2", - "org.robolectric:utils:4.7", - "javax.inject:javax.inject:1" + "org.robolectric:annotations:4.5" ], "directDependencies": [ - "org.robolectric:annotations:4.7", - "org.robolectric:utils:4.7" + "org.robolectric:annotations:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar", - "https://maven.google.com/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar" + "https://maven.google.com/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar", + "https://maven.google.com/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar" ], - "sha256": "a5b845650d009ae0bc8c220b53a90939be1cb6192831553785ed165875db8e4d", - "url": "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7.jar" + "sha256": "a158c49d0274a1412fb909d6b2e52a06b230a2b80ad8657c072c7474f0e69c1f", + "url": "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5.jar" }, { - "coord": "org.robolectric:shadowapi:jar:sources:4.7", + "coord": "org.robolectric:shadowapi:jar:sources:4.5", "dependencies": [ - "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "javax.inject:javax.inject:jar:sources:1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:annotations:jar:sources:4.5" ], "directDependencies": [ - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils:jar:sources:4.7" + "org.robolectric:annotations:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar", - "https://maven.google.com/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar" + "https://maven.google.com/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar", + "https://maven.google.com/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar" ], - "sha256": "2b45b6a2de98163d389aef25f95bac53e901c708dd675c122f1b97d68377c471", - "url": "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.7/shadowapi-4.7-sources.jar" + "sha256": "4a220cfd840b1aec509512825a6b332dbe8889f988f25d60369ceb599396ac9e", + "url": "https://repo1.maven.org/maven2/org/robolectric/shadowapi/4.5/shadowapi-4.5-sources.jar" }, { - "coord": "org.robolectric:shadows-framework:4.7", + "coord": "org.robolectric:shadows-framework:4.5", "dependencies": [ - "org.robolectric:nativeruntime:4.7", - "org.ow2.asm:asm-tree:9.2", + "org.ow2.asm:asm-analysis:9.0", "androidx.annotation:annotation:1.1.0", - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", - "org.ow2.asm:asm-util:9.2", + "org.robolectric:pluginapi:4.5", + "org.robolectric:resources:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", + "org.ow2.asm:asm-commons:9.0", "androidx.test:monitor:aar:1.4.0", - "org.ow2.asm:asm:9.2", "com.google.auto.value:auto-value-annotations:1.8.1", "com.almworks.sqlite4java:sqlite4java:1.0.392", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:resources:4.7", - "org.robolectric:pluginapi:4.7", + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-util:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1", + "org.ow2.asm:asm:9.1", "com.ibm.icu:icu4j:53.1", - "org.robolectric:shadowapi:4.7" + "org.robolectric:shadowapi:4.5" ], "directDependencies": [ - "org.robolectric:nativeruntime:4.7", "androidx.annotation:annotation:1.1.0", - "org.robolectric:utils-reflector:4.7", - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", + "org.robolectric:resources:4.5", + "org.robolectric:utils:4.5", "androidx.test:monitor:aar:1.4.0", "com.google.auto.value:auto-value-annotations:1.8.1", "com.almworks.sqlite4java:sqlite4java:1.0.392", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:resources:4.7", - "org.robolectric:pluginapi:4.7", - "org.robolectric:utils:4.7", + "org.robolectric:utils-reflector:4.5", + "org.robolectric:annotations:4.5", "com.ibm.icu:icu4j:53.1", - "org.robolectric:shadowapi:4.7" + "org.robolectric:shadowapi:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar", - "https://maven.google.com/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar" + "https://maven.google.com/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar", + "https://maven.google.com/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar" ], - "sha256": "05a07bd6c5407999df9d84b73e1dcf016ae73c36b8f0bb53ca2e8c2bfb6d070d", - "url": "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7.jar" + "sha256": "3be4c7d01ee2fb5cff4cb90a65af26831199baac3e92311dd2d5f42cadb50723", + "url": "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5.jar" }, { - "coord": "org.robolectric:shadows-framework:jar:sources:4.7", + "coord": "org.robolectric:shadows-framework:jar:sources:4.5", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", - "org.ow2.asm:asm-analysis:jar:sources:9.2", + "org.robolectric:resources:jar:sources:4.5", + "org.ow2.asm:asm:jar:sources:9.1", "androidx.test:monitor:aar:sources:1.4.0", + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", + "org.robolectric:pluginapi:jar:sources:4.5", "com.almworks.sqlite4java:sqlite4java:jar:sources:1.0.392", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", + "org.robolectric:shadowapi:jar:sources:4.5", "androidx.annotation:annotation:jar:sources:1.1.0", "com.ibm.icu:icu4j:jar:sources:53.1", - "org.robolectric:nativeruntime:jar:sources:4.7", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:resources:jar:sources:4.7", + "org.robolectric:annotations:jar:sources:4.5", + "org.ow2.asm:asm-analysis:jar:sources:9.0", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1", - "org.robolectric:utils:jar:sources:4.7", + "org.ow2.asm:asm-util:jar:sources:9.0", "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:utils-reflector:jar:sources:4.5" ], "directDependencies": [ - "org.robolectric:annotations:jar:sources:4.7", - "org.robolectric:utils-reflector:jar:sources:4.7", + "org.robolectric:resources:jar:sources:4.5", "androidx.test:monitor:aar:sources:1.4.0", + "org.robolectric:utils:jar:sources:4.5", + "org.robolectric:pluginapi:jar:sources:4.5", "com.almworks.sqlite4java:sqlite4java:jar:sources:1.0.392", + "org.robolectric:shadowapi:jar:sources:4.5", "androidx.annotation:annotation:jar:sources:1.1.0", "com.ibm.icu:icu4j:jar:sources:53.1", - "org.robolectric:nativeruntime:jar:sources:4.7", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:resources:jar:sources:4.7", + "org.robolectric:annotations:jar:sources:4.5", "com.google.auto.value:auto-value-annotations:jar:sources:1.8.1", - "org.robolectric:utils:jar:sources:4.7", - "org.robolectric:shadowapi:jar:sources:4.7", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:utils-reflector:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar", - "https://maven.google.com/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar" + "https://maven.google.com/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar", + "https://maven.google.com/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar" ], - "sha256": "166a1ce45d8410d86fa4d7e0376b1bdf2ad26d3fbaeb1ffec51f63ca226d413f", - "url": "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.7/shadows-framework-4.7-sources.jar" + "sha256": "879288cd58699b4a75ebda38bb0905f359a258575f18ff0e7b861d18a8595231", + "url": "https://repo1.maven.org/maven2/org/robolectric/shadows-framework/4.5/shadows-framework-4.5-sources.jar" }, { - "coord": "org.robolectric:utils-reflector:4.7", + "coord": "org.robolectric:utils-reflector:4.5", "dependencies": [ - "org.ow2.asm:asm-tree:9.2", - "org.robolectric:annotations:4.7", - "org.ow2.asm:asm-util:9.2", + "org.ow2.asm:asm-analysis:9.0", + "org.robolectric:pluginapi:4.5", + "org.robolectric:utils:4.5", "com.google.guava:guava:30.1.1-android", - "org.ow2.asm:asm:9.2", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", + "org.ow2.asm:asm-commons:9.0", + "org.ow2.asm:asm-tree:9.0", + "org.ow2.asm:asm-util:9.0", "javax.annotation:javax.annotation-api:1.3.2", - "org.ow2.asm:asm-analysis:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.robolectric:utils:4.7", - "javax.inject:javax.inject:1" + "org.robolectric:annotations:4.5", + "javax.inject:javax.inject:1", + "org.ow2.asm:asm:9.1" ], "directDependencies": [ - "org.ow2.asm:asm:9.2", - "org.ow2.asm:asm-commons:9.2", - "org.ow2.asm:asm-util:9.2", - "org.robolectric:utils:4.7" + "org.ow2.asm:asm:9.1", + "org.ow2.asm:asm-commons:9.0", + "org.ow2.asm:asm-util:9.0", + "org.robolectric:utils:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar", - "https://maven.google.com/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar" + "https://maven.google.com/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar", + "https://maven.google.com/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar" ], - "sha256": "a18155366b0d8977f3a23b83c9d0150180c5d6a981f6df92ac9ea3018151eb3e", - "url": "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7.jar" + "sha256": "91f9e5f9eacd6a2f308473b39d473f3edd205365fe3c4188f8c4c11191c6d914", + "url": "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5.jar" }, { - "coord": "org.robolectric:utils-reflector:jar:sources:4.7", + "coord": "org.robolectric:utils-reflector:jar:sources:4.5", "dependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", + "org.ow2.asm:asm-commons:jar:sources:9.0", "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", - "org.ow2.asm:asm-analysis:jar:sources:9.2", + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-tree:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5", "javax.inject:javax.inject:jar:sources:1", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", - "org.ow2.asm:asm-tree:jar:sources:9.2", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "org.robolectric:utils:jar:sources:4.7", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "org.ow2.asm:asm-analysis:jar:sources:9.0", + "org.ow2.asm:asm-util:jar:sources:9.0", + "javax.annotation:javax.annotation-api:jar:sources:1.3.2" ], "directDependencies": [ - "org.ow2.asm:asm:jar:sources:9.2", - "org.ow2.asm:asm-commons:jar:sources:9.2", - "org.ow2.asm:asm-util:jar:sources:9.2", - "org.robolectric:utils:jar:sources:4.7" + "org.ow2.asm:asm:jar:sources:9.1", + "org.ow2.asm:asm-commons:jar:sources:9.0", + "org.ow2.asm:asm-util:jar:sources:9.0", + "org.robolectric:utils:jar:sources:4.5" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar", - "https://maven.google.com/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar" + "https://maven.google.com/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar", + "https://maven.google.com/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar" ], - "sha256": "4c95ac25e3d51e16632933120e6e92468791bee03314a84bb03390aa11a22241", - "url": "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.7/utils-reflector-4.7-sources.jar" + "sha256": "a8f9c774036f4ed79a1c08cd876a4ec0e8eac311875c0a3e9df7de8ab0e5e003", + "url": "https://repo1.maven.org/maven2/org/robolectric/utils-reflector/4.5/utils-reflector-4.5-sources.jar" }, { - "coord": "org.robolectric:utils:4.7", + "coord": "org.robolectric:utils:4.5", "dependencies": [ - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", "com.google.guava:guava:30.1.1-android", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", "javax.annotation:javax.annotation-api:1.3.2", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1" ], "directDependencies": [ - "org.robolectric:annotations:4.7", + "org.robolectric:pluginapi:4.5", "com.google.guava:guava:30.1.1-android", - "com.google.errorprone:error_prone_annotations:2.9.0", - "org.robolectric:pluginapi:4.7", "javax.annotation:javax.annotation-api:1.3.2", + "org.robolectric:annotations:4.5", "javax.inject:javax.inject:1" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/utils/4.7/utils-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7.jar", - "https://maven.fabric.io/public/org/robolectric/utils/4.7/utils-4.7.jar", - "https://maven.google.com/org/robolectric/utils/4.7/utils-4.7.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7.jar" + "https://maven.google.com/org/robolectric/utils/4.5/utils-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5.jar", + "https://maven.fabric.io/public/org/robolectric/utils/4.5/utils-4.5.jar", + "https://maven.google.com/org/robolectric/utils/4.5/utils-4.5.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5.jar" ], - "sha256": "a3bf567dcf05ee9ebdba79cf6f9b9043460958b354d815e49394e00ad536fd99", - "url": "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7.jar" + "sha256": "b0982a413c4bd874a8099b97a22cdcd4826cf62178f17dbca67d814627124de1", + "url": "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5.jar" }, { - "coord": "org.robolectric:utils:jar:sources:4.7", + "coord": "org.robolectric:utils:jar:sources:4.5", "dependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", "javax.inject:javax.inject:jar:sources:1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "javax.annotation:javax.annotation-api:jar:sources:1.3.2" ], "directDependencies": [ "com.google.guava:guava:jar:sources:30.1.1-android", - "org.robolectric:annotations:jar:sources:4.7", "javax.inject:javax.inject:jar:sources:1", - "com.google.errorprone:error_prone_annotations:jar:sources:2.9.0", - "javax.annotation:javax.annotation-api:jar:sources:1.3.2", - "org.robolectric:pluginapi:jar:sources:4.7" + "org.robolectric:pluginapi:jar:sources:4.5", + "org.robolectric:annotations:jar:sources:4.5", + "javax.annotation:javax.annotation-api:jar:sources:1.3.2" ], - "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7-sources.jar", + "file": "v1/https/repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5-sources.jar", "mirror_urls": [ - "https://maven.google.com/org/robolectric/utils/4.7/utils-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7-sources.jar", - "https://maven.fabric.io/public/org/robolectric/utils/4.7/utils-4.7-sources.jar", - "https://maven.google.com/org/robolectric/utils/4.7/utils-4.7-sources.jar", - "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7-sources.jar" + "https://maven.google.com/org/robolectric/utils/4.5/utils-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5-sources.jar", + "https://maven.fabric.io/public/org/robolectric/utils/4.5/utils-4.5-sources.jar", + "https://maven.google.com/org/robolectric/utils/4.5/utils-4.5-sources.jar", + "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5-sources.jar" ], - "sha256": "b43454dd1c3e65c6fb7c5ee6d831aa9c18cc37c666248db8603c50c6f4a4e32e", - "url": "https://repo1.maven.org/maven2/org/robolectric/utils/4.7/utils-4.7-sources.jar" + "sha256": "f8b7e1a3ed9916c1d2529ede178af4bd6dc3b2f41fc9be57c22476f3e91ffdb4", + "url": "https://repo1.maven.org/maven2/org/robolectric/utils/4.5/utils-4.5-sources.jar" }, { "coord": "androidx.constraintlayout:constraintlayout-solver:jar:sources:2.0.1", diff --git a/third_party/versions.bzl b/third_party/versions.bzl index e045ce8a0ec..391c54d952a 100644 --- a/third_party/versions.bzl +++ b/third_party/versions.bzl @@ -104,8 +104,8 @@ MAVEN_TEST_DEPENDENCY_VERSIONS = { "org.jetbrains.kotlinx:kotlinx-coroutines-test": "1.2.2", "org.mockito.kotlin:mockito-kotlin": "3.2.0", "org.mockito:mockito-core": "2.19.0", - "org.robolectric:annotations": "4.7", - "org.robolectric:robolectric": "4.7", + "org.robolectric:annotations": "4.5", + "org.robolectric:robolectric": "4.5", } # Note to developers: Please keep this dict sorted by key to make it easier to find dependencies. diff --git a/utility/build.gradle b/utility/build.gradle index 84ee91cd2f3..4ffcde26c70 100644 --- a/utility/build.gradle +++ b/utility/build.gradle @@ -108,7 +108,7 @@ dependencies { "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version", 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.2.2', 'org.mockito:mockito-core:2.19.0', - 'org.robolectric:robolectric:4.7', + 'org.robolectric:robolectric:4.5', project(":testing"), ) kapt( diff --git a/utility/src/test/AndroidManifest.xml b/utility/src/test/AndroidManifest.xml index 96239de01cc..b028fea9297 100644 --- a/utility/src/test/AndroidManifest.xml +++ b/utility/src/test/AndroidManifest.xml @@ -1,5 +1,5 @@ + android:targetSdkVersion="30" /> diff --git a/utility/src/test/resources/robolectric.properties b/utility/src/test/resources/robolectric.properties index 115295ebbc3..b14a2828607 100644 --- a/utility/src/test/resources/robolectric.properties +++ b/utility/src/test/resources/robolectric.properties @@ -1,3 +1,3 @@ # utility/src/test/resources/robolectric.properties # TODO(#1794): Remove the need for this file & use SDK 29 at the project level. -sdk=31 +sdk=30