From 3006833a3aae96206535de06bba1980371c5389d Mon Sep 17 00:00:00 2001 From: Hao Liu <57638692+haoliu-amp@users.noreply.github.com> Date: Wed, 30 Sep 2020 22:57:44 -0700 Subject: [PATCH] Fix publish issue for cocoapods (#287) --- Amplitude-iOS.podspec | 20 - Amplitude.podspec | 26 +- Amplitude.xcodeproj/project.pbxproj | 606 +++++++++--------- Package.swift | 14 +- Sources/Amplitude/AMPBubbleView.m | 6 +- Sources/Amplitude/AMPEventExplorer.m | 6 +- .../Amplitude/Assets.xcassets/Contents.json | 6 - .../amp_banner.imageset/Contents.json | 23 - .../amp_logo.imageset/Contents.json | 23 - .../blue_x.imageset/Contents.json | 23 - .../{ => Resources}/AMPBubbleView.xib | 10 +- .../{ => Resources}/AMPInfoViewController.xib | 32 +- .../ComodoRsaDomainValidationCA.der | Bin .../blue_x.imageset => Resources}/cancel.png | Bin .../cancel@2x.png | Bin .../cancel@3x.png | Bin .../logo-banner.png | Bin .../logo-banner@2x.png | Bin .../logo-banner@3x.png | Bin .../logo-button.png | Bin .../logo-button@2x.png | Bin .../logo-button@3x.png | Bin 22 files changed, 350 insertions(+), 445 deletions(-) delete mode 100644 Amplitude-iOS.podspec delete mode 100644 Sources/Amplitude/Assets.xcassets/Contents.json delete mode 100644 Sources/Amplitude/Assets.xcassets/amp_banner.imageset/Contents.json delete mode 100644 Sources/Amplitude/Assets.xcassets/amp_logo.imageset/Contents.json delete mode 100644 Sources/Amplitude/Assets.xcassets/blue_x.imageset/Contents.json rename Sources/Amplitude/{ => Resources}/AMPBubbleView.xib (85%) rename Sources/Amplitude/{ => Resources}/AMPInfoViewController.xib (91%) rename Sources/Amplitude/{ => Resources}/ComodoRsaDomainValidationCA.der (100%) rename Sources/Amplitude/{Assets.xcassets/blue_x.imageset => Resources}/cancel.png (100%) rename Sources/Amplitude/{Assets.xcassets/blue_x.imageset => Resources}/cancel@2x.png (100%) rename Sources/Amplitude/{Assets.xcassets/blue_x.imageset => Resources}/cancel@3x.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_banner.imageset => Resources}/logo-banner.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_banner.imageset => Resources}/logo-banner@2x.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_banner.imageset => Resources}/logo-banner@3x.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_logo.imageset => Resources}/logo-button.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_logo.imageset => Resources}/logo-button@2x.png (100%) rename Sources/Amplitude/{Assets.xcassets/amp_logo.imageset => Resources}/logo-button@3x.png (100%) diff --git a/Amplitude-iOS.podspec b/Amplitude-iOS.podspec deleted file mode 100644 index 884f15a2..00000000 --- a/Amplitude-iOS.podspec +++ /dev/null @@ -1,20 +0,0 @@ -# PLEASE READ! -# This podspec is not maintained anymore since we add macOS support. The name of this pod won't make sense anymore. -# It's been renamed to `Amplitude`. Please use `Amplitude.podspec` in the future. -# v4.10.0, 3/11/2020 - -Pod::Spec.new do |s| - s.name = "Amplitude-iOS" - s.version = "4.10.0" - s.summary = "Amplitude mobile analytics iOS SDK." - s.homepage = "https://amplitude.com" - s.license = { :type => "MIT" } - s.author = { "Amplitude" => "dev@amplitude.com" } - s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v#{s.version}" } - s.ios.deployment_target = '10.0' - s.tvos.deployment_target = '9.0' - s.source_files = 'Sources/Amplitude/*.{h,m}', 'Sources/Amplitude/SSLCertificatePinning/*.{h,m}' - s.resources = 'Sources/Amplitude/*.der' - s.requires_arc = true - s.library = 'sqlite3.0' -end diff --git a/Amplitude.podspec b/Amplitude.podspec index d44ab8e5..25678b1f 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -6,12 +6,28 @@ Pod::Spec.new do |s| s.license = { :type => "MIT" } s.author = { "Amplitude" => "dev@amplitude.com" } s.source = { :git => "https://github.com/amplitude/Amplitude-iOS.git", :tag => "v#{s.version}" } + s.requires_arc = true + s.library = 'sqlite3.0' + s.ios.deployment_target = '10.0' + s.ios.source_files = 'Sources/Amplitude/*.{h,m}' + s.ios.resources = 'Sources/Amplitude/**/*.{der,xib,png}' + s.tvos.deployment_target = '9.0' + s.tvos.source_files = 'Sources/Amplitude/*.{h,m}' + s.tvos.resources = 'Sources/Amplitude/**/*.{der}' + s.tvos.exclude_files = [ + 'Sources/Amplitude/AMPBubbleView.{h,m}', + 'Sources/Amplitude/AMPEventExplorer.{h,m}', + 'Sources/Amplitude/AMPInfoViewController.{h,m}' + ] + s.osx.deployment_target = '10.10' - s.source_files = 'Sources/Amplitude/*.{h,m}', 'Sources/Amplitude/SSLCertificatePinning/*.{h,m}' - s.resources = 'Sources/Amplitude/*.der' - s.requires_arc = true - s.library = 'sqlite3.0' - s.ios.resource_bundles = {'Amplitude' => ['Sources/Amplitude/*.xcassets', 'Sources/Amplitude/*.xib']} + s.osx.source_files = 'Sources/Amplitude/*.{h,m}' + s.osx.resources = 'Sources/Amplitude/**/*.{der}' + s.osx.exclude_files = [ + 'Sources/Amplitude/AMPBubbleView.{h,m}', + 'Sources/Amplitude/AMPEventExplorer.{h,m}', + 'Sources/Amplitude/AMPInfoViewController.{h,m}' + ] end diff --git a/Amplitude.xcodeproj/project.pbxproj b/Amplitude.xcodeproj/project.pbxproj index be2c2a1a..2e776a78 100644 --- a/Amplitude.xcodeproj/project.pbxproj +++ b/Amplitude.xcodeproj/project.pbxproj @@ -7,104 +7,108 @@ objects = { /* Begin PBXBuildFile section */ - 120A6DD1241F571C0007C375 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 120A6DD0241F571C0007C375 /* AmplitudePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 120A6DD2241F571C0007C375 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 120A6DD0241F571C0007C375 /* AmplitudePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 120A6DD3241F571C0007C375 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 120A6DD0241F571C0007C375 /* AmplitudePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1213D89B24176E4700300E98 /* AmplitudeFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = 1213D89824176E4700300E98 /* AmplitudeFramework.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1213D89C24176E4700300E98 /* AmplitudeFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = 1213D89824176E4700300E98 /* AmplitudeFramework.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1213D89D24176E4700300E98 /* AmplitudeFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = 1213D89824176E4700300E98 /* AmplitudeFramework.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12470D1224DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12470D1024DB2AB700E2B9A2 /* AMPConfigManager.h */; }; - 12470D1324DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12470D1024DB2AB700E2B9A2 /* AMPConfigManager.h */; }; - 12470D1424DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12470D1024DB2AB700E2B9A2 /* AMPConfigManager.h */; }; - 12470D1524DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12470D1124DB2AB700E2B9A2 /* AMPConfigManager.m */; }; - 12470D1624DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12470D1124DB2AB700E2B9A2 /* AMPConfigManager.m */; }; - 12470D1724DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12470D1124DB2AB700E2B9A2 /* AMPConfigManager.m */; }; - 1277132D24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132724A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.m */; }; - 1277132E24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132724A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.m */; }; - 1277132F24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132724A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.m */; }; - 1277133024A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132824A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133124A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132824A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133224A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132824A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133324A2711F003B5D8F /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132924A2711F003B5D8F /* ISPCertificatePinning.m */; }; - 1277133424A2711F003B5D8F /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132924A2711F003B5D8F /* ISPCertificatePinning.m */; }; - 1277133524A2711F003B5D8F /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132924A2711F003B5D8F /* ISPCertificatePinning.m */; }; - 1277133624A2711F003B5D8F /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132A24A2711F003B5D8F /* ISPCertificatePinning.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133724A2711F003B5D8F /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132A24A2711F003B5D8F /* ISPCertificatePinning.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133824A2711F003B5D8F /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132A24A2711F003B5D8F /* ISPCertificatePinning.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133924A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133A24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1277132B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1277133C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m */; }; - 1277133D24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m */; }; - 1277133E24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1277132C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m */; }; - 12C7E0B924FF40DC00B46FE5 /* AMPEventExplorer.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C7E0B724FF40DC00B46FE5 /* AMPEventExplorer.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C7E0BB24FF40DC00B46FE5 /* AMPEventExplorer.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C7E0B824FF40DC00B46FE5 /* AMPEventExplorer.m */; }; + 1279F8F125244E8D003DCE07 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C525244D78003DCE07 /* AMPConfigManager.m */; }; + 1279F8F225244E8D003DCE07 /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C225244D78003DCE07 /* AMPDeviceInfo.h */; }; + 1279F8F325244E8D003DCE07 /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C125244D78003DCE07 /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F8F425244E8D003DCE07 /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D925244D78003DCE07 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F8F525244E8D003DCE07 /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E825244D78003DCE07 /* AMPURLSession.h */; }; + 1279F8F625244E8D003DCE07 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D825244D78003DCE07 /* AmplitudePrivate.h */; }; + 1279F8F725244E8D003DCE07 /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C625244D78003DCE07 /* AMPConstants.h */; }; + 1279F8F825244E8D003DCE07 /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E725244D78003DCE07 /* AMPUtils.h */; }; + 1279F8F925244E8D003DCE07 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E525244D78003DCE07 /* AMPConfigManager.h */; }; + 1279F8FA25244E8D003DCE07 /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D325244D78003DCE07 /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F8FB25244E8D003DCE07 /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E925244D78003DCE07 /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F8FC25244E8D003DCE07 /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C425244D78003DCE07 /* AMPUtils.m */; }; + 1279F8FD25244E8D003DCE07 /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D625244D78003DCE07 /* AMPIdentify.m */; }; + 1279F8FE25244E8D003DCE07 /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C725244D78003DCE07 /* AMPRevenue.m */; }; + 1279F8FF25244E8D003DCE07 /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D025244D78003DCE07 /* AMPTrackingOptions.m */; }; + 1279F90025244E8D003DCE07 /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C025244D78003DCE07 /* AMPURLConnection.h */; }; + 1279F90125244E8D003DCE07 /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D125244D78003DCE07 /* AMPURLSession.m */; }; + 1279F90225244E8D003DCE07 /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C325244D78003DCE07 /* AMPDatabaseHelper.h */; }; + 1279F90325244E8D003DCE07 /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D725244D78003DCE07 /* AMPURLConnection.m */; }; + 1279F90425244E8D003DCE07 /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8EA25244D78003DCE07 /* Amplitude.m */; }; + 1279F90525244E8D003DCE07 /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8DA25244D78003DCE07 /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F90625244E8D003DCE07 /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8E625244D78003DCE07 /* AMPConstants.m */; }; + 1279F90725244E8D003DCE07 /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D525244D78003DCE07 /* AMPDeviceInfo.m */; }; + 1279F90825244E8D003DCE07 /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D425244D78003DCE07 /* AMPDatabaseHelper.m */; }; + 1279F90F25244E8E003DCE07 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C525244D78003DCE07 /* AMPConfigManager.m */; }; + 1279F91025244E8E003DCE07 /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C225244D78003DCE07 /* AMPDeviceInfo.h */; }; + 1279F91125244E8E003DCE07 /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C125244D78003DCE07 /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F91225244E8E003DCE07 /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D925244D78003DCE07 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F91325244E8E003DCE07 /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E825244D78003DCE07 /* AMPURLSession.h */; }; + 1279F91425244E8E003DCE07 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D825244D78003DCE07 /* AmplitudePrivate.h */; }; + 1279F91525244E8E003DCE07 /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C625244D78003DCE07 /* AMPConstants.h */; }; + 1279F91625244E8E003DCE07 /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E725244D78003DCE07 /* AMPUtils.h */; }; + 1279F91725244E8E003DCE07 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E525244D78003DCE07 /* AMPConfigManager.h */; }; + 1279F91825244E8E003DCE07 /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D325244D78003DCE07 /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F91925244E8E003DCE07 /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E925244D78003DCE07 /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F91A25244E8E003DCE07 /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C425244D78003DCE07 /* AMPUtils.m */; }; + 1279F91B25244E8E003DCE07 /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D625244D78003DCE07 /* AMPIdentify.m */; }; + 1279F91C25244E8E003DCE07 /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C725244D78003DCE07 /* AMPRevenue.m */; }; + 1279F91D25244E8E003DCE07 /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D025244D78003DCE07 /* AMPTrackingOptions.m */; }; + 1279F91E25244E8E003DCE07 /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C025244D78003DCE07 /* AMPURLConnection.h */; }; + 1279F91F25244E8E003DCE07 /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D125244D78003DCE07 /* AMPURLSession.m */; }; + 1279F92025244E8E003DCE07 /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C325244D78003DCE07 /* AMPDatabaseHelper.h */; }; + 1279F92125244E8E003DCE07 /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D725244D78003DCE07 /* AMPURLConnection.m */; }; + 1279F92225244E8E003DCE07 /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8EA25244D78003DCE07 /* Amplitude.m */; }; + 1279F92325244E8E003DCE07 /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8DA25244D78003DCE07 /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F92425244E8E003DCE07 /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8E625244D78003DCE07 /* AMPConstants.m */; }; + 1279F92525244E8E003DCE07 /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D525244D78003DCE07 /* AMPDeviceInfo.m */; }; + 1279F92625244E8E003DCE07 /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D425244D78003DCE07 /* AMPDatabaseHelper.m */; }; + 1279F92D25244E8F003DCE07 /* AMPConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C525244D78003DCE07 /* AMPConfigManager.m */; }; + 1279F92E25244E8F003DCE07 /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C225244D78003DCE07 /* AMPDeviceInfo.h */; }; + 1279F92F25244E8F003DCE07 /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C125244D78003DCE07 /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F93025244E8F003DCE07 /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D925244D78003DCE07 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F93125244E8F003DCE07 /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E825244D78003DCE07 /* AMPURLSession.h */; }; + 1279F93225244E8F003DCE07 /* AmplitudePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D825244D78003DCE07 /* AmplitudePrivate.h */; }; + 1279F93325244E8F003DCE07 /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C625244D78003DCE07 /* AMPConstants.h */; }; + 1279F93425244E8F003DCE07 /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E725244D78003DCE07 /* AMPUtils.h */; }; + 1279F93525244E8F003DCE07 /* AMPConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E525244D78003DCE07 /* AMPConfigManager.h */; }; + 1279F93625244E8F003DCE07 /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8D325244D78003DCE07 /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F93725244E8F003DCE07 /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8E925244D78003DCE07 /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F93825244E8F003DCE07 /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C425244D78003DCE07 /* AMPUtils.m */; }; + 1279F93925244E8F003DCE07 /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D625244D78003DCE07 /* AMPIdentify.m */; }; + 1279F93A25244E8F003DCE07 /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8C725244D78003DCE07 /* AMPRevenue.m */; }; + 1279F93B25244E8F003DCE07 /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D025244D78003DCE07 /* AMPTrackingOptions.m */; }; + 1279F93C25244E8F003DCE07 /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C025244D78003DCE07 /* AMPURLConnection.h */; }; + 1279F93D25244E8F003DCE07 /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D125244D78003DCE07 /* AMPURLSession.m */; }; + 1279F93E25244E8F003DCE07 /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8C325244D78003DCE07 /* AMPDatabaseHelper.h */; }; + 1279F93F25244E8F003DCE07 /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D725244D78003DCE07 /* AMPURLConnection.m */; }; + 1279F94025244E8F003DCE07 /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8EA25244D78003DCE07 /* Amplitude.m */; }; + 1279F94125244E8F003DCE07 /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279F8DA25244D78003DCE07 /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1279F94225244E8F003DCE07 /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8E625244D78003DCE07 /* AMPConstants.m */; }; + 1279F94325244E8F003DCE07 /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D525244D78003DCE07 /* AMPDeviceInfo.m */; }; + 1279F94425244E8F003DCE07 /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279F8D425244D78003DCE07 /* AMPDatabaseHelper.m */; }; + 1279FA6E2525949D003DCE07 /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA682525949D003DCE07 /* ISPCertificatePinning.m */; }; + 1279FA6F2525949D003DCE07 /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA682525949D003DCE07 /* ISPCertificatePinning.m */; }; + 1279FA702525949D003DCE07 /* ISPCertificatePinning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA682525949D003DCE07 /* ISPCertificatePinning.m */; }; + 1279FA712525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA692525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m */; }; + 1279FA722525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA692525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m */; }; + 1279FA732525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA692525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m */; }; + 1279FA742525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6A2525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h */; }; + 1279FA752525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6A2525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h */; }; + 1279FA762525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6A2525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h */; }; + 1279FA772525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA6B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m */; }; + 1279FA782525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA6B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m */; }; + 1279FA792525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA6B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m */; }; + 1279FA7A2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h */; }; + 1279FA7B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h */; }; + 1279FA7C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h */; }; + 1279FA7D2525949D003DCE07 /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6D2525949D003DCE07 /* ISPCertificatePinning.h */; }; + 1279FA7E2525949D003DCE07 /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6D2525949D003DCE07 /* ISPCertificatePinning.h */; }; + 1279FA7F2525949D003DCE07 /* ISPCertificatePinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA6D2525949D003DCE07 /* ISPCertificatePinning.h */; }; + 1279FA86252594C1003DCE07 /* AMPEventExplorer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA80252594C1003DCE07 /* AMPEventExplorer.h */; }; + 1279FA87252594C1003DCE07 /* AMPInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA81252594C1003DCE07 /* AMPInfoViewController.m */; }; + 1279FA88252594C1003DCE07 /* AMPEventExplorer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA82252594C1003DCE07 /* AMPEventExplorer.m */; }; + 1279FA89252594C1003DCE07 /* AMPBubbleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA83252594C1003DCE07 /* AMPBubbleView.h */; }; + 1279FA8A252594C1003DCE07 /* AMPBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1279FA84252594C1003DCE07 /* AMPBubbleView.m */; }; + 1279FA8B252594C1003DCE07 /* AMPInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279FA85252594C1003DCE07 /* AMPInfoViewController.h */; }; 12C972B824105B2C00E9CDDB /* Amplitude.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12C972AF24105B2C00E9CDDB /* Amplitude.framework */; }; 12C972D424105C3600E9CDDB /* Amplitude.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12C972CB24105C3600E9CDDB /* Amplitude.framework */; }; 12C972F024105C6500E9CDDB /* Amplitude.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12C972E724105C6500E9CDDB /* Amplitude.framework */; }; - 12C973352412416B00E9CDDB /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E21A48E93F00887CCD /* AMPConstants.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973362412416C00E9CDDB /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E21A48E93F00887CCD /* AMPConstants.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973372412416D00E9CDDB /* AMPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E21A48E93F00887CCD /* AMPConstants.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C97338241241BA00E9CDDB /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC708591AD4B28300949778 /* AMPConstants.m */; }; - 12C97339241241BB00E9CDDB /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC708591AD4B28300949778 /* AMPConstants.m */; }; - 12C97350241241CD00E9CDDB /* AMPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC708591AD4B28300949778 /* AMPConstants.m */; }; - 12C97351241241CD00E9CDDB /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92721C2376680043178E /* AMPDatabaseHelper.m */; }; - 12C97352241241CD00E9CDDB /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E41A48E93F00887CCD /* AMPDeviceInfo.m */; }; - 12C97353241241CD00E9CDDB /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92741C2376680043178E /* AMPIdentify.m */; }; - 12C97354241241CD00E9CDDB /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E71A48E93F00887CCD /* Amplitude.m */; }; - 12C97356241241CD00E9CDDB /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 60227C0A1CC5AB8A007C117B /* AMPRevenue.m */; }; - 12C97357241241CD00E9CDDB /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FD305A210264FA00267B2A /* AMPTrackingOptions.m */; }; - 12C97358241241CD00E9CDDB /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D40E17A1AB3BF7F0095C7C6 /* AMPURLConnection.m */; }; - 12C97359241241CD00E9CDDB /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AFE7311F6B636F00DF9A88 /* AMPURLSession.m */; }; - 12C9735A241241CD00E9CDDB /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92761C2376680043178E /* AMPUtils.m */; }; - 12C9735B241241CE00E9CDDB /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92721C2376680043178E /* AMPDatabaseHelper.m */; }; - 12C9735C241241CE00E9CDDB /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E41A48E93F00887CCD /* AMPDeviceInfo.m */; }; - 12C9735D241241CE00E9CDDB /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92741C2376680043178E /* AMPIdentify.m */; }; - 12C9735E241241CE00E9CDDB /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E71A48E93F00887CCD /* Amplitude.m */; }; - 12C97360241241CE00E9CDDB /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 60227C0A1CC5AB8A007C117B /* AMPRevenue.m */; }; - 12C97361241241CE00E9CDDB /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FD305A210264FA00267B2A /* AMPTrackingOptions.m */; }; - 12C97362241241CE00E9CDDB /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D40E17A1AB3BF7F0095C7C6 /* AMPURLConnection.m */; }; - 12C97363241241CE00E9CDDB /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AFE7311F6B636F00DF9A88 /* AMPURLSession.m */; }; - 12C97364241241CE00E9CDDB /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92761C2376680043178E /* AMPUtils.m */; }; - 12C97365241241CF00E9CDDB /* AMPDatabaseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92721C2376680043178E /* AMPDatabaseHelper.m */; }; - 12C97366241241CF00E9CDDB /* AMPDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E41A48E93F00887CCD /* AMPDeviceInfo.m */; }; - 12C97367241241CF00E9CDDB /* AMPIdentify.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92741C2376680043178E /* AMPIdentify.m */; }; - 12C97368241241CF00E9CDDB /* Amplitude.m in Sources */ = {isa = PBXBuildFile; fileRef = E96785E71A48E93F00887CCD /* Amplitude.m */; }; - 12C9736A241241CF00E9CDDB /* AMPRevenue.m in Sources */ = {isa = PBXBuildFile; fileRef = 60227C0A1CC5AB8A007C117B /* AMPRevenue.m */; }; - 12C9736B241241CF00E9CDDB /* AMPTrackingOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FD305A210264FA00267B2A /* AMPTrackingOptions.m */; }; - 12C9736C241241CF00E9CDDB /* AMPURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D40E17A1AB3BF7F0095C7C6 /* AMPURLConnection.m */; }; - 12C9736D241241CF00E9CDDB /* AMPURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AFE7311F6B636F00DF9A88 /* AMPURLSession.m */; }; - 12C9736E241241CF00E9CDDB /* AMPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BA92761C2376680043178E /* AMPUtils.m */; }; - 12C973782412420C00E9CDDB /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E31A48E93F00887CCD /* AMPDeviceInfo.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973792412420D00E9CDDB /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E31A48E93F00887CCD /* AMPDeviceInfo.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9737A2412420F00E9CDDB /* AMPDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E31A48E93F00887CCD /* AMPDeviceInfo.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9737E2412422600E9CDDB /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60227C091CC5AB8A007C117B /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C9737F2412422700E9CDDB /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60227C091CC5AB8A007C117B /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C973802412422800E9CDDB /* AMPRevenue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60227C091CC5AB8A007C117B /* AMPRevenue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C973812412423700E9CDDB /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D40E1791AB3BF7F0095C7C6 /* AMPURLConnection.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973822412423800E9CDDB /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D40E1791AB3BF7F0095C7C6 /* AMPURLConnection.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973832412423900E9CDDB /* AMPURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D40E1791AB3BF7F0095C7C6 /* AMPURLConnection.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973842412424100E9CDDB /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFE7301F6B636B00DF9A88 /* AMPURLSession.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973852412424200E9CDDB /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFE7301F6B636B00DF9A88 /* AMPURLSession.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973862412424300E9CDDB /* AMPURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFE7301F6B636B00DF9A88 /* AMPURLSession.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973872412424F00E9CDDB /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92751C2376680043178E /* AMPUtils.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973882412424F00E9CDDB /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92751C2376680043178E /* AMPUtils.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C973892412425000E9CDDB /* AMPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92751C2376680043178E /* AMPUtils.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9738B2412428200E9CDDB /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92711C2376680043178E /* AMPDatabaseHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9738C2412428300E9CDDB /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92711C2376680043178E /* AMPDatabaseHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9738D2412428300E9CDDB /* AMPDatabaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92711C2376680043178E /* AMPDatabaseHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12C9738E2412429200E9CDDB /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E61A48E93F00887CCD /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C9738F2412429400E9CDDB /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E61A48E93F00887CCD /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C973902412429400E9CDDB /* Amplitude.h in Headers */ = {isa = PBXBuildFile; fileRef = E96785E61A48E93F00887CCD /* Amplitude.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97391241242A100E9CDDB /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E8A613238740AF00921FC7 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97392241242A200E9CDDB /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E8A613238740AF00921FC7 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97393241242A300E9CDDB /* Amplitude+SSLPinning.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E8A613238740AF00921FC7 /* Amplitude+SSLPinning.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97394241242B400E9CDDB /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92731C2376680043178E /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97395241242B500E9CDDB /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92731C2376680043178E /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97396241242B600E9CDDB /* AMPIdentify.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BA92731C2376680043178E /* AMPIdentify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97397241242CC00E9CDDB /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FD3058210264C000267B2A /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97398241242CD00E9CDDB /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FD3058210264C000267B2A /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12C97399241242CE00E9CDDB /* AMPTrackingOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FD3058210264C000267B2A /* AMPTrackingOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12C973A6241244A400E9CDDB /* DeviceInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9731124108DFF00E9CDDB /* DeviceInfoTests.m */; }; 12C973A7241244A600E9CDDB /* DeviceInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9731124108DFF00E9CDDB /* DeviceInfoTests.m */; }; 12C973A8241244A700E9CDDB /* DeviceInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9731124108DFF00E9CDDB /* DeviceInfoTests.m */; }; @@ -138,13 +142,6 @@ 12C973C8241244F800E9CDDB /* AmplitudeTVOSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9732024108DFF00E9CDDB /* AmplitudeTVOSTests.m */; }; 12C973CF24131EB100E9CDDB /* SSLPinningTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9731024108DFF00E9CDDB /* SSLPinningTests.m */; }; 12DF9471251DAC27008B2C25 /* AmplitudeiOSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9731A24108DFF00E9CDDB /* AmplitudeiOSTests.m */; }; - 12ED844D24FCD5BA004A2D01 /* AMPBubbleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ED844B24FCD5BA004A2D01 /* AMPBubbleView.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12ED845024FCD5BA004A2D01 /* AMPBubbleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12ED844C24FCD5BA004A2D01 /* AMPBubbleView.m */; }; - 12ED845C24FCD94A004A2D01 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 12ED845B24FCD94A004A2D01 /* Assets.xcassets */; }; - 12ED845F24FCDFB3004A2D01 /* AMPBubbleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 12ED845E24FCDFB3004A2D01 /* AMPBubbleView.xib */; }; - 12ED847F24FE13C6004A2D01 /* AMPInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ED847C24FE13C6004A2D01 /* AMPInfoViewController.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 12ED848124FE13C6004A2D01 /* AMPInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 12ED847D24FE13C6004A2D01 /* AMPInfoViewController.m */; }; - 12ED848324FE13C6004A2D01 /* AMPInfoViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 12ED847E24FE13C6004A2D01 /* AMPInfoViewController.xib */; }; 2FF530703C32718DA15D4013 /* libPods-shared-Amplitude_macOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F8C962279011799CE1B72F5 /* libPods-shared-Amplitude_macOSTests.a */; }; 5864D44A49419C011B0B2E05 /* libPods-shared-Amplitude_iOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 196EC1D108A62A030F1B58B1 /* libPods-shared-Amplitude_iOSTests.a */; }; 60CA723497169C7F79BE0BF9 /* libPods-shared-Amplitude_tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA18D859F9EB6DDF9522DF6E /* libPods-shared-Amplitude_tvOSTests.a */; }; @@ -179,24 +176,50 @@ /* Begin PBXFileReference section */ 0B6192D1C908F4E6D376162D /* Pods-shared-Amplitude_tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_tvOSTests/Pods-shared-Amplitude_tvOSTests.debug.xcconfig"; sourceTree = ""; }; - 120A6DD0241F571C0007C375 /* AmplitudePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AmplitudePrivate.h; sourceTree = ""; }; 1213D80B2416F3EA00300E98 /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = ""; }; 1213D89824176E4700300E98 /* AmplitudeFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AmplitudeFramework.h; sourceTree = ""; }; 1213D89924176E4700300E98 /* Amplitude.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = Amplitude.modulemap; sourceTree = ""; }; 1213D89A24176E4700300E98 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 12470D1024DB2AB700E2B9A2 /* AMPConfigManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPConfigManager.h; sourceTree = ""; }; - 12470D1124DB2AB700E2B9A2 /* AMPConfigManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPConfigManager.m; sourceTree = ""; }; 124CDD7923EFD2C5004C7B27 /* Podfile.lock */ = {isa = PBXFileReference; lastKnownFileType = text; path = Podfile.lock; sourceTree = ""; }; 124CDD7A23EFD2C5004C7B27 /* Podfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Podfile; sourceTree = ""; }; 124CDD7B23EFD2D4004C7B27 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 1277132724A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPPinnedNSURLSessionDelegate.m; sourceTree = ""; }; - 1277132824A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPPinnedNSURLSessionDelegate.h; sourceTree = ""; }; - 1277132924A2711F003B5D8F /* ISPCertificatePinning.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPCertificatePinning.m; sourceTree = ""; }; - 1277132A24A2711F003B5D8F /* ISPCertificatePinning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPCertificatePinning.h; sourceTree = ""; }; - 1277132B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPPinnedNSURLConnectionDelegate.h; sourceTree = ""; }; - 1277132C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPPinnedNSURLConnectionDelegate.m; sourceTree = ""; }; - 12C7E0B724FF40DC00B46FE5 /* AMPEventExplorer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPEventExplorer.h; sourceTree = ""; }; - 12C7E0B824FF40DC00B46FE5 /* AMPEventExplorer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPEventExplorer.m; sourceTree = ""; }; + 1279F8C025244D78003DCE07 /* AMPURLConnection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPURLConnection.h; sourceTree = ""; }; + 1279F8C125244D78003DCE07 /* AMPIdentify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPIdentify.h; sourceTree = ""; }; + 1279F8C225244D78003DCE07 /* AMPDeviceInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPDeviceInfo.h; sourceTree = ""; }; + 1279F8C325244D78003DCE07 /* AMPDatabaseHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPDatabaseHelper.h; sourceTree = ""; }; + 1279F8C425244D78003DCE07 /* AMPUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPUtils.m; sourceTree = ""; }; + 1279F8C525244D78003DCE07 /* AMPConfigManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPConfigManager.m; sourceTree = ""; }; + 1279F8C625244D78003DCE07 /* AMPConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPConstants.h; sourceTree = ""; }; + 1279F8C725244D78003DCE07 /* AMPRevenue.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPRevenue.m; sourceTree = ""; }; + 1279F8D025244D78003DCE07 /* AMPTrackingOptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPTrackingOptions.m; sourceTree = ""; }; + 1279F8D125244D78003DCE07 /* AMPURLSession.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPURLSession.m; sourceTree = ""; }; + 1279F8D225244D78003DCE07 /* AppledocSettings.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = AppledocSettings.plist; sourceTree = ""; }; + 1279F8D325244D78003DCE07 /* Amplitude.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Amplitude.h; sourceTree = ""; }; + 1279F8D425244D78003DCE07 /* AMPDatabaseHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPDatabaseHelper.m; sourceTree = ""; }; + 1279F8D525244D78003DCE07 /* AMPDeviceInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPDeviceInfo.m; sourceTree = ""; }; + 1279F8D625244D78003DCE07 /* AMPIdentify.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPIdentify.m; sourceTree = ""; }; + 1279F8D725244D78003DCE07 /* AMPURLConnection.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPURLConnection.m; sourceTree = ""; }; + 1279F8D825244D78003DCE07 /* AmplitudePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AmplitudePrivate.h; sourceTree = ""; }; + 1279F8D925244D78003DCE07 /* Amplitude+SSLPinning.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Amplitude+SSLPinning.h"; sourceTree = ""; }; + 1279F8DA25244D78003DCE07 /* AMPRevenue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPRevenue.h; sourceTree = ""; }; + 1279F8E525244D78003DCE07 /* AMPConfigManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPConfigManager.h; sourceTree = ""; }; + 1279F8E625244D78003DCE07 /* AMPConstants.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPConstants.m; sourceTree = ""; }; + 1279F8E725244D78003DCE07 /* AMPUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPUtils.h; sourceTree = ""; }; + 1279F8E825244D78003DCE07 /* AMPURLSession.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPURLSession.h; sourceTree = ""; }; + 1279F8E925244D78003DCE07 /* AMPTrackingOptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPTrackingOptions.h; sourceTree = ""; }; + 1279F8EA25244D78003DCE07 /* Amplitude.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Amplitude.m; sourceTree = ""; }; + 1279FA682525949D003DCE07 /* ISPCertificatePinning.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPCertificatePinning.m; sourceTree = ""; }; + 1279FA692525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPPinnedNSURLConnectionDelegate.m; sourceTree = ""; }; + 1279FA6A2525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPPinnedNSURLConnectionDelegate.h; sourceTree = ""; }; + 1279FA6B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ISPPinnedNSURLSessionDelegate.m; sourceTree = ""; }; + 1279FA6C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPPinnedNSURLSessionDelegate.h; sourceTree = ""; }; + 1279FA6D2525949D003DCE07 /* ISPCertificatePinning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ISPCertificatePinning.h; sourceTree = ""; }; + 1279FA80252594C1003DCE07 /* AMPEventExplorer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPEventExplorer.h; sourceTree = ""; }; + 1279FA81252594C1003DCE07 /* AMPInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPInfoViewController.m; sourceTree = ""; }; + 1279FA82252594C1003DCE07 /* AMPEventExplorer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPEventExplorer.m; sourceTree = ""; }; + 1279FA83252594C1003DCE07 /* AMPBubbleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPBubbleView.h; sourceTree = ""; }; + 1279FA84252594C1003DCE07 /* AMPBubbleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPBubbleView.m; sourceTree = ""; }; + 1279FA85252594C1003DCE07 /* AMPInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPInfoViewController.h; sourceTree = ""; }; 12C972AF24105B2C00E9CDDB /* Amplitude.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Amplitude.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 12C972B724105B2C00E9CDDB /* Amplitude_tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Amplitude_tvOSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 12C972CB24105C3600E9CDDB /* Amplitude.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Amplitude.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -221,48 +244,18 @@ 12C9731F24108DFF00E9CDDB /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 12C9732024108DFF00E9CDDB /* AmplitudeTVOSTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AmplitudeTVOSTests.m; sourceTree = ""; }; 12D0A22B241A0A960072CB4C /* Amplitude.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = Amplitude.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 12D0A22C241A10030072CB4C /* Amplitude-iOS.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Amplitude-iOS.podspec"; sourceTree = ""; }; 12D0A22D241A134D0072CB4C /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 12D0A22E241A13950072CB4C /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = ""; }; - 12E8A613238740AF00921FC7 /* Amplitude+SSLPinning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Amplitude+SSLPinning.h"; sourceTree = ""; }; - 12ED844B24FCD5BA004A2D01 /* AMPBubbleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPBubbleView.h; sourceTree = ""; }; - 12ED844C24FCD5BA004A2D01 /* AMPBubbleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPBubbleView.m; sourceTree = ""; }; - 12ED845B24FCD94A004A2D01 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 12ED845E24FCDFB3004A2D01 /* AMPBubbleView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMPBubbleView.xib; sourceTree = ""; }; - 12ED847C24FE13C6004A2D01 /* AMPInfoViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMPInfoViewController.h; sourceTree = ""; }; - 12ED847D24FE13C6004A2D01 /* AMPInfoViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMPInfoViewController.m; sourceTree = ""; }; - 12ED847E24FE13C6004A2D01 /* AMPInfoViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMPInfoViewController.xib; sourceTree = ""; }; 196EC1D108A62A030F1B58B1 /* libPods-shared-Amplitude_iOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_iOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 1EA2FCA6A86070E086933860 /* Pods-shared-Amplitude_iOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_iOSTests.release.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_iOSTests/Pods-shared-Amplitude_iOSTests.release.xcconfig"; sourceTree = ""; }; 1F8C962279011799CE1B72F5 /* libPods-shared-Amplitude_macOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_macOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 493212CA3C7E8FDA1FDC74E8 /* Pods-shared-Amplitude_macOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_macOSTests.release.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_macOSTests/Pods-shared-Amplitude_macOSTests.release.xcconfig"; sourceTree = ""; }; 5F70334CA7CB86ECCCB1472A /* Pods-shared-Amplitude_tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_tvOSTests/Pods-shared-Amplitude_tvOSTests.release.xcconfig"; sourceTree = ""; }; - 60227C091CC5AB8A007C117B /* AMPRevenue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPRevenue.h; sourceTree = ""; }; - 60227C0A1CC5AB8A007C117B /* AMPRevenue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPRevenue.m; sourceTree = ""; }; - 60AFE7301F6B636B00DF9A88 /* AMPURLSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPURLSession.h; sourceTree = ""; }; - 60AFE7311F6B636F00DF9A88 /* AMPURLSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPURLSession.m; sourceTree = ""; }; - 60BA92711C2376680043178E /* AMPDatabaseHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPDatabaseHelper.h; sourceTree = ""; }; - 60BA92721C2376680043178E /* AMPDatabaseHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPDatabaseHelper.m; sourceTree = ""; }; - 60BA92731C2376680043178E /* AMPIdentify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPIdentify.h; sourceTree = ""; }; - 60BA92741C2376680043178E /* AMPIdentify.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPIdentify.m; sourceTree = ""; }; - 60BA92751C2376680043178E /* AMPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPUtils.h; sourceTree = ""; }; - 60BA92761C2376680043178E /* AMPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPUtils.m; sourceTree = ""; }; - 60FD3058210264C000267B2A /* AMPTrackingOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPTrackingOptions.h; sourceTree = ""; }; - 60FD305A210264FA00267B2A /* AMPTrackingOptions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPTrackingOptions.m; sourceTree = ""; }; 6174D0A3357C218AF5BDE0FC /* libPods-shared-Amplitude_macOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_macOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 803B4175988DD3445D28E1B2 /* Pods-shared-Amplitude_iOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_iOSTests.debug.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_iOSTests/Pods-shared-Amplitude_iOSTests.debug.xcconfig"; sourceTree = ""; }; - 9D40E1791AB3BF7F0095C7C6 /* AMPURLConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPURLConnection.h; sourceTree = ""; }; - 9D40E17A1AB3BF7F0095C7C6 /* AMPURLConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPURLConnection.m; sourceTree = ""; }; - 9D76A3A31ABA5F890062E132 /* ComodoRsaDomainValidationCA.der */ = {isa = PBXFileReference; lastKnownFileType = file; path = ComodoRsaDomainValidationCA.der; sourceTree = ""; }; - 9DC708591AD4B28300949778 /* AMPConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPConstants.m; sourceTree = ""; }; A550B018598B807C4829A0E1 /* libPods-shared-Amplitude_iOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_iOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; AA18D859F9EB6DDF9522DF6E /* libPods-shared-Amplitude_tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B40636AB6475419C3DF05D59 /* Pods-shared-Amplitude_macOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-shared-Amplitude_macOSTests.debug.xcconfig"; path = "Target Support Files/Pods-shared-Amplitude_macOSTests/Pods-shared-Amplitude_macOSTests.debug.xcconfig"; sourceTree = ""; }; - E96785E21A48E93F00887CCD /* AMPConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPConstants.h; sourceTree = ""; }; - E96785E31A48E93F00887CCD /* AMPDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AMPDeviceInfo.h; sourceTree = ""; }; - E96785E41A48E93F00887CCD /* AMPDeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AMPDeviceInfo.m; sourceTree = ""; }; - E96785E61A48E93F00887CCD /* Amplitude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Amplitude.h; sourceTree = ""; }; - E96785E71A48E93F00887CCD /* Amplitude.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Amplitude.m; sourceTree = ""; }; F267A7F22BB6C50A4B3AEAF5 /* libPods-shared-Amplitude_tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-shared-Amplitude_tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -321,14 +314,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 02267F682355C80800E1F8E2 /* Sources */ = { - isa = PBXGroup; - children = ( - E98C05251A48E7FE00800C63 /* Amplitude */, - ); - path = Sources; - sourceTree = ""; - }; 06E8DCECB8F2131A0DDB73E3 /* Pods */ = { isa = PBXGroup; children = ( @@ -352,15 +337,70 @@ path = Framework; sourceTree = ""; }; - 1277135124A277EE003B5D8F /* SSLPinning */ = { + 1279F8BE25244D78003DCE07 /* Sources */ = { isa = PBXGroup; children = ( - 1277132A24A2711F003B5D8F /* ISPCertificatePinning.h */, - 1277132924A2711F003B5D8F /* ISPCertificatePinning.m */, - 1277132B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h */, - 1277132C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m */, - 1277132824A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.h */, - 1277132724A2711E003B5D8F /* ISPPinnedNSURLSessionDelegate.m */, + 1279F8BF25244D78003DCE07 /* Amplitude */, + ); + path = Sources; + sourceTree = ""; + }; + 1279F8BF25244D78003DCE07 /* Amplitude */ = { + isa = PBXGroup; + children = ( + 1279F8E525244D78003DCE07 /* AMPConfigManager.h */, + 1279F8C525244D78003DCE07 /* AMPConfigManager.m */, + 1279F8C625244D78003DCE07 /* AMPConstants.h */, + 1279F8E625244D78003DCE07 /* AMPConstants.m */, + 1279F8C325244D78003DCE07 /* AMPDatabaseHelper.h */, + 1279F8D425244D78003DCE07 /* AMPDatabaseHelper.m */, + 1279F8C225244D78003DCE07 /* AMPDeviceInfo.h */, + 1279F8D525244D78003DCE07 /* AMPDeviceInfo.m */, + 1279F8C125244D78003DCE07 /* AMPIdentify.h */, + 1279F8D625244D78003DCE07 /* AMPIdentify.m */, + 1279F8D325244D78003DCE07 /* Amplitude.h */, + 1279F8EA25244D78003DCE07 /* Amplitude.m */, + 1279F8D925244D78003DCE07 /* Amplitude+SSLPinning.h */, + 1279F8D825244D78003DCE07 /* AmplitudePrivate.h */, + 1279F8DA25244D78003DCE07 /* AMPRevenue.h */, + 1279F8C725244D78003DCE07 /* AMPRevenue.m */, + 1279F8E925244D78003DCE07 /* AMPTrackingOptions.h */, + 1279F8D025244D78003DCE07 /* AMPTrackingOptions.m */, + 1279F8C025244D78003DCE07 /* AMPURLConnection.h */, + 1279F8D725244D78003DCE07 /* AMPURLConnection.m */, + 1279F8E825244D78003DCE07 /* AMPURLSession.h */, + 1279F8D125244D78003DCE07 /* AMPURLSession.m */, + 1279F8E725244D78003DCE07 /* AMPUtils.h */, + 1279F8C425244D78003DCE07 /* AMPUtils.m */, + 1279FA6725259474003DCE07 /* SSLPinning */, + 1279FA662525946E003DCE07 /* EventExplorer */, + 1279F8D225244D78003DCE07 /* AppledocSettings.plist */, + ); + path = Amplitude; + sourceTree = ""; + }; + 1279FA662525946E003DCE07 /* EventExplorer */ = { + isa = PBXGroup; + children = ( + 1279FA83252594C1003DCE07 /* AMPBubbleView.h */, + 1279FA84252594C1003DCE07 /* AMPBubbleView.m */, + 1279FA80252594C1003DCE07 /* AMPEventExplorer.h */, + 1279FA82252594C1003DCE07 /* AMPEventExplorer.m */, + 1279FA85252594C1003DCE07 /* AMPInfoViewController.h */, + 1279FA81252594C1003DCE07 /* AMPInfoViewController.m */, + ); + name = EventExplorer; + sourceTree = ""; + }; + 1279FA6725259474003DCE07 /* SSLPinning */ = { + isa = PBXGroup; + children = ( + 1279FA6D2525949D003DCE07 /* ISPCertificatePinning.h */, + 1279FA682525949D003DCE07 /* ISPCertificatePinning.m */, + 1279FA6A2525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h */, + 1279FA692525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m */, + 1279FA6C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h */, + 1279FA6B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m */, ); name = SSLPinning; sourceTree = ""; @@ -368,7 +408,6 @@ 12C973012410758400E9CDDB /* Deployment */ = { isa = PBXGroup; children = ( - 12D0A22C241A10030072CB4C /* Amplitude-iOS.podspec */, 12D0A22B241A0A960072CB4C /* Amplitude.podspec */, 1213D80B2416F3EA00300E98 /* Package.swift */, 124CDD7B23EFD2D4004C7B27 /* LICENSE */, @@ -402,17 +441,6 @@ path = Tests; sourceTree = ""; }; - 12C9738A2412426700E9CDDB /* Resources */ = { - isa = PBXGroup; - children = ( - 12ED847E24FE13C6004A2D01 /* AMPInfoViewController.xib */, - 12ED845B24FCD94A004A2D01 /* Assets.xcassets */, - 9D76A3A31ABA5F890062E132 /* ComodoRsaDomainValidationCA.der */, - 12ED845E24FCDFB3004A2D01 /* AMPBubbleView.xib */, - ); - name = Resources; - sourceTree = ""; - }; 12DF9415251B09FF008B2C25 /* Recovered References */ = { isa = PBXGroup; children = ( @@ -423,19 +451,6 @@ name = "Recovered References"; sourceTree = ""; }; - 12ED844A24FCB5D9004A2D01 /* EventExplorer */ = { - isa = PBXGroup; - children = ( - 12ED844B24FCD5BA004A2D01 /* AMPBubbleView.h */, - 12ED844C24FCD5BA004A2D01 /* AMPBubbleView.m */, - 12ED847C24FE13C6004A2D01 /* AMPInfoViewController.h */, - 12ED847D24FE13C6004A2D01 /* AMPInfoViewController.m */, - 12C7E0B724FF40DC00B46FE5 /* AMPEventExplorer.h */, - 12C7E0B824FF40DC00B46FE5 /* AMPEventExplorer.m */, - ); - name = EventExplorer; - sourceTree = ""; - }; 4FEE653130E7AE135280BC48 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -449,8 +464,8 @@ E98C051A1A48E7FE00800C63 = { isa = PBXGroup; children = ( + 1279F8BE25244D78003DCE07 /* Sources */, 12C973012410758400E9CDDB /* Deployment */, - 02267F682355C80800E1F8E2 /* Sources */, 12C9730F24108DFF00E9CDDB /* Tests */, 1213D89724176E4700300E98 /* Framework */, E98C05241A48E7FE00800C63 /* Products */, @@ -475,40 +490,6 @@ name = Products; sourceTree = ""; }; - E98C05251A48E7FE00800C63 /* Amplitude */ = { - isa = PBXGroup; - children = ( - 12470D1024DB2AB700E2B9A2 /* AMPConfigManager.h */, - 12470D1124DB2AB700E2B9A2 /* AMPConfigManager.m */, - E96785E21A48E93F00887CCD /* AMPConstants.h */, - 9DC708591AD4B28300949778 /* AMPConstants.m */, - 60BA92711C2376680043178E /* AMPDatabaseHelper.h */, - 60BA92721C2376680043178E /* AMPDatabaseHelper.m */, - E96785E31A48E93F00887CCD /* AMPDeviceInfo.h */, - E96785E41A48E93F00887CCD /* AMPDeviceInfo.m */, - 60BA92731C2376680043178E /* AMPIdentify.h */, - 60BA92741C2376680043178E /* AMPIdentify.m */, - E96785E61A48E93F00887CCD /* Amplitude.h */, - E96785E71A48E93F00887CCD /* Amplitude.m */, - 12E8A613238740AF00921FC7 /* Amplitude+SSLPinning.h */, - 120A6DD0241F571C0007C375 /* AmplitudePrivate.h */, - 60227C091CC5AB8A007C117B /* AMPRevenue.h */, - 60227C0A1CC5AB8A007C117B /* AMPRevenue.m */, - 60FD3058210264C000267B2A /* AMPTrackingOptions.h */, - 60FD305A210264FA00267B2A /* AMPTrackingOptions.m */, - 9D40E1791AB3BF7F0095C7C6 /* AMPURLConnection.h */, - 9D40E17A1AB3BF7F0095C7C6 /* AMPURLConnection.m */, - 60AFE7301F6B636B00DF9A88 /* AMPURLSession.h */, - 60AFE7311F6B636F00DF9A88 /* AMPURLSession.m */, - 60BA92751C2376680043178E /* AMPUtils.h */, - 60BA92761C2376680043178E /* AMPUtils.m */, - 12ED844A24FCB5D9004A2D01 /* EventExplorer */, - 12C9738A2412426700E9CDDB /* Resources */, - 1277135124A277EE003B5D8F /* SSLPinning */, - ); - path = Amplitude; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -516,23 +497,23 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 120A6DD2241F571C0007C375 /* AmplitudePrivate.h in Headers */, - 12C97395241242B500E9CDDB /* AMPIdentify.h in Headers */, - 12C97392241242A200E9CDDB /* Amplitude+SSLPinning.h in Headers */, - 12C97398241242CD00E9CDDB /* AMPTrackingOptions.h in Headers */, - 12C973822412423800E9CDDB /* AMPURLConnection.h in Headers */, - 12C973872412424F00E9CDDB /* AMPUtils.h in Headers */, - 12470D1324DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */, - 12C973852412424200E9CDDB /* AMPURLSession.h in Headers */, - 12C9738F2412429400E9CDDB /* Amplitude.h in Headers */, - 1277133124A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */, - 12C9738C2412428300E9CDDB /* AMPDatabaseHelper.h in Headers */, - 12C973362412416C00E9CDDB /* AMPConstants.h in Headers */, + 1279FA7E2525949D003DCE07 /* ISPCertificatePinning.h in Headers */, 1213D89C24176E4700300E98 /* AmplitudeFramework.h in Headers */, - 12C9737F2412422700E9CDDB /* AMPRevenue.h in Headers */, - 1277133A24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */, - 12C973792412420D00E9CDDB /* AMPDeviceInfo.h in Headers */, - 1277133724A2711F003B5D8F /* ISPCertificatePinning.h in Headers */, + 1279F91225244E8E003DCE07 /* Amplitude+SSLPinning.h in Headers */, + 1279FA7B2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */, + 1279F91825244E8E003DCE07 /* Amplitude.h in Headers */, + 1279F91525244E8E003DCE07 /* AMPConstants.h in Headers */, + 1279F91925244E8E003DCE07 /* AMPTrackingOptions.h in Headers */, + 1279FA752525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */, + 1279F91425244E8E003DCE07 /* AmplitudePrivate.h in Headers */, + 1279F92325244E8E003DCE07 /* AMPRevenue.h in Headers */, + 1279F91325244E8E003DCE07 /* AMPURLSession.h in Headers */, + 1279F91025244E8E003DCE07 /* AMPDeviceInfo.h in Headers */, + 1279F91125244E8E003DCE07 /* AMPIdentify.h in Headers */, + 1279F92025244E8E003DCE07 /* AMPDatabaseHelper.h in Headers */, + 1279F91E25244E8E003DCE07 /* AMPURLConnection.h in Headers */, + 1279F91725244E8E003DCE07 /* AMPConfigManager.h in Headers */, + 1279F91625244E8E003DCE07 /* AMPUtils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -540,26 +521,26 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 120A6DD1241F571C0007C375 /* AmplitudePrivate.h in Headers */, - 12C97397241242CC00E9CDDB /* AMPTrackingOptions.h in Headers */, - 12C973352412416B00E9CDDB /* AMPConstants.h in Headers */, - 12C9738B2412428200E9CDDB /* AMPDatabaseHelper.h in Headers */, - 12ED847F24FE13C6004A2D01 /* AMPInfoViewController.h in Headers */, - 12ED844D24FCD5BA004A2D01 /* AMPBubbleView.h in Headers */, - 12C973882412424F00E9CDDB /* AMPUtils.h in Headers */, - 12C9738E2412429200E9CDDB /* Amplitude.h in Headers */, - 12C97394241242B400E9CDDB /* AMPIdentify.h in Headers */, - 12470D1224DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */, - 12C97391241242A100E9CDDB /* Amplitude+SSLPinning.h in Headers */, - 12C973842412424100E9CDDB /* AMPURLSession.h in Headers */, - 1277133024A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */, - 12C9737E2412422600E9CDDB /* AMPRevenue.h in Headers */, - 12C7E0B924FF40DC00B46FE5 /* AMPEventExplorer.h in Headers */, + 1279FA7D2525949D003DCE07 /* ISPCertificatePinning.h in Headers */, 1213D89B24176E4700300E98 /* AmplitudeFramework.h in Headers */, - 12C973812412423700E9CDDB /* AMPURLConnection.h in Headers */, - 1277133924A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */, - 12C973782412420C00E9CDDB /* AMPDeviceInfo.h in Headers */, - 1277133624A2711F003B5D8F /* ISPCertificatePinning.h in Headers */, + 1279F8F425244E8D003DCE07 /* Amplitude+SSLPinning.h in Headers */, + 1279FA7A2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */, + 1279FA89252594C1003DCE07 /* AMPBubbleView.h in Headers */, + 1279F8FA25244E8D003DCE07 /* Amplitude.h in Headers */, + 1279F8F725244E8D003DCE07 /* AMPConstants.h in Headers */, + 1279F8FB25244E8D003DCE07 /* AMPTrackingOptions.h in Headers */, + 1279FA742525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */, + 1279F8F625244E8D003DCE07 /* AmplitudePrivate.h in Headers */, + 1279F90525244E8D003DCE07 /* AMPRevenue.h in Headers */, + 1279F8F525244E8D003DCE07 /* AMPURLSession.h in Headers */, + 1279F8F225244E8D003DCE07 /* AMPDeviceInfo.h in Headers */, + 1279F8F325244E8D003DCE07 /* AMPIdentify.h in Headers */, + 1279F90225244E8D003DCE07 /* AMPDatabaseHelper.h in Headers */, + 1279F90025244E8D003DCE07 /* AMPURLConnection.h in Headers */, + 1279F8F925244E8D003DCE07 /* AMPConfigManager.h in Headers */, + 1279F8F825244E8D003DCE07 /* AMPUtils.h in Headers */, + 1279FA8B252594C1003DCE07 /* AMPInfoViewController.h in Headers */, + 1279FA86252594C1003DCE07 /* AMPEventExplorer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -567,23 +548,23 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 120A6DD3241F571C0007C375 /* AmplitudePrivate.h in Headers */, - 12C97396241242B600E9CDDB /* AMPIdentify.h in Headers */, - 12C97393241242A300E9CDDB /* Amplitude+SSLPinning.h in Headers */, - 12C97399241242CE00E9CDDB /* AMPTrackingOptions.h in Headers */, - 12C973832412423900E9CDDB /* AMPURLConnection.h in Headers */, - 12C973892412425000E9CDDB /* AMPUtils.h in Headers */, - 12470D1424DB2AB700E2B9A2 /* AMPConfigManager.h in Headers */, - 12C973862412424300E9CDDB /* AMPURLSession.h in Headers */, - 12C973902412429400E9CDDB /* Amplitude.h in Headers */, - 1277133224A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.h in Headers */, - 12C9738D2412428300E9CDDB /* AMPDatabaseHelper.h in Headers */, - 12C973372412416D00E9CDDB /* AMPConstants.h in Headers */, + 1279FA7F2525949D003DCE07 /* ISPCertificatePinning.h in Headers */, 1213D89D24176E4700300E98 /* AmplitudeFramework.h in Headers */, - 12C973802412422800E9CDDB /* AMPRevenue.h in Headers */, - 1277133B24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.h in Headers */, - 12C9737A2412420F00E9CDDB /* AMPDeviceInfo.h in Headers */, - 1277133824A2711F003B5D8F /* ISPCertificatePinning.h in Headers */, + 1279F93025244E8F003DCE07 /* Amplitude+SSLPinning.h in Headers */, + 1279FA7C2525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.h in Headers */, + 1279F93625244E8F003DCE07 /* Amplitude.h in Headers */, + 1279F93325244E8F003DCE07 /* AMPConstants.h in Headers */, + 1279F93725244E8F003DCE07 /* AMPTrackingOptions.h in Headers */, + 1279FA762525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.h in Headers */, + 1279F93225244E8F003DCE07 /* AmplitudePrivate.h in Headers */, + 1279F94125244E8F003DCE07 /* AMPRevenue.h in Headers */, + 1279F93125244E8F003DCE07 /* AMPURLSession.h in Headers */, + 1279F92E25244E8F003DCE07 /* AMPDeviceInfo.h in Headers */, + 1279F92F25244E8F003DCE07 /* AMPIdentify.h in Headers */, + 1279F93E25244E8F003DCE07 /* AMPDatabaseHelper.h in Headers */, + 1279F93C25244E8F003DCE07 /* AMPURLConnection.h in Headers */, + 1279F93525244E8F003DCE07 /* AMPConfigManager.h in Headers */, + 1279F93425244E8F003DCE07 /* AMPUtils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -780,9 +761,6 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 12ED845C24FCD94A004A2D01 /* Assets.xcassets in Resources */, - 12ED845F24FCDFB3004A2D01 /* AMPBubbleView.xib in Resources */, - 12ED848324FE13C6004A2D01 /* AMPInfoViewController.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -883,20 +861,20 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 12C9735C241241CE00E9CDDB /* AMPDeviceInfo.m in Sources */, - 12C97362241241CE00E9CDDB /* AMPURLConnection.m in Sources */, - 12C97339241241BB00E9CDDB /* AMPConstants.m in Sources */, - 1277132E24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */, - 12C97360241241CE00E9CDDB /* AMPRevenue.m in Sources */, - 12C9735E241241CE00E9CDDB /* Amplitude.m in Sources */, - 12C97361241241CE00E9CDDB /* AMPTrackingOptions.m in Sources */, - 12C97364241241CE00E9CDDB /* AMPUtils.m in Sources */, - 12470D1624DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */, - 1277133D24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */, - 1277133424A2711F003B5D8F /* ISPCertificatePinning.m in Sources */, - 12C9735D241241CE00E9CDDB /* AMPIdentify.m in Sources */, - 12C97363241241CE00E9CDDB /* AMPURLSession.m in Sources */, - 12C9735B241241CE00E9CDDB /* AMPDatabaseHelper.m in Sources */, + 1279FA6F2525949D003DCE07 /* ISPCertificatePinning.m in Sources */, + 1279F91A25244E8E003DCE07 /* AMPUtils.m in Sources */, + 1279F92125244E8E003DCE07 /* AMPURLConnection.m in Sources */, + 1279FA722525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */, + 1279F92625244E8E003DCE07 /* AMPDatabaseHelper.m in Sources */, + 1279F92425244E8E003DCE07 /* AMPConstants.m in Sources */, + 1279F90F25244E8E003DCE07 /* AMPConfigManager.m in Sources */, + 1279F92225244E8E003DCE07 /* Amplitude.m in Sources */, + 1279F91B25244E8E003DCE07 /* AMPIdentify.m in Sources */, + 1279F92525244E8E003DCE07 /* AMPDeviceInfo.m in Sources */, + 1279F91D25244E8E003DCE07 /* AMPTrackingOptions.m in Sources */, + 1279FA782525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */, + 1279F91C25244E8E003DCE07 /* AMPRevenue.m in Sources */, + 1279F91F25244E8E003DCE07 /* AMPURLSession.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -922,24 +900,24 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1277133C24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */, - 12ED845024FCD5BA004A2D01 /* AMPBubbleView.m in Sources */, - 12ED848124FE13C6004A2D01 /* AMPInfoViewController.m in Sources */, - 12C97365241241CF00E9CDDB /* AMPDatabaseHelper.m in Sources */, - 12C9736C241241CF00E9CDDB /* AMPURLConnection.m in Sources */, - 1277133324A2711F003B5D8F /* ISPCertificatePinning.m in Sources */, + 1279F8FE25244E8D003DCE07 /* AMPRevenue.m in Sources */, + 1279F90825244E8D003DCE07 /* AMPDatabaseHelper.m in Sources */, + 1279F8FC25244E8D003DCE07 /* AMPUtils.m in Sources */, + 1279F8F125244E8D003DCE07 /* AMPConfigManager.m in Sources */, + 1279F8FD25244E8D003DCE07 /* AMPIdentify.m in Sources */, + 1279F90125244E8D003DCE07 /* AMPURLSession.m in Sources */, + 1279F8FF25244E8D003DCE07 /* AMPTrackingOptions.m in Sources */, + 1279FA88252594C1003DCE07 /* AMPEventExplorer.m in Sources */, + 1279F90625244E8D003DCE07 /* AMPConstants.m in Sources */, + 1279FA712525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */, + 1279FA772525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */, + 1279FA8A252594C1003DCE07 /* AMPBubbleView.m in Sources */, + 1279FA6E2525949D003DCE07 /* ISPCertificatePinning.m in Sources */, + 1279FA87252594C1003DCE07 /* AMPInfoViewController.m in Sources */, + 1279F90325244E8D003DCE07 /* AMPURLConnection.m in Sources */, + 1279F90725244E8D003DCE07 /* AMPDeviceInfo.m in Sources */, + 1279F90425244E8D003DCE07 /* Amplitude.m in Sources */, 12C973CF24131EB100E9CDDB /* SSLPinningTests.m in Sources */, - 1277132D24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */, - 12C9736A241241CF00E9CDDB /* AMPRevenue.m in Sources */, - 12C97367241241CF00E9CDDB /* AMPIdentify.m in Sources */, - 12C9736B241241CF00E9CDDB /* AMPTrackingOptions.m in Sources */, - 12C97368241241CF00E9CDDB /* Amplitude.m in Sources */, - 12C9736E241241CF00E9CDDB /* AMPUtils.m in Sources */, - 12470D1524DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */, - 12C97366241241CF00E9CDDB /* AMPDeviceInfo.m in Sources */, - 12C97338241241BA00E9CDDB /* AMPConstants.m in Sources */, - 12C7E0BB24FF40DC00B46FE5 /* AMPEventExplorer.m in Sources */, - 12C9736D241241CF00E9CDDB /* AMPURLSession.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -965,20 +943,20 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 12C97352241241CD00E9CDDB /* AMPDeviceInfo.m in Sources */, - 12C97358241241CD00E9CDDB /* AMPURLConnection.m in Sources */, - 12C97350241241CD00E9CDDB /* AMPConstants.m in Sources */, - 1277132F24A2711F003B5D8F /* ISPPinnedNSURLSessionDelegate.m in Sources */, - 12C97356241241CD00E9CDDB /* AMPRevenue.m in Sources */, - 12C97354241241CD00E9CDDB /* Amplitude.m in Sources */, - 12C97357241241CD00E9CDDB /* AMPTrackingOptions.m in Sources */, - 12C9735A241241CD00E9CDDB /* AMPUtils.m in Sources */, - 12470D1724DB2AB700E2B9A2 /* AMPConfigManager.m in Sources */, - 1277133E24A2711F003B5D8F /* ISPPinnedNSURLConnectionDelegate.m in Sources */, - 1277133524A2711F003B5D8F /* ISPCertificatePinning.m in Sources */, - 12C97353241241CD00E9CDDB /* AMPIdentify.m in Sources */, - 12C97359241241CD00E9CDDB /* AMPURLSession.m in Sources */, - 12C97351241241CD00E9CDDB /* AMPDatabaseHelper.m in Sources */, + 1279FA702525949D003DCE07 /* ISPCertificatePinning.m in Sources */, + 1279F93825244E8F003DCE07 /* AMPUtils.m in Sources */, + 1279F93F25244E8F003DCE07 /* AMPURLConnection.m in Sources */, + 1279FA732525949D003DCE07 /* ISPPinnedNSURLConnectionDelegate.m in Sources */, + 1279F94425244E8F003DCE07 /* AMPDatabaseHelper.m in Sources */, + 1279F94225244E8F003DCE07 /* AMPConstants.m in Sources */, + 1279F92D25244E8F003DCE07 /* AMPConfigManager.m in Sources */, + 1279F94025244E8F003DCE07 /* Amplitude.m in Sources */, + 1279F93925244E8F003DCE07 /* AMPIdentify.m in Sources */, + 1279F94325244E8F003DCE07 /* AMPDeviceInfo.m in Sources */, + 1279F93B25244E8F003DCE07 /* AMPTrackingOptions.m in Sources */, + 1279FA792525949D003DCE07 /* ISPPinnedNSURLSessionDelegate.m in Sources */, + 1279F93A25244E8F003DCE07 /* AMPRevenue.m in Sources */, + 1279F93D25244E8F003DCE07 /* AMPURLSession.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Package.swift b/Package.swift index 9e579feb..c7d9b3fa 100644 --- a/Package.swift +++ b/Package.swift @@ -1,19 +1,23 @@ -// swift-tools-version:5.1 +// swift-tools-version:5.3 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription let package = Package( name: "Amplitude", + platforms: [ + .iOS(.v10), + .tvOS(.v9), + .macOS(.v10_10) + ], products: [ - .library( - name: "Amplitude", - targets: ["Amplitude"]), + .library(name: "Amplitude", targets: ["Amplitude"]), ], targets: [ .target( name: "Amplitude", + path: "Sources/Amplitude", exclude: [], - publicHeadersPath: "."), + publicHeadersPath: ".") ] ) diff --git a/Sources/Amplitude/AMPBubbleView.m b/Sources/Amplitude/AMPBubbleView.m index a2839061..b040e8e3 100644 --- a/Sources/Amplitude/AMPBubbleView.m +++ b/Sources/Amplitude/AMPBubbleView.m @@ -48,9 +48,9 @@ - (instancetype)initWithFrame:(CGRect)frame { } - (void)loadViewFromNib { - NSURL *bundleURL = [[[NSBundle bundleForClass:self.class] resourceURL] URLByAppendingPathComponent:@"Amplitude.bundle"]; - NSBundle *resBundle = [NSBundle bundleWithURL:bundleURL]; - UINib *nib = [UINib nibWithNibName:@"AMPBubbleView" bundle:resBundle]; + NSBundle *bundle = [NSBundle bundleForClass:[AMPBubbleView class]]; + UINib *nib = [UINib nibWithNibName:@"AMPBubbleView" bundle:bundle]; + NSArray *views = [nib instantiateWithOwner:self options:nil]; UIView *view = [views objectAtIndex:0]; view.frame = self.bounds; diff --git a/Sources/Amplitude/AMPEventExplorer.m b/Sources/Amplitude/AMPEventExplorer.m index 57edf9df..7ee0e057 100644 --- a/Sources/Amplitude/AMPEventExplorer.m +++ b/Sources/Amplitude/AMPEventExplorer.m @@ -72,10 +72,8 @@ - (void)showInfoView { if (self.bubbleView != nil) { UIViewController *rootViewController = [[[AMPUtils getSharedApplication] keyWindow] rootViewController]; - NSURL *bundleURL = [[[NSBundle bundleForClass:self.class] resourceURL] URLByAppendingPathComponent:@"Amplitude.bundle"]; - NSBundle *resBundle = [NSBundle bundleWithURL:bundleURL]; - - AMPInfoViewController *infoVC = [[AMPInfoViewController alloc] initWithNibName:@"AMPInfoViewController" bundle:resBundle]; + NSBundle *bundle = [NSBundle bundleForClass:[AMPInfoViewController class]]; + AMPInfoViewController *infoVC = [[AMPInfoViewController alloc] initWithNibName:@"AMPInfoViewController" bundle:bundle]; infoVC.instanceName = self.instanceName; [infoVC setModalPresentationStyle:UIModalPresentationFullScreen]; diff --git a/Sources/Amplitude/Assets.xcassets/Contents.json b/Sources/Amplitude/Assets.xcassets/Contents.json deleted file mode 100644 index 73c00596..00000000 --- a/Sources/Amplitude/Assets.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Sources/Amplitude/Assets.xcassets/amp_banner.imageset/Contents.json b/Sources/Amplitude/Assets.xcassets/amp_banner.imageset/Contents.json deleted file mode 100644 index 0784ac75..00000000 --- a/Sources/Amplitude/Assets.xcassets/amp_banner.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "filename" : "logo-banner.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "logo-banner@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "logo-banner@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Sources/Amplitude/Assets.xcassets/amp_logo.imageset/Contents.json b/Sources/Amplitude/Assets.xcassets/amp_logo.imageset/Contents.json deleted file mode 100644 index c61977df..00000000 --- a/Sources/Amplitude/Assets.xcassets/amp_logo.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "filename" : "logo-button.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "logo-button@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "logo-button@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Sources/Amplitude/Assets.xcassets/blue_x.imageset/Contents.json b/Sources/Amplitude/Assets.xcassets/blue_x.imageset/Contents.json deleted file mode 100644 index ce349b36..00000000 --- a/Sources/Amplitude/Assets.xcassets/blue_x.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "filename" : "cancel.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "cancel@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "cancel@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Sources/Amplitude/AMPBubbleView.xib b/Sources/Amplitude/Resources/AMPBubbleView.xib similarity index 85% rename from Sources/Amplitude/AMPBubbleView.xib rename to Sources/Amplitude/Resources/AMPBubbleView.xib index 01d7e9bc..81ef01ef 100644 --- a/Sources/Amplitude/AMPBubbleView.xib +++ b/Sources/Amplitude/Resources/AMPBubbleView.xib @@ -1,9 +1,9 @@ - + - + @@ -14,7 +14,7 @@ - + @@ -22,17 +22,17 @@ + - - + diff --git a/Sources/Amplitude/AMPInfoViewController.xib b/Sources/Amplitude/Resources/AMPInfoViewController.xib similarity index 91% rename from Sources/Amplitude/AMPInfoViewController.xib rename to Sources/Amplitude/Resources/AMPInfoViewController.xib index f4cb9adc..8144d532 100644 --- a/Sources/Amplitude/AMPInfoViewController.xib +++ b/Sources/Amplitude/Resources/AMPInfoViewController.xib @@ -1,10 +1,11 @@ - + - + + @@ -27,13 +28,13 @@ - + - + @@ -41,7 +42,7 @@ - + @@ -54,13 +55,13 @@ -