From e1a668eab483d4a18212e8fdf6294df1ed1c6f92 Mon Sep 17 00:00:00 2001 From: aparthibanpaypal <71116197+aparthibanpaypal@users.noreply.github.com> Date: Thu, 15 Apr 2021 12:26:18 +0530 Subject: [PATCH 1/5] Upgrade to Xcode 12 --- .travis.yml | 9 +++++---- Insights.xcodeproj/project.pbxproj | 8 +++++--- Sources/CoreData/Event+CoreDataProperties.swift | 2 +- Sources/DeviceInfo.swift | 10 +++++----- Sources/Extensions/Date.swift | 2 +- Sources/Insights.swift | 2 +- 6 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8625116..07e1141 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: swift -osx_image: xcode11.1 +osx_image: xcode12.2 os: osx branches: only: @@ -15,7 +15,7 @@ env: - IOS_FRAMEWORK_SCHEME="Insights" matrix: - - ios_version='13.1' ios_device='iPhone 11' scheme="$IOS_FRAMEWORK_SCHEME" platform='iOS Simulator' + - ios_version='14.2' ios_device='iPhone 11' scheme="$IOS_FRAMEWORK_SCHEME" platform='iOS Simulator' before_install: # Boot the emulator by ID - | @@ -24,8 +24,9 @@ before_install: # List all emulator available - xcrun simctl list # Update the brew and build dependencies tools - - brew outdated carthage || brew upgrade carthage - - carthage bootstrap --verbose --no-use-binaries --platform iOS --cache-builds + - brew update && brew upgrade carthage + - carthage version + - carthage update --platform ios --use-xcframeworks --no-use-binaries --cache-builds - gem i slather # Force to update the Swiftlint to the last stable version - brew outdated swiftlint || brew upgrade swiftlint diff --git a/Insights.xcodeproj/project.pbxproj b/Insights.xcodeproj/project.pbxproj index e79bc22..b88a015 100644 --- a/Insights.xcodeproj/project.pbxproj +++ b/Insights.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 50; + objectVersion = 52; objects = { /* Begin PBXBuildFile section */ @@ -18,13 +18,13 @@ 4A6FDF7B2370781700275A41 /* InsightsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A6FDF7A2370781700275A41 /* InsightsTests.swift */; }; 4A6FDF802370B31200275A41 /* EventPayload.json in Resources */ = {isa = PBXBuildFile; fileRef = 4A6FDF7F2370B31200275A41 /* EventPayload.json */; }; 4A6FDF8623715CD300275A41 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A6FDF8523715CD300275A41 /* Date.swift */; }; - 4A7317CD23744B4A00F5D22F /* Hippolyte.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A7317CC23744B4A00F5D22F /* Hippolyte.framework */; }; 4A7317CF2374518100F5D22F /* InsightsTestHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A7317CE2374518100F5D22F /* InsightsTestHelper.swift */; }; 4A88FF1B236898FD0025D985 /* Events.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A88FF1A236898FD0025D985 /* Events.swift */; }; 4AD2EFC32372D6CE0080030D /* Insights.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 2EB32DA623513F84009F120E /* Insights.xcdatamodeld */; }; 4ADE281323671B35000F0BEB /* Insights.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ADE281223671B35000F0BEB /* Insights.swift */; }; 9865B6B92375D81E00ED1EA1 /* SuccessResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 9865B6B82375D81E00ED1EA1 /* SuccessResponse.json */; }; B3102892236C9CF2008C9757 /* HttpClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3102891236C9CF2008C9757 /* HttpClient.swift */; }; + FD44E8582628146500A31794 /* Hippolyte.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD44E8572628146500A31794 /* Hippolyte.xcframework */; settings = {ATTRIBUTES = (Required, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -58,6 +58,7 @@ 4ADE281223671B35000F0BEB /* Insights.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Insights.swift; sourceTree = ""; }; 9865B6B82375D81E00ED1EA1 /* SuccessResponse.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = SuccessResponse.json; sourceTree = ""; }; B3102891236C9CF2008C9757 /* HttpClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HttpClient.swift; sourceTree = ""; }; + FD44E8572628146500A31794 /* Hippolyte.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Hippolyte.xcframework; path = Carthage/Build/Hippolyte.xcframework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -72,8 +73,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4A7317CD23744B4A00F5D22F /* Hippolyte.framework in Frameworks */, 2EB32DEA23579E47009F120E /* Insights.framework in Frameworks */, + FD44E8582628146500A31794 /* Hippolyte.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -140,6 +141,7 @@ 2EB32DE923579E47009F120E /* Frameworks */ = { isa = PBXGroup; children = ( + FD44E8572628146500A31794 /* Hippolyte.xcframework */, 4A7317CC23744B4A00F5D22F /* Hippolyte.framework */, ); name = Frameworks; diff --git a/Sources/CoreData/Event+CoreDataProperties.swift b/Sources/CoreData/Event+CoreDataProperties.swift index 2aa7073..83436a8 100755 --- a/Sources/CoreData/Event+CoreDataProperties.swift +++ b/Sources/CoreData/Event+CoreDataProperties.swift @@ -5,7 +5,7 @@ extension Event { /// Request to fetch events @nonobjc public class func fetchRequest() -> NSFetchRequest { - return NSFetchRequest(entityName: "Event") + NSFetchRequest(entityName: "Event") } /// Created date in milliseconds diff --git a/Sources/DeviceInfo.swift b/Sources/DeviceInfo.swift index 5f98060..53d7b11 100755 --- a/Sources/DeviceInfo.swift +++ b/Sources/DeviceInfo.swift @@ -33,11 +33,11 @@ struct DeviceInfo { return deviceModel }() - var deviceScreenHeight: CGFloat { return UIScreen.main.bounds.height } - var deviceScreenWidth: CGFloat { return UIScreen.main.bounds.width } - var deviceType: String { return UIDevice.current.userInterfaceIdiom.description } - var orientation: String { return UIDevice.current.orientation.description } - var languageCode: String { return Locale.preferredLanguages[0] } + var deviceScreenHeight: CGFloat { UIScreen.main.bounds.height } + var deviceScreenWidth: CGFloat { UIScreen.main.bounds.width } + var deviceType: String { UIDevice.current.userInterfaceIdiom.description } + var orientation: String { UIDevice.current.orientation.description } + var languageCode: String { Locale.preferredLanguages[0] } static var shared = DeviceInfo() diff --git a/Sources/Extensions/Date.swift b/Sources/Extensions/Date.swift index c2b0b28..f842f9f 100755 --- a/Sources/Extensions/Date.swift +++ b/Sources/Extensions/Date.swift @@ -20,6 +20,6 @@ import Foundation extension Date { func epochMilliseconds() -> Int64 { - return Int64(self.timeIntervalSince1970 * 1000) + Int64(self.timeIntervalSince1970 * 1000) } } diff --git a/Sources/Insights.swift b/Sources/Insights.swift index 2b5bc1e..38c1f47 100755 --- a/Sources/Insights.swift +++ b/Sources/Insights.swift @@ -93,7 +93,7 @@ public final class Insights: InsightsProtocol { /// A shared singleton property is an instance of Insights framework public static var shared: Insights? { - return instance + instance } private lazy var httpClient = HttpClient() From 51955198dad1e59e988ebb3524d9e74fa203865a Mon Sep 17 00:00:00 2001 From: aparthibanpaypal <71116197+aparthibanpaypal@users.noreply.github.com> Date: Thu, 15 Apr 2021 13:17:22 +0530 Subject: [PATCH 2/5] Travis update --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 07e1141..fa8504d 100755 --- a/.travis.yml +++ b/.travis.yml @@ -30,8 +30,6 @@ before_install: - gem i slather # Force to update the Swiftlint to the last stable version - brew outdated swiftlint || brew upgrade swiftlint - # Print the booted emulator - - xcrun simctl list | grep "(Booted)" # Print the swiftlint version - swiftlint version script: | From b9e8ef432d69501f9c17e1bcccb4f0f9935e612f Mon Sep 17 00:00:00 2001 From: Flavio F Mattos Date: Tue, 10 May 2022 18:27:00 -0700 Subject: [PATCH 3/5] DTONBWTWO-703 update ios target version --- Insights.xcodeproj/project.pbxproj | 42 +++++++++++++------ .../xcshareddata/xcschemes/Insights.xcscheme | 2 +- 2 files changed, 30 insertions(+), 14 deletions(-) diff --git a/Insights.xcodeproj/project.pbxproj b/Insights.xcodeproj/project.pbxproj index b88a015..2828522 100644 --- a/Insights.xcodeproj/project.pbxproj +++ b/Insights.xcodeproj/project.pbxproj @@ -7,6 +7,8 @@ objects = { /* Begin PBXBuildFile section */ + 11B7FF93282B47EF005522A7 /* Hippolyte.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */; }; + 11B7FF94282B47EF005522A7 /* Hippolyte.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 2EB32D7B23513979009F120E /* Insights.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB32D6D23513979009F120E /* Insights.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2EB32DA823513F84009F120E /* Insights.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 2EB32DA623513F84009F120E /* Insights.xcdatamodeld */; }; 2EB32DEA23579E47009F120E /* Insights.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EB32D6A23513979009F120E /* Insights.framework */; }; @@ -24,7 +26,6 @@ 4ADE281323671B35000F0BEB /* Insights.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ADE281223671B35000F0BEB /* Insights.swift */; }; 9865B6B92375D81E00ED1EA1 /* SuccessResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 9865B6B82375D81E00ED1EA1 /* SuccessResponse.json */; }; B3102892236C9CF2008C9757 /* HttpClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3102891236C9CF2008C9757 /* HttpClient.swift */; }; - FD44E8582628146500A31794 /* Hippolyte.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD44E8572628146500A31794 /* Hippolyte.xcframework */; settings = {ATTRIBUTES = (Required, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -37,7 +38,22 @@ }; /* End PBXContainerItemProxy section */ +/* Begin PBXCopyFilesBuildPhase section */ + 11B7FF95282B47EF005522A7 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 11B7FF94282B47EF005522A7 /* Hippolyte.xcframework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + /* Begin PBXFileReference section */ + 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Hippolyte.xcframework; path = Carthage/Build/Hippolyte.xcframework; sourceTree = ""; }; 2EB32D6A23513979009F120E /* Insights.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Insights.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2EB32D6D23513979009F120E /* Insights.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Insights.h; sourceTree = ""; }; 2EB32D6E23513979009F120E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; @@ -52,13 +68,11 @@ 4A6FDF7A2370781700275A41 /* InsightsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsightsTests.swift; sourceTree = ""; }; 4A6FDF7F2370B31200275A41 /* EventPayload.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = EventPayload.json; sourceTree = ""; }; 4A6FDF8523715CD300275A41 /* Date.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Date.swift; sourceTree = ""; }; - 4A7317CC23744B4A00F5D22F /* Hippolyte.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Hippolyte.framework; path = Carthage/Build/iOS/Hippolyte.framework; sourceTree = ""; }; 4A7317CE2374518100F5D22F /* InsightsTestHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsightsTestHelper.swift; sourceTree = ""; }; 4A88FF1A236898FD0025D985 /* Events.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Events.swift; sourceTree = ""; }; 4ADE281223671B35000F0BEB /* Insights.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Insights.swift; sourceTree = ""; }; 9865B6B82375D81E00ED1EA1 /* SuccessResponse.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = SuccessResponse.json; sourceTree = ""; }; B3102891236C9CF2008C9757 /* HttpClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HttpClient.swift; sourceTree = ""; }; - FD44E8572628146500A31794 /* Hippolyte.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Hippolyte.xcframework; path = Carthage/Build/Hippolyte.xcframework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -66,6 +80,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 11B7FF93282B47EF005522A7 /* Hippolyte.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -74,7 +89,6 @@ buildActionMask = 2147483647; files = ( 2EB32DEA23579E47009F120E /* Insights.framework in Frameworks */, - FD44E8582628146500A31794 /* Hippolyte.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -141,8 +155,7 @@ 2EB32DE923579E47009F120E /* Frameworks */ = { isa = PBXGroup; children = ( - FD44E8572628146500A31794 /* Hippolyte.xcframework */, - 4A7317CC23744B4A00F5D22F /* Hippolyte.framework */, + 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */, ); name = Frameworks; sourceTree = ""; @@ -195,6 +208,7 @@ 2EB32D6723513979009F120E /* Frameworks */, 2EB32D6823513979009F120E /* Resources */, 4A72C78C2369BC8500FC7A7E /* SwiftLint */, + 11B7FF95282B47EF005522A7 /* Embed Frameworks */, ); buildRules = ( ); @@ -230,7 +244,7 @@ isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1030; - LastUpgradeCheck = 1030; + LastUpgradeCheck = 1330; ORGANIZATIONNAME = Hyperwallet; TargetAttributes = { 2EB32D6923513979009F120E = { @@ -365,6 +379,7 @@ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; @@ -391,7 +406,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -429,6 +444,7 @@ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; @@ -449,7 +465,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = iphoneos; @@ -475,7 +491,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Sources/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -507,7 +523,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Sources/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -534,7 +550,7 @@ "$(PROJECT_DIR)/Carthage/Build/iOS", ); INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -558,7 +574,7 @@ "$(PROJECT_DIR)/Carthage/Build/iOS", ); INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/Insights.xcodeproj/xcshareddata/xcschemes/Insights.xcscheme b/Insights.xcodeproj/xcshareddata/xcschemes/Insights.xcscheme index 8f7199e..a9cec31 100755 --- a/Insights.xcodeproj/xcshareddata/xcschemes/Insights.xcscheme +++ b/Insights.xcodeproj/xcshareddata/xcschemes/Insights.xcscheme @@ -1,6 +1,6 @@ Date: Wed, 11 May 2022 12:24:33 -0700 Subject: [PATCH 4/5] remove framework --- Insights.xcodeproj/project.pbxproj | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Insights.xcodeproj/project.pbxproj b/Insights.xcodeproj/project.pbxproj index 2828522..18e60b3 100644 --- a/Insights.xcodeproj/project.pbxproj +++ b/Insights.xcodeproj/project.pbxproj @@ -3,12 +3,10 @@ archiveVersion = 1; classes = { }; - objectVersion = 52; + objectVersion = 50; objects = { /* Begin PBXBuildFile section */ - 11B7FF93282B47EF005522A7 /* Hippolyte.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */; }; - 11B7FF94282B47EF005522A7 /* Hippolyte.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 2EB32D7B23513979009F120E /* Insights.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB32D6D23513979009F120E /* Insights.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2EB32DA823513F84009F120E /* Insights.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 2EB32DA623513F84009F120E /* Insights.xcdatamodeld */; }; 2EB32DEA23579E47009F120E /* Insights.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EB32D6A23513979009F120E /* Insights.framework */; }; @@ -38,20 +36,6 @@ }; /* End PBXContainerItemProxy section */ -/* Begin PBXCopyFilesBuildPhase section */ - 11B7FF95282B47EF005522A7 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 11B7FF94282B47EF005522A7 /* Hippolyte.xcframework in Embed Frameworks */, - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - /* Begin PBXFileReference section */ 11B7FF92282B47EF005522A7 /* Hippolyte.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Hippolyte.xcframework; path = Carthage/Build/Hippolyte.xcframework; sourceTree = ""; }; 2EB32D6A23513979009F120E /* Insights.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Insights.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -80,7 +64,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 11B7FF93282B47EF005522A7 /* Hippolyte.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -208,7 +191,6 @@ 2EB32D6723513979009F120E /* Frameworks */, 2EB32D6823513979009F120E /* Resources */, 4A72C78C2369BC8500FC7A7E /* SwiftLint */, - 11B7FF95282B47EF005522A7 /* Embed Frameworks */, ); buildRules = ( ); @@ -480,7 +462,6 @@ 2EB32D7F23513979009F120E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Manual; @@ -512,7 +493,6 @@ 2EB32D8023513979009F120E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Manual; From 90cb923e317912278f7ed3d2eab917c093c91e37 Mon Sep 17 00:00:00 2001 From: Flavio F Mattos Date: Fri, 13 May 2022 12:28:10 -0700 Subject: [PATCH 5/5] release beta 05 --- Insights.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Insights.podspec b/Insights.podspec index 54a0b17..a237ee1 100755 --- a/Insights.podspec +++ b/Insights.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |spec| spec.name = 'Insights' - spec.version = '1.0.0-beta03' + spec.version = '1.0.0-beta05' spec.summary = 'Insights SDK for iOS Hyperwallet UI SDK to capture the events' spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-insight' spec.license = { :type => 'MIT', :file => 'LICENSE' } spec.author = { 'Hyperwallet Systems Inc' => 'devsupport@hyperwallet.com' } spec.platform = :ios - spec.ios.deployment_target = '10.0' + spec.ios.deployment_target = '13.0' spec.source = { :git => 'https://github.com/hyperwallet/hyperwallet-ios-insight.git', :tag => "#{spec.version}"} spec.source_files = 'Sources/**/*.swift' spec.requires_arc = true