diff options
author | cyBerta <cyberta@riseup.net> | 2024-07-23 22:38:56 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2024-07-23 22:38:56 +0200 |
commit | c03a2997b1794ba7cb997d8e32384c45470a7d60 (patch) | |
tree | ec60b856bbf1c94f6ae0667281caaca00b1131ec /app/build.gradle | |
parent | 9078a324b7bd5507d1151375ba82101b217b28bc (diff) |
add support for ed25519 private keys for VPN connection setup
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index f3412c3f..9a318759 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -374,15 +374,16 @@ android { } } - - - dependencies { testImplementation 'junit:junit:4.13.2' //outdated mockito-core version due to powermock dependency testImplementation 'org.mockito:mockito-core:3.6.0' testImplementation('org.powermock:powermock-api-mockito2:2.0.9') // { exclude group: 'junit' exclude group: 'org.mockito' } + + testImplementation 'org.robolectric:robolectric:4.13' + testImplementation 'org.conscrypt:conscrypt-openjdk-uber:2.5.2' + testImplementation 'org.powermock:powermock-module-junit4:2.0.9' testImplementation 'org.powermock:powermock-core:2.0.9' testImplementation 'org.powermock:powermock-module-junit4-rule:2.0.9' |