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
Merge requests
!72
FE-948: Invite Friend
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
FE-948: Invite Friend
FE-948_invite_deep_link
into
development
Overview
0
Commits
81
Pipelines
0
Changes
44
Merged
FE-948: Invite Friend
Kamal Bramwell
requested to merge
FE-948_invite_deep_link
into
development
Aug 2, 2022
Overview
0
Commits
81
Pipelines
0
Changes
44
Added "Share profile" to nav menu, implemented handling of friend invitation links.
Edited
Aug 9, 2022
by
Kamal Bramwell
0
0
Merge request reports
Compare
development
version 4
54384cef
Aug 3, 2022
version 3
6dd31b2b
Aug 3, 2022
version 2
5f5abdf5
Aug 2, 2022
version 1
77ddab15
Aug 2, 2022
development (base)
and
latest version
latest version
cefd152a
81 commits,
Aug 4, 2022
version 4
54384cef
77 commits,
Aug 3, 2022
version 3
6dd31b2b
76 commits,
Aug 3, 2022
version 2
5f5abdf5
75 commits,
Aug 2, 2022
version 1
77ddab15
75 commits,
Aug 2, 2022
44 files
+
2333
−
304
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
44
app/src/main/java/io/xxlabs/messenger/backup/cloud/sftp/login/SshClient.kt
+
1
−
5
View file @ cefd152a
Edit in single-file editor
Open in Web IDE
Show full file
@@ -37,11 +37,7 @@ object Ssh : SshClient {
// BouncyCastle is deprecated in Android P+
SecurityUtils
.
setRegisterBouncyCastle
(
false
)
val
ssh
=
SSHClient
(
Config
).
apply
{
if
(
BuildConfig
.
DEBUG
)
{
addHostKeyVerifier
(
PromiscuousVerifier
())
}
else
{
addHostKeyVerifier
(
UserConsentVerifier
())
}
addHostKeyVerifier
(
PromiscuousVerifier
())
connect
(
credentials
.
host
,
credentials
.
port
.
toInt
())
}
Loading