generated from segment-integrations/analytics-swift-destination-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Session / App Lifecycle logic (#21)
* Amplitude sdk integration * Session rewrite * Bug fixes * Block application foregrounded event. * Made disabling of integrations correct. * Fixed duplicated amp start/end session events. * Relocate sessionID set'ing. * Reset session ID after 5 mins of inactivity, even in app. * Updates * Updated privacy manifest to match amplitude. * Updated package resolution * Updated package resolution. * Updated CI info
- Loading branch information
Showing
7 changed files
with
440 additions
and
148 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
60 changes: 29 additions & 31 deletions
60
Example/BasicExample/BasicExample.xcworkspace/xcshareddata/swiftpm/Package.resolved
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 |
---|---|---|
@@ -1,34 +1,32 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "Segment", | ||
"repositoryURL": "https://github.com/segmentio/analytics-swift", | ||
"state": { | ||
"branch": null, | ||
"revision": "7eeb2abf8452153af056baae5369679589f10936", | ||
"version": "1.5.9" | ||
} | ||
}, | ||
{ | ||
"package": "JSONSafeEncoder", | ||
"repositoryURL": "https://github.com/segmentio/jsonsafeencoder-swift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "8b70dc8c01b7b041912e30e29d2b488a43f782ac", | ||
"version": "1.0.1" | ||
} | ||
}, | ||
{ | ||
"package": "Sovran", | ||
"repositoryURL": "https://github.com/segmentio/Sovran-Swift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "a342b905f6baa64499cabdf61ccc185ec476b7b2", | ||
"version": "1.1.1" | ||
} | ||
"pins" : [ | ||
{ | ||
"identity" : "analytics-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/analytics-swift", | ||
"state" : { | ||
"revision" : "7eeb2abf8452153af056baae5369679589f10936", | ||
"version" : "1.5.9" | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
}, | ||
{ | ||
"identity" : "jsonsafeencoder-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/jsonsafeencoder-swift.git", | ||
"state" : { | ||
"revision" : "8b70dc8c01b7b041912e30e29d2b488a43f782ac", | ||
"version" : "1.0.1" | ||
} | ||
}, | ||
{ | ||
"identity" : "sovran-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/Sovran-Swift.git", | ||
"state" : { | ||
"revision" : "a342b905f6baa64499cabdf61ccc185ec476b7b2", | ||
"version" : "1.1.1" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
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 |
---|---|---|
@@ -1,34 +1,32 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "Segment", | ||
"repositoryURL": "https://github.com/segmentio/analytics-swift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "7eeb2abf8452153af056baae5369679589f10936", | ||
"version": "1.5.9" | ||
} | ||
}, | ||
{ | ||
"package": "JSONSafeEncoder", | ||
"repositoryURL": "https://github.com/segmentio/jsonsafeencoder-swift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "8b70dc8c01b7b041912e30e29d2b488a43f782ac", | ||
"version": "1.0.1" | ||
} | ||
}, | ||
{ | ||
"package": "Sovran", | ||
"repositoryURL": "https://github.com/segmentio/Sovran-Swift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "a342b905f6baa64499cabdf61ccc185ec476b7b2", | ||
"version": "1.1.1" | ||
} | ||
"pins" : [ | ||
{ | ||
"identity" : "analytics-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/analytics-swift.git", | ||
"state" : { | ||
"revision" : "7eeb2abf8452153af056baae5369679589f10936", | ||
"version" : "1.5.9" | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
}, | ||
{ | ||
"identity" : "jsonsafeencoder-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/jsonsafeencoder-swift.git", | ||
"state" : { | ||
"revision" : "8b70dc8c01b7b041912e30e29d2b488a43f782ac", | ||
"version" : "1.0.1" | ||
} | ||
}, | ||
{ | ||
"identity" : "sovran-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/segmentio/Sovran-Swift.git", | ||
"state" : { | ||
"revision" : "a342b905f6baa64499cabdf61ccc185ec476b7b2", | ||
"version" : "1.1.1" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
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
Oops, something went wrong.