-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat user detail implementation (#30)
* Methods implemented * version updated * Update TrackierWorkRequest.kt * Update TrackierSDK/sdk-core/src/main/java/com/trackier/sdk/TrackierWorkRequest.kt * Update TrackierSDK/sdk-core/src/main/java/com/trackier/sdk/TrackierWorkRequest.kt * Update TrackierWorkRequest.kt * Update TrackierWorkRequest.kt Co-authored-by: Hemant Mann <[email protected]>
- Loading branch information
1 parent
8b4ac47
commit 763703c
Showing
8 changed files
with
43 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,8 +38,13 @@ class MainApplication : Application() { | |
val sdkConfig = TrackierSDKConfig(this, TR_DEV_KEY, "development") | ||
val apkAttributes = AttributionParams("kFyW2bEizc", subSiteID= "sub_partner_tiktok", siteId = "google") | ||
sdkConfig.setAttributionParams(apkAttributes) | ||
sdkConfig.setManualMode(true) | ||
TrackierSDK.setLocalRefTrack(true,"_") | ||
// sdkConfig.setManualMode(true) | ||
// TrackierSDK.setLocalRefTrack(true,"_") | ||
TrackierSDK.setUserId("pppppp") | ||
TrackierSDK.setUserEmail("[email protected]") | ||
val userAdditionalDetails: MutableMap<String,Any> = mutableMapOf() | ||
userAdditionalDetails.put("userMobile",9999000000) | ||
TrackierSDK.setUserAdditionalDetails(userAdditionalDetails) | ||
TrackierSDK.initialize(sdkConfig) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,8 @@ android.enableJetifier=true | |
POM_DEVELOPER_ID=trackier | ||
POM_DEVELOPER_NAME=Trackier | ||
POM_LICENCE_DIST=repo | ||
VERSION_CODE=6 | ||
VERSION_NAME=1.6.3 | ||
VERSION_CODE=7 | ||
VERSION_NAME=1.6.4 | ||
GROUP=com.trackier | ||
POM_SCM_DEV_CONNECTION=scm\:[email protected]\:trackier/android_sdk.git | ||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
TrackierSDK/sdk-core/src/main/java/com/trackier/sdk/Constants.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters