Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xx Messenger Android
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
android
xx Messenger Android
Commits
781d07d2
Commit
781d07d2
authored
Sep 28, 2022
by
Kamal Bramwell
Browse files
Options
Downloads
Patches
Plain Diff
Added crypto dependency for encryptedsharedprefs
parent
f922d858
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
buildSrc/src/main/java/Dependencies.kt
+1
-0
1 addition, 0 deletions
buildSrc/src/main/java/Dependencies.kt
core/preferences/build.gradle.kts
+1
-0
1 addition, 0 deletions
core/preferences/build.gradle.kts
depconstraints/build.gradle.kts
+2
-0
2 additions, 0 deletions
depconstraints/build.gradle.kts
with
4 additions
and
0 deletions
buildSrc/src/main/java/Dependencies.kt
+
1
−
0
View file @
781d07d2
...
...
@@ -36,6 +36,7 @@ object Libs {
const
val
PHONE_NUMBER
=
"com.googlecode.libphonenumber:libphonenumber"
const
val
GSON
=
"com.google.code.gson:gson"
const
val
PROTOBUF
=
"com.google.protobuf:protobuf-javalite"
const
val
CRYPTO
=
"androidx.security:security-crypto"
}
object
Media
{
...
...
This diff is collapsed.
Click to expand it.
core/preferences/build.gradle.kts
+
1
−
0
View file @
781d07d2
...
...
@@ -45,6 +45,7 @@ dependencies {
implementation
(
Libs
.
Core
.
CORE_KTX
)
implementation
(
Libs
.
Data
.
PREFERENCE
)
implementation
(
Libs
.
Data
.
CRYPTO
)
implementation
(
Libs
.
DI
.
HILT
)
kapt
(
Libs
.
DI
.
HILT_KAPT
)
...
...
This diff is collapsed.
Click to expand it.
depconstraints/build.gradle.kts
+
2
−
0
View file @
781d07d2
...
...
@@ -9,6 +9,7 @@ val constraintLayout = "2.1.4"
val
core
=
"1.9.0"
val
coreTest
=
"1.4.0"
val
coroutines
=
"1.6.1"
val
crypto
=
"1.1.0-alpha03"
val
extJunit
=
"1.1.3"
val
firebase
=
"27.0.0"
val
gson
=
"2.8.9"
...
...
@@ -39,6 +40,7 @@ dependencies {
api
(
"${Libs.Data.PHONE_NUMBER}:$phoneNumber"
)
api
(
"${Libs.Data.GSON}:$gson"
)
api
(
"${Libs.Data.PROTOBUF}:$protobuf"
)
api
(
"${Libs.Data.CRYPTO}:$crypto"
)
api
(
"${Libs.Media.GLIDE}:$glide"
)
api
(
Libs
.
Logging
.
CRASHLYTICS
)
api
(
"${Libs.Logging.FIREBASE_BOM}:$firebase"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment