Skip to content

Commit

Permalink
migrate to ios 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomi De Lucca committed Feb 1, 2023
1 parent f5a6aef commit 9b22e0a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Example/Example_BusinessComponents.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -429,7 +429,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand All @@ -448,7 +448,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = KTXN9SX9MX;
INFOPLIST_FILE = Example_BusinessComponents/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -470,7 +470,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = KTXN9SX9MX;
INFOPLIST_FILE = Example_BusinessComponents/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
source 'https://cdn.cocoapods.org'

platform :ios, '10.0'
platform :ios, '13.0'
use_frameworks!

target 'Example_BusinessComponents' do
pod 'MLBusinessComponents', :path => '../'
#target 'Example_BusinessComponentsTests' do
#inherit! :search_paths
#end
end
end
4 changes: 2 additions & 2 deletions MLBusinessComponents.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Pod::Spec.new do |s|
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "PX Team - Juan Sanzone & Esteban Boffa"
s.source = { :git => "https://github.com/mercadolibre/mlbusiness-components-ios", :tag => s.version.to_s }
s.swift_version = '4.2'
s.platform = :ios, '10.0'
s.swift_version = '5.5'
s.platform = :ios, '13.0'
s.requires_arc = true
s.default_subspec = 'Default'
s.static_framework = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ extension MLBusinessCoverCarouselView: UICollectionViewDelegate {
delegate?.coverCarouselView(self, didSelect: items[indexPath.item], at: indexPath.item)
}

private func collectionView(_ collectionView: UICollectionView, shouldHighlightItemAt indexPath: IndexPath) -> Bool {
public func collectionView(_ collectionView: UICollectionView, shouldHighlightItemAt indexPath: IndexPath) -> Bool {
return shouldHighlightItems
}
}
Expand Down

0 comments on commit 9b22e0a

Please sign in to comment.