Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Java] Implement the new module for view tracking #182

Merged
merged 46 commits into from
Feb 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
3cc180b
feat: init view module
arifBurakDemiray Dec 4, 2023
2f1f368
feat: module views
arifBurakDemiray Dec 5, 2023
7bdd387
refactor: delete unused things
arifBurakDemiray Dec 5, 2023
8a00406
refactor: delete unnecessary things for views java
arifBurakDemiray Dec 5, 2023
f3c7353
refactor: delete unnecessary things for views java
arifBurakDemiray Dec 5, 2023
c9d5de1
feat: views to the flow
arifBurakDemiray Dec 5, 2023
bb5c37f
Merge branch 'staging' into new_view_module
arifBurakDemiray Dec 7, 2023
7423108
fix: missing thingies
arifBurakDemiray Dec 7, 2023
d560fbf
Merge branch 'staging' into new_view_module
arifBurakDemiray Dec 18, 2023
3c961e3
fix: missing curly bracket
arifBurakDemiray Dec 18, 2023
c7b30eb
fix: remove _idv
arifBurakDemiray Dec 18, 2023
3ced2c6
feat: new functions
arifBurakDemiray Dec 18, 2023
ffa0932
fix: view segmentation
arifBurakDemiray Dec 19, 2023
7da3d55
fix: convert to linekd hash map
arifBurakDemiray Dec 19, 2023
3efa3bf
feat: move convenient functions to utils
arifBurakDemiray Dec 19, 2023
9120c8d
Merge pull request #192 from Countly/move_functions
arifBurakDemiray Dec 19, 2023
f120c02
fix: remove unnecesarry check
arifBurakDemiray Dec 19, 2023
428e6c6
feat: session changes
arifBurakDemiray Dec 19, 2023
8830035
fix: delete unncessary
arifBurakDemiray Dec 19, 2023
41427ab
fix: whitespace
arifBurakDemiray Dec 19, 2023
45964c6
fix: some of orders
arifBurakDemiray Dec 20, 2023
4ca30d4
feat: random val
arifBurakDemiray Dec 20, 2023
216766e
Update ModuleViews.java
arifBurakDemiray Dec 20, 2023
1913a1d
Update ModuleViews.java
arifBurakDemiray Dec 20, 2023
1090467
Update SDKCore.java
arifBurakDemiray Dec 20, 2023
a767a52
Update UtilsTests.java
arifBurakDemiray Dec 20, 2023
299b395
Merge pull request #199 from Countly/staging
arifBurakDemiray Jan 3, 2024
4de8422
fix: revert test
arifBurakDemiray Jan 3, 2024
2ba6412
fix: changes from child pr
arifBurakDemiray Jan 3, 2024
7b05172
Merge branch 'staging' into new_view_module
arifBurakDemiray Jan 4, 2024
d45cea3
feat: migrate test branch logic to main
arifBurakDemiray Jan 4, 2024
a8f684c
feat: ids
arifBurakDemiray Jan 5, 2024
1e9179c
feat: usage of ids
arifBurakDemiray Jan 5, 2024
e204b9f
feat: revert force send
arifBurakDemiray Jan 5, 2024
d02df42
Merge branch 'staging' into new_view_module
arifBurakDemiray Jan 9, 2024
7f65a1e
fix: nonull
arifBurakDemiray Jan 9, 2024
06acbc0
feat: migrate from test branch
arifBurakDemiray Jan 9, 2024
64d2e58
Merge branch 'staging' into new_view_module
arifBurakDemiray Jan 15, 2024
00066bc
Merge branch 'staging' into new_view_module
arifBurakDemiray Jan 18, 2024
3cdb82e
feat: global segmns
arifBurakDemiray Jan 23, 2024
c2d2f46
feat: add log
arifBurakDemiray Jan 23, 2024
62ca215
feat: add is empty checl
arifBurakDemiray Jan 23, 2024
44d4295
fix: pr things
arifBurakDemiray Jan 30, 2024
d2fb6da
feat: add old way call
arifBurakDemiray Jan 31, 2024
171052f
feat: test changes
arifBurakDemiray Jan 31, 2024
7cce4bc
[Java] Implement the new module for view tracking - tests (#236)
arifBurakDemiray Feb 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: view segmentation
  • Loading branch information
arifBurakDemiray committed Dec 19, 2023
commit ffa09328a5a6c522620eb336ee015d46b6cd8e14
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ void autoCloseRequiredViews(boolean closeAllViews, Map<String, Object> customVie
currentViewID = currentViewData.viewID;

Map<String, Object> viewSegmentation = createViewEventSegmentation(currentViewData, firstView, true, customViewSegmentation);
currentViewData.viewSegmentation = viewSegmentation;

if (firstView) {
L.d("[ModuleViews] Recording view as the first one in the session. [" + viewName + "]");
Expand Down