Skip to content

Commit

Permalink
Version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGHSeg committed Nov 14, 2024
1 parent a76bf46 commit 64f8656
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objectVersion = 60;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -133,6 +133,7 @@
mainGroup = 46E38358265837EA00BA2502;
packageReferences = (
46E383782658387D00BA2502 /* XCRemoteSwiftPackageReference "Sovran-Swift" */,
7BE804C72CB59AE70062B64E /* XCLocalSwiftPackageReference "../../../../analytics-swift" */,
);
productRefGroup = 46E38362265837EA00BA2502 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -373,6 +374,13 @@
};
/* End XCConfigurationList section */

/* Begin XCLocalSwiftPackageReference section */
7BE804C72CB59AE70062B64E /* XCLocalSwiftPackageReference "../../../../analytics-swift" */ = {
isa = XCLocalSwiftPackageReference;
relativePath = "../../../../analytics-swift";
};
/* End XCLocalSwiftPackageReference section */

/* Begin XCRemoteSwiftPackageReference section */
46E383782658387D00BA2502 /* XCRemoteSwiftPackageReference "Sovran-Swift" */ = {
isa = XCRemoteSwiftPackageReference;
Expand Down
6 changes: 5 additions & 1 deletion Examples/apps/BasicExample/BasicExample/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.

let configuration = Configuration(writeKey: "<WRITE KEY>")
let configuration = Configuration(writeKey: "eHitWfSPZKoXF8c6iVb6QRlIPA6P9X8G")
.trackApplicationLifecycleEvents(true)
.flushInterval(10)
.flushAt(2)

Telemetry.shared.flushTimer = 5 * 1000
Telemetry.shared.enable = true
// Telemetry.shared.sendErrorLogData = true
// Telemetry.shared.host = "webhook.site/8d339731-c5a7-45b5-9b82-d545b6e48e6c"
analytics = Analytics(configuration: configuration)

return true
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.

let configuration = Configuration(writeKey: "WRITE_KEY")
let configuration = Configuration(writeKey: "EioRQCqLHUECnoSseEguI8GnxOlZTOyX")
.trackApplicationLifecycleEvents(true)
.flushInterval(1)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
"scale" : "3x",
"size" : "29x29"
},
{
"idiom" : "watch",
"role" : "notificationCenter",
"scale" : "2x",
"size" : "33x33",
"subtype" : "45mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
Expand All @@ -40,13 +47,34 @@
"size" : "44x44",
"subtype" : "40mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "46x46",
"subtype" : "41mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "50x50",
"subtype" : "44mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "51x51",
"subtype" : "45mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "54x54",
"subtype" : "49mm"
},
{
"idiom" : "watch",
"role" : "quickLook",
Expand All @@ -68,6 +96,20 @@
"size" : "108x108",
"subtype" : "44mm"
},
{
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "117x117",
"subtype" : "45mm"
},
{
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "129x129",
"subtype" : "49mm"
},
{
"idiom" : "watch-marketing",
"scale" : "1x",
Expand Down
2 changes: 1 addition & 1 deletion Sources/Segment/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
// Use release.sh's automation.

// BREAKING.FEATURE.FIX
internal let __segment_version = "1.6.2"
internal let __segment_version = "1.7.0"

0 comments on commit 64f8656

Please sign in to comment.