Skip to content

feat: add session sync callback #1292

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

Merged
merged 31 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1ebcf4a
feat(android): add session sync callback (#1281)
kholood-ea Sep 18, 2024
c1a8e5d
feat(ios): add session sync callback (#1282)
kholood-ea Sep 30, 2024
486b010
Revert "fix(ios): update network log signature"
kholood-ea Oct 2, 2024
201b490
chore(ios): update snapshot
kholood-ea Oct 2, 2024
038da9a
fix: ios network logging test after reverting
kholood-ea Oct 2, 2024
cf9db14
fix: convert sendEvent arg from writable to readable map
kholood-ea Oct 2, 2024
eaa6751
chore(android): update snapshot
kholood-ea Oct 2, 2024
efc5f6a
fix(android): refactor getSessionMetadataMap to tolerate null values
kholood-ea Oct 2, 2024
4901ebf
fix(ios): update fulfill exception wait time in test
kholood-ea Oct 2, 2024
e354e42
Merge remote-tracking branch 'origin/dev' into feat/session-sync-call…
kholood-ea Oct 2, 2024
cfcd55b
fix(android): convert session metadat map to readable map
kholood-ea Oct 4, 2024
e73f473
chore: update docs
kholood-ea Oct 4, 2024
daaedc0
fix: remove hot launch type
kholood-ea Oct 7, 2024
be32acd
fix: increase timeout expectation in test case
kholood-ea Oct 7, 2024
f4d097a
Revert "fix: increase timeout expectation in test case"
kholood-ea Oct 7, 2024
bb42692
feat(example): add features and buttons implementation (#1280)
YoussefFouadd Oct 16, 2024
2d34d8f
fix(android): add unknown launch type
kholood-ea Oct 28, 2024
3b85dcd
chore: update documentation
kholood-ea Oct 28, 2024
47dcb10
Merge branch 'refs/heads/dev' into feat/session-sync-callback
ahmedAlaaInstabug Nov 10, 2024
3b3a495
feat: upgrade to 14.0.0
ahmedAlaaInstabug Nov 10, 2024
9f2dea1
feat: upgrade to 14.0.0
ahmedAlaaInstabug Nov 10, 2024
7123d70
feat: upgrade to 14.0.0
ahmedAlaaInstabug Nov 10, 2024
18a253d
Merge branch 'refs/heads/dev' into feat/session-sync-callback
ahmedAlaaInstabug Nov 11, 2024
451f045
merge dev
ahmedAlaaInstabug Nov 11, 2024
aa8faa8
merge dev
ahmedAlaaInstabug Nov 11, 2024
72dac81
merge dev
ahmedAlaaInstabug Nov 11, 2024
6151ba1
fix: test case
ahmedAlaaInstabug Nov 12, 2024
1aa675f
chore: add changelog item
kholood-ea Nov 13, 2024
ed286eb
Update Podfile
ahmedAlaaInstabug Nov 13, 2024
f6f898d
Update Podfile
ahmedAlaaInstabug Nov 13, 2024
c0c5428
fix: test case
ahmedAlaaInstabug Nov 13, 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(android): add unknown launch type
  • Loading branch information
kholood-ea committed Oct 28, 2024
commit 2d34d8fc6bf7af474e5109262554641366f93095
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ static Map<String, Object> getAll() {
public static ArgsMap<String> launchType = new ArgsMap<String>() {{
put("cold", SessionMetadata.LaunchType.COLD);
put("warm",SessionMetadata.LaunchType.WARM );
put("unknown","unknown");
}};

// Temporary workaround to be removed in future release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public ReadableMap getSessionMetadataMap(SessionMetadata sessionMetadata){
if (launchType != null) {
params.putString("launchType",ArgsRegistry.launchTypeReversed.get(sessionMetadata.getLaunchType()) );
} else {
params.putString("launchType","unknown");
params.putString("launchType",ArgsRegistry.launchType.get("unknown"));
}

if (launchDuration != null) {
Expand Down