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
2026-02-27 10:24:15 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
be96d491707c3d3f56f5d43e59b6651c3cef5aa9
be96d491
1 parent
f533a1a8
deh app uuid and url
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
app/src/main/assets/warply.properties
warply_android_sdk/src/main/java/ly/warp/sdk/io/volley/ApiService.java
warply_android_sdk/src/main/java/ly/warp/sdk/utils/managers/WarplyManager.java
app/src/main/assets/warply.properties
View file @
be96d49
...
...
@@ -16,7 +16,7 @@ Debug=true
# Development: https://engage-stage.warp.ly
# DEH Production: https://engage-prod.dei.gr
# DEH Development: https://engage-uat.dei.gr
BaseURL
=
https://engage-
prod
.dei.gr
BaseURL
=
https://engage-
uat
.dei.gr
# For Verify Ticket request
VerifyURL
=
/partners/dei/verify
...
...
warply_android_sdk/src/main/java/ly/warp/sdk/io/volley/ApiService.java
View file @
be96d49
...
...
@@ -127,7 +127,8 @@ public interface ApiService {
@Header
(
WarpConstants
.
HEADER_UNIQUE_DEVICE_ID
)
String
deviceId
,
@Header
(
WarpConstants
.
HEADER_CHANNEL
)
String
channel
,
@Header
(
WarpConstants
.
HEADER_WEB_ID
)
String
webId
,
@Header
(
WarpConstants
.
HEADER_SIGNATURE
)
String
signature
);
@Header
(
WarpConstants
.
HEADER_SIGNATURE
)
String
signature
,
@Header
(
WarpConstants
.
HEADER_AUTHORIZATION
)
String
bearer
);
@Headers
(
"Content-Type: application/json"
)
@POST
(
"/api/mobile/v2/{appUuid}/context/"
)
...
...
warply_android_sdk/src/main/java/ly/warp/sdk/utils/managers/WarplyManager.java
View file @
be96d49
...
...
@@ -428,7 +428,7 @@ public class WarplyManager {
Map
<
String
,
Object
>
jsonParamsCouponsets
=
new
ArrayMap
<>();
Map
<
String
,
Object
>
jsonParams
=
new
ArrayMap
<>();
jsonParams
.
put
(
"action"
,
"retrieve_
multilingual
"
);
jsonParams
.
put
(
"action"
,
"retrieve_
couponsets
"
);
jsonParams
.
put
(
"active"
,
true
);
jsonParams
.
put
(
"visible"
,
true
);
jsonParams
.
put
(
"language"
,
WarplyProperty
.
getLanguage
(
Warply
.
getWarplyContext
()));
...
...
@@ -443,7 +443,8 @@ public class WarplyManager {
new
WarplyDeviceInfoCollector
(
Warply
.
getWarplyContext
()).
getUniqueDeviceId
(),
"mobile"
,
webId
,
WarpUtils
.
produceSignature
(
apiKey
+
timeStamp
)
WarpUtils
.
produceSignature
(
apiKey
+
timeStamp
),
"Bearer "
+
WarplyDBHelper
.
getInstance
(
Warply
.
getWarplyContext
()).
getAuthValue
(
"access_token"
)
);
couponsetsCall
.
enqueue
(
new
Callback
<
ResponseBody
>()
{
@Override
...
...
Please
register
or
login
to post a comment