Skip to content

Commit

Permalink
change iOS deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
Decybel07 committed May 11, 2017
1 parent 35c2f6f commit b94c97d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ env:

matrix:
- DESTINATION="OS=10.3,name=iPhone 7 Plus" FRAMEWORK_SCHEME="$FRAMEWORK_IOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_IOS_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" POD_LINT="YES"
- DESTINATION="OS=9.0,name=iPhone 6" FRAMEWORK_SCHEME="$FRAMEWORK_IOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_IOS_SCHEME" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO"
- DESTINATION="OS=8.1,name=iPhone 4S" FRAMEWORK_SCHEME="$FRAMEWORK_IOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_IOS_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" POD_LINT="NO"
- DESTINATION="OS=9.1,name=iPhone 6" FRAMEWORK_SCHEME="$FRAMEWORK_IOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_IOS_SCHEME" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO"
- DESTINATION="OS=9.0,name=iPhone 5S" FRAMEWORK_SCHEME="$FRAMEWORK_IOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_IOS_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" POD_LINT="NO"

- DESTINATION="OS=10.2,name=Apple TV 1080p" FRAMEWORK_SCHEME="$FRAMEWORK_TVOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_TVOS_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" POD_LINT="NO"
- DESTINATION="OS=9.0,name=Apple TV 1080p" FRAMEWORK_SCHEME="$FRAMEWORK_TVOS_SCHEME" EXAMPLE_SCHEME="$EXAMPLE_TVOS_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" POD_LINT="NO"
Expand Down
6 changes: 4 additions & 2 deletions Example/Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,8 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -1032,7 +1033,8 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
4 changes: 2 additions & 2 deletions L10n-swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ Pod::Spec.new do |s|
* Use .l10n() to localized any string, int and double
DESC

s.homepage = 'https://Decybel07.github.io/L10n-swift'
s.homepage = 'https://Decybel07.github.io/L10n-swift/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adrian Bobrowski' => '[email protected]' }
s.source = { :git => "https://github.com/Decybel07/L10n-swift.git", :tag => s.version }

s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
Expand Down
4 changes: 2 additions & 2 deletions L10n.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -453,7 +453,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pod try L10n-swift

## Requirements

- iOS 8.0+ | macOS 10.10+ | tvOS 9.0+ | watchOS 2.0+
- iOS 9.0+ | macOS 10.10+ | tvOS 9.0+ | watchOS 2.0+
- Swift 3.0+

## Communication
Expand Down

0 comments on commit b94c97d

Please sign in to comment.