summaryrefslogtreecommitdiff
path: root/main/build.gradle.kts
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2022-02-19 16:08:55 +0100
committerArne Schwabe <arne@rfc2549.org>2022-05-04 19:21:56 +0200
commitfb7a727b9d40b8fcf213528d64e6761e9268b9e1 (patch)
treed3be85209223316dae54c73318b45f2416717dec /main/build.gradle.kts
parent6d364856a35661e7dad414d38dc34c8cbd8b5985 (diff)
Implement profile encryption using KeyMaster library
Diffstat (limited to 'main/build.gradle.kts')
-rw-r--r--main/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/build.gradle.kts b/main/build.gradle.kts
index 41a69ed9..1cd491eb 100644
--- a/main/build.gradle.kts
+++ b/main/build.gradle.kts
@@ -28,6 +28,7 @@ android {
}
}
+
testOptions.unitTests.isIncludeAndroidResources = true
externalNativeBuild {
@@ -188,6 +189,8 @@ dependencies {
dependencies.add("uiImplementation", "androidx.webkit:webkit:1.4.0")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-runtime-ktx:2.4.1")
+ dependencies.add("uiImplementation","androidx.security:security-crypto:1.0.0")
+
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21")
testImplementation("junit:junit:4.13.2")