Skip to content
This repository was archived by the owner on Dec 14, 2021. It is now read-only.

Commit 6594867

Browse files
author
Robert Moore
authored
Merge pull request #13 from romoore/ios90
Update minimum iOS to 9.0
2 parents 525555f + db9d75e commit 6594867

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Diff for: .travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ env:
1111
- DESTINATION="OS=9.2,name=iPhone 6 Plus" SDK=iphonesimulator9.2
1212
- DESTINATION="OS=9.2,name=iPhone 6s" SDK=iphonesimulator9.2
1313
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SDK=iphonesimulator9.2
14-
- DESTINATION="OS=8.4,name=iPhone 6" SDK=iphonesimulator9.2
15-
- DESTINATION="OS=8.3,name=iPhone 5S" SDK=iphonesimulator9.2
16-
- DESTINATION="OS=8.2,name=iPhone 5" SDK=iphonesimulator9.2
17-
- DESTINATION="OS=8.1,name=iPhone 4s" SDK=iphonesimulator9.2
1814
before_install:
1915
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
2016
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet

Diff for: MDFScrollViewDelegateMultiplexer.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Pod::Spec.new do |s|
66
s.homepage = "https://github.com/material-foundation/material-scrollview-delegate-multiplexer-ios"
77
s.license = 'Apache 2.0'
88
s.source = { :git => "https://github.com/material-foundation/material-scrollview-delegate-multiplexer-ios.git", :tag => s.version.to_s }
9-
s.platform = :ios, '7.0'
9+
s.platform = :ios, '9.0'
1010
s.requires_arc = true
1111
s.public_header_files = 'src/*.h'
1212
s.source_files = 'src/*.{h,m}'

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ events to an ordered list of registered observers.
1010
### Requirements
1111

1212
- Xcode 7.0 or higher.
13-
- iOS SDK version 7.0 or higher.
13+
- iOS SDK version 9.0 or higher.
1414

1515
### Installation with CocoaPods
1616

Diff for: examples/app/ScrollViewDelegateMultiplexerExample.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@
423423
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
424424
GCC_WARN_UNUSED_FUNCTION = YES;
425425
GCC_WARN_UNUSED_VARIABLE = YES;
426-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
426+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
427427
MTL_ENABLE_DEBUG_INFO = YES;
428428
ONLY_ACTIVE_ARCH = YES;
429429
SDKROOT = iphoneos;
@@ -461,7 +461,7 @@
461461
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
462462
GCC_WARN_UNUSED_FUNCTION = YES;
463463
GCC_WARN_UNUSED_VARIABLE = YES;
464-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
464+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
465465
MTL_ENABLE_DEBUG_INFO = NO;
466466
SDKROOT = iphoneos;
467467
TARGETED_DEVICE_FAMILY = "1,2";
@@ -476,6 +476,7 @@
476476
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
477477
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
478478
INFOPLIST_FILE = ScrollViewDelegateMultiplexerExample/Info.plist;
479+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
479480
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
480481
PRODUCT_BUNDLE_IDENTIFIER = com.google.ScrollViewDelegateMultiplexerExample;
481482
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -488,6 +489,7 @@
488489
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489490
CLANG_ENABLE_CODE_COVERAGE = NO;
490491
INFOPLIST_FILE = ScrollViewDelegateMultiplexerExample/Info.plist;
492+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
491493
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
492494
PRODUCT_BUNDLE_IDENTIFIER = com.google.ScrollViewDelegateMultiplexerExample;
493495
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)