Skip to content

Commit 83495fa

Browse files
authored
chore: update dependencies (#17)
* chore: update appsflyer-sdk * chore:update analytics-swift
1 parent 204492c commit 83495fa

File tree

4 files changed

+54
-19
lines changed

4 files changed

+54
-19
lines changed

Example/BasicExample/BasicExample.xcodeproj/project.pbxproj

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
46EDC70727C6B8D200B870D7 /* BasicExampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EDC70627C6B8D200B870D7 /* BasicExampleTests.swift */; };
1515
46EDC71127C6B8D200B870D7 /* BasicExampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EDC71027C6B8D200B870D7 /* BasicExampleUITests.swift */; };
1616
46EDC71327C6B8D200B870D7 /* BasicExampleUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EDC71227C6B8D200B870D7 /* BasicExampleUITestsLaunchTests.swift */; };
17+
829478832BC5DC810066FC81 /* AppsFlyerLib-Dynamic in Frameworks */ = {isa = PBXBuildFile; productRef = 829478822BC5DC810066FC81 /* AppsFlyerLib-Dynamic */; };
1718
EA64AC7329D31296009F2F53 /* Segment in Frameworks */ = {isa = PBXBuildFile; productRef = EA64AC7229D31296009F2F53 /* Segment */; };
1819
EA64AC7529D3129A009F2F53 /* SegmentAppsFlyer in Frameworks */ = {isa = PBXBuildFile; productRef = EA64AC7429D3129A009F2F53 /* SegmentAppsFlyer */; };
1920
/* End PBXBuildFile section */
@@ -53,6 +54,7 @@
5354
isa = PBXFrameworksBuildPhase;
5455
buildActionMask = 2147483647;
5556
files = (
57+
829478832BC5DC810066FC81 /* AppsFlyerLib-Dynamic in Frameworks */,
5658
EA64AC7329D31296009F2F53 /* Segment in Frameworks */,
5759
EA64AC7529D3129A009F2F53 /* SegmentAppsFlyer in Frameworks */,
5860
);
@@ -158,6 +160,7 @@
158160
packageProductDependencies = (
159161
EA64AC7229D31296009F2F53 /* Segment */,
160162
EA64AC7429D3129A009F2F53 /* SegmentAppsFlyer */,
163+
829478822BC5DC810066FC81 /* AppsFlyerLib-Dynamic */,
161164
);
162165
productName = BasicExample;
163166
productReference = 46EDC6F227C6B8D100B870D7 /* BasicExample.app */;
@@ -233,6 +236,7 @@
233236
mainGroup = 46EDC6E927C6B8D100B870D7;
234237
packageReferences = (
235238
46EDC71F27C6B92C00B870D7 /* XCRemoteSwiftPackageReference "analytics-swift" */,
239+
829478812BC5DC800066FC81 /* XCRemoteSwiftPackageReference "AppsFlyerFramework-Dynamic" */,
236240
);
237241
productRefGroup = 46EDC6F327C6B8D100B870D7 /* Products */;
238242
projectDirPath = "";
@@ -608,9 +612,22 @@
608612
minimumVersion = 1.1.2;
609613
};
610614
};
615+
829478812BC5DC800066FC81 /* XCRemoteSwiftPackageReference "AppsFlyerFramework-Dynamic" */ = {
616+
isa = XCRemoteSwiftPackageReference;
617+
repositoryURL = "https://github.com/AppsFlyerSDK/AppsFlyerFramework-Dynamic";
618+
requirement = {
619+
kind = upToNextMajorVersion;
620+
minimumVersion = 6.14.0;
621+
};
622+
};
611623
/* End XCRemoteSwiftPackageReference section */
612624

613625
/* Begin XCSwiftPackageProductDependency section */
626+
829478822BC5DC810066FC81 /* AppsFlyerLib-Dynamic */ = {
627+
isa = XCSwiftPackageProductDependency;
628+
package = 829478812BC5DC800066FC81 /* XCRemoteSwiftPackageReference "AppsFlyerFramework-Dynamic" */;
629+
productName = "AppsFlyerLib-Dynamic";
630+
};
614631
EA64AC7229D31296009F2F53 /* Segment */ = {
615632
isa = XCSwiftPackageProductDependency;
616633
package = 46EDC71F27C6B92C00B870D7 /* XCRemoteSwiftPackageReference "analytics-swift" */;

Example/BasicExample/BasicExample.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ let package = Package(
2222
.package(
2323
name: "Segment",
2424
url: "https://github.com/segmentio/analytics-swift.git",
25-
from: "1.5.5"
25+
from: "1.5.9"
2626
),
2727
.package(
28-
name: "AppsFlyerLib",
29-
url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework",
30-
from: "6.13.1"
28+
name: "AppsFlyerLib-Dynamic",
29+
url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework-Dynamic",
30+
from: "6.14.0"
3131
)
3232
],
3333
targets: [
3434
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
3535
// Targets can depend on other targets in this package, and on products in packages this package depends on.
3636
.target(
3737
name: "SegmentAppsFlyer",
38-
dependencies: ["Segment", "AppsFlyerLib"]),
38+
dependencies: ["Segment", "AppsFlyerLib-Dynamic"]),
3939

4040
// TESTS ARE HANDLED VIA THE EXAMPLE APP.
4141
]

0 commit comments

Comments
 (0)