We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27c540 commit 00147e9Copy full SHA for 00147e9
instrumentation-runner/build.gradle
@@ -60,6 +60,15 @@ android {
60
}
61
62
63
+configurations.all {
64
+ // The Instrumentation Test Runner uses the plugin,
65
+ // which in turn provides the Instrumentation Test Runner again -
66
+ // that's kind of deep.
67
+ // To avoid conflicts, prefer using the local classes
68
+ // and exclude the dependency from being pulled in externally.
69
+ exclude module: INSTRUMENTATION_RUNNER_ARTIFACT_ID
70
+}
71
+
72
dependencies {
73
implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION"
74
implementation "org.jetbrains.kotlin:kotlin-reflect:$KOTLIN_VERSION"
0 commit comments