aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/room/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'integration_tests/room/build.gradle')
-rw-r--r--integration_tests/room/build.gradle7
1 files changed, 3 insertions, 4 deletions
diff --git a/integration_tests/room/build.gradle b/integration_tests/room/build.gradle
index 1798d40ba..4a12143be 100644
--- a/integration_tests/room/build.gradle
+++ b/integration_tests/room/build.gradle
@@ -22,17 +22,16 @@ android {
includeAndroidResources = true
}
}
-
}
dependencies {
// Testing dependencies
- testImplementation project(path: ':testapp')
+ testImplementation project(":testapp")
testImplementation project(":robolectric")
testImplementation libs.junit4
testImplementation libs.guava.testlib
testImplementation libs.guava.testlib
testImplementation libs.truth
- implementation 'androidx.room:room-runtime:2.6.0'
- annotationProcessor 'androidx.room:room-compiler:2.6.0'
+ implementation libs.androidx.room.runtime
+ annotationProcessor libs.androidx.room.compiler
}