Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2024-09-10 12:45:37 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
23c6e903a3f8b932c67aa78d7349ae4fd2aad32d
23c6e903
1 parent
412e8f5e
fixed verifyTicket
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
warply_android_sdk/build.gradle
warply_android_sdk/src/main/java/ly/warp/sdk/utils/managers/WarplyManager.java
warply_android_sdk/build.gradle
View file @
23c6e90
...
...
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext
{
PUBLISH_GROUP_ID
=
'ly.warp'
PUBLISH_VERSION
=
'4.5.5.4r3
5
'
PUBLISH_VERSION
=
'4.5.5.4r3
6
'
PUBLISH_ARTIFACT_ID
=
'warply-android-sdk'
}
...
...
warply_android_sdk/src/main/java/ly/warp/sdk/utils/managers/WarplyManager.java
View file @
23c6e90
...
...
@@ -1060,8 +1060,8 @@ public class WarplyManager {
e
.
printStackTrace
();
}
if
(
jobjLoginResponse
!=
null
&&
jobjLoginResponse
.
has
(
"
status"
)
&&
jobjLoginResponse
.
optString
(
"status
"
,
"2"
).
equals
(
"1"
))
{
JSONObject
tokens
=
jobjLoginResponse
.
optJSONObject
(
"
result
"
);
if
(
jobjLoginResponse
!=
null
&&
jobjLoginResponse
.
has
(
"
result"
)
&&
jobjLoginResponse
.
optString
(
"result
"
,
"2"
).
equals
(
"1"
))
{
JSONObject
tokens
=
jobjLoginResponse
.
optJSONObject
(
"
tokens
"
);
if
(
tokens
!=
null
)
{
WarplyDBHelper
.
getInstance
(
Warply
.
getWarplyContext
()).
saveClientAccess
(
tokens
.
optString
(
"client_id"
,
""
),
...
...
Please
register
or
login
to post a comment