From 6926ff13bdbabe2b1db4bb094895ff45baa08d9e Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Thu, 15 Jul 2021 15:13:24 -0500 Subject: [PATCH] Update test library references --- sqlcipher/build.gradle | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sqlcipher/build.gradle b/sqlcipher/build.gradle index 3a8d7e7..7073b56 100644 --- a/sqlcipher/build.gradle +++ b/sqlcipher/build.gradle @@ -38,14 +38,16 @@ android { useLibrary 'android.test.base' // for android.test.AndroidTestCase useLibrary 'android.test.runner' // for android.test.MoreAsserts + } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - androidTestImplementation 'androidx.annotation:annotation:1.1.0' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test:rules:1.2.0' - testImplementation 'junit:junit:4.13' + androidTestImplementation 'androidx.annotation:annotation:1.2.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test:rules:1.4.0' + androidTestImplementation 'androidx.test:core:1.4.0' + testImplementation 'junit:junit:4.13.2' } allprojects {