From 5f22b1422d36a1dc585941b47d5d931f5ceed0c5 Mon Sep 17 00:00:00 2001 From: Matt Creaser Date: Fri, 17 Feb 2023 11:51:31 -0400 Subject: [PATCH] Fix using amplify-android in a composite build --- core/build.gradle.kts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/build.gradle.kts b/core/build.gradle.kts index f021d5fa55..b34c1260a2 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -41,9 +41,7 @@ dependencies { testImplementation(project(":aws-api-appsync")) // Used to reference Temporal types in tests. testImplementation(project(":testmodels")) - testImplementation(project(":testutils")) { - isTransitive = false - } + testImplementation(project(":testutils")) testImplementation(testDependency.junit) testImplementation(testDependency.mockito) testImplementation(testDependency.robolectric) @@ -52,9 +50,7 @@ dependencies { testImplementation(testDependency.jsonassert) testImplementation(dependency.gson) - androidTestImplementation(project(":testutils")) { - isTransitive = false - } + androidTestImplementation(project(":testutils")) androidTestImplementation(dependency.androidx.annotation) androidTestImplementation(testDependency.androidx.test.core) androidTestImplementation(testDependency.androidx.test.runner)