Skip to content

Commit 12226e8

Browse files
author
Brandon Sneed
committed
Removed pinning for Amplitude SDK; Moved to support for 5.x series.
1 parent 8592bcc commit 12226e8

File tree

4 files changed

+17
-22
lines changed

4 files changed

+17
-22
lines changed

Example/Podfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source 'https://github.com/CocoaPods/Specs.git'
2+
platform :ios, '10.0'
23

34
# Do not use_frameworks due to iOS 7 support
45
# use_frameworks!

Example/Podfile.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PODS:
2-
- Amplitude-iOS (4.8.2)
3-
- Analytics (3.7.0)
2+
- Amplitude (5.2.1)
3+
- Analytics (4.0.3)
44
- Expecta (1.0.6)
55
- OCHamcrest (7.1.2)
6-
- OCMockito (5.1.2):
6+
- OCMockito (5.1.3):
77
- OCHamcrest (~> 7.0)
8-
- Segment-Amplitude (3.0.0):
9-
- Amplitude-iOS (~> 4.8.0)
10-
- Analytics (~> 3.7.0)
8+
- Segment-Amplitude (3.0.2):
9+
- Amplitude
10+
- Analytics
1111
- Specta (1.0.7)
1212

1313
DEPENDENCIES:
@@ -18,7 +18,7 @@ DEPENDENCIES:
1818

1919
SPEC REPOS:
2020
https://github.com/CocoaPods/Specs.git:
21-
- Amplitude-iOS
21+
- Amplitude
2222
- Analytics
2323
- Expecta
2424
- OCHamcrest
@@ -30,14 +30,14 @@ EXTERNAL SOURCES:
3030
:path: "../"
3131

3232
SPEC CHECKSUMS:
33-
Amplitude-iOS: 46c8e6e65c49bb1ad1909a9add1a68e1f8562b3f
34-
Analytics: 77fd5fb102a4a5eedafa2c2b0245ceb7b7c15e45
33+
Amplitude: 9774e93d48d9f41f271a4479e06369a30ab31db1
34+
Analytics: 54b0551629871648686cb4ee1d243bf4f703f2c2
3535
Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
3636
OCHamcrest: b284c9592c28c1e4025a8542e67ea41a635d0d73
37-
OCMockito: 51a534e667194e1ecae88c5def301cc8b0ab3cc7
38-
Segment-Amplitude: 7dbbe5b412fee040baa143c010093656d2533545
37+
OCMockito: 677cbb4a18fd492b5a4fb10144dada4de5ddb877
38+
Segment-Amplitude: 4dacdc8b53bd30ee39a936f5024c7d5ed626879b
3939
Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66
4040

41-
PODFILE CHECKSUM: 1a99221d0493a9b94855666e2ff7f6148cd79203
41+
PODFILE CHECKSUM: a7bf6ef16f54033a66dc8c09524260667af4e881
4242

43-
COCOAPODS: 1.8.4
43+
COCOAPODS: 1.9.1

Example/Segment-Amplitude.xcodeproj/project.pbxproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -302,16 +302,10 @@
302302
);
303303
inputPaths = (
304304
"${PODS_ROOT}/Target Support Files/Pods-Segment-Amplitude_Example/Pods-Segment-Amplitude_Example-resources.sh",
305-
"${PODS_ROOT}/Amplitude-iOS/Amplitude/api.amplitude.com.der",
306-
"${PODS_ROOT}/Amplitude-iOS/Amplitude/ComodoCaLimitedRsaCertificationAuthority.der",
307-
"${PODS_ROOT}/Amplitude-iOS/Amplitude/ComodoRsaCA.der",
308-
"${PODS_ROOT}/Amplitude-iOS/Amplitude/ComodoRsaDomainValidationCA.der",
305+
"${PODS_ROOT}/Amplitude/Sources/Amplitude/ComodoRsaDomainValidationCA.der",
309306
);
310307
name = "[CP] Copy Pods Resources";
311308
outputPaths = (
312-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/api.amplitude.com.der",
313-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ComodoCaLimitedRsaCertificationAuthority.der",
314-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ComodoRsaCA.der",
315309
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ComodoRsaDomainValidationCA.der",
316310
);
317311
runOnlyForDeploymentPostprocessing = 0;

Segment-Amplitude.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Pod::Spec.new do |s|
1616
s.source = { :git => "https://github.com/segment-integrations/analytics-ios-integration-amplitude.git", :tag => s.version.to_s }
1717
s.social_media_url = 'https://twitter.com/segment'
1818

19-
s.platform = :ios, '8.0'
19+
s.platform = :ios, '10.0'
2020
s.requires_arc = true
2121

2222
s.source_files = 'Pod/Classes/**/*'
2323

2424
s.dependency 'Analytics'
25-
s.dependency 'Amplitude-iOS', '~> 4.8.0'
25+
s.dependency 'Amplitude'
2626
end

0 commit comments

Comments
 (0)