This repository was archived by the owner on Aug 30, 2023. It is now read-only.
File tree 6 files changed +9
-13
lines changed
examples/apps/Catalog/MotionAnimatorCatalog.xcodeproj
6 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 21
21
set -x
22
22
23
23
BAZEL_VERSION=" 0.20.0"
24
- IOS_MINIMUM_OS=" 8 .0"
24
+ IOS_MINIMUM_OS=" 9 .0"
25
25
IOS_CPUS=" i386,x86_64"
26
26
27
27
get_xcode_version_from_path () {
Original file line number Diff line number Diff line change @@ -13,10 +13,6 @@ matrix:
13
13
env : SDK="iphonesimulator11.2" DESTINATION="name=iPhone 6s,OS=10.3.1"
14
14
- osx_image : xcode9.2
15
15
env : SDK="iphonesimulator11.2" DESTINATION="name=iPhone 6s,OS=9.3"
16
- - osx_image : xcode9.2
17
- env : SDK="iphonesimulator11.2" DESTINATION="name=iPhone 6,OS=8.4"
18
- - osx_image : xcode8.3
19
- env : SDK="iphonesimulator10.3" DESTINATION="name=iPhone 6,OS=8.1"
20
16
before_install :
21
17
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
22
18
- pod install --repo-update
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ ios_ui_test(
77
77
":UnitTestsSwiftLib"
78
78
],
79
79
test_host = "@build_bazel_rules_apple//apple/testing/default_host/ios" ,
80
- minimum_os_version = "8 .0" ,
80
+ minimum_os_version = "9 .0" ,
81
81
timeout = "short" ,
82
82
visibility = ["//visibility:private" ],
83
83
)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Pod::Spec.new do |s|
6
6
s . license = "Apache 2.0"
7
7
s . homepage = "https://github.com/material-motion/motion-animator-objc"
8
8
s . source = { :git => "https://github.com/material-motion/motion-animator-objc.git" , :tag => "v" + s . version . to_s }
9
- s . platform = :ios , "8 .0"
9
+ s . platform = :ios , "9 .0"
10
10
s . requires_arc = true
11
11
12
12
s . public_header_files = "src/*.h"
Original file line number Diff line number Diff line change 1
1
![ Motion Animator Banner] ( img/motion-animator-banner.gif )
2
2
3
- > An animator for iOS 8 + that combines the best aspects of modern UIView and CALayer animation APIs.
3
+ > An animator for iOS 9 + that combines the best aspects of modern UIView and CALayer animation APIs.
4
4
5
5
[ ![ Build Status] ( https://travis-ci.org/material-motion/motion-animator-objc.svg?branch=develop )] ( https://travis-ci.org/material-motion/motion-animator-objc )
6
6
[ ![ codecov] ( https://codecov.io/gh/material-motion/motion-animator-objc/branch/develop/graph/badge.svg )] ( https://codecov.io/gh/material-motion/motion-animator-objc )
16
16
<tr ><td >🎉</td ><td >Consistent model layer value expectations.</td ></tr >
17
17
</table >
18
18
19
- The following properties can be implicitly animated using the MotionAnimator on iOS 8 and up:
19
+ The following properties can be implicitly animated using the MotionAnimator on iOS 9 and up:
20
20
21
21
<table >
22
22
<tr ><td >CALayer <tt >anchorPoint</tt ></td ></tr >
@@ -71,7 +71,7 @@ UIView.animate(withDuration: 1.0, animations: {
71
71
})
72
72
73
73
MotionAnimator.animate (withDuration : 1.0 , animations : {
74
- view.layer .cornerRadius = 10 // Works on iOS 8 and up
74
+ view.layer .cornerRadius = 10 // Works on iOS 9 and up
75
75
})
76
76
```
77
77
@@ -443,7 +443,7 @@ UIView.animate(withDuration: 0.8, animations: {
443
443
view.layer .borderWidth = 10
444
444
}, completion : nil )
445
445
446
- // This works all the way back to iOS 8 .
446
+ // This works back to iOS 9 .
447
447
MotionAnimator.animate (withDuration : 0.8 , animations : {
448
448
view.layer .borderWidth = 10
449
449
}, completion : nil )
Original file line number Diff line number Diff line change 600
600
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
601
601
GCC_WARN_UNUSED_FUNCTION = YES;
602
602
GCC_WARN_UNUSED_VARIABLE = YES;
603
- IPHONEOS_DEPLOYMENT_TARGET = 8 ;
603
+ IPHONEOS_DEPLOYMENT_TARGET = 9 ;
604
604
MTL_ENABLE_DEBUG_INFO = YES;
605
605
ONLY_ACTIVE_ARCH = YES;
606
606
SDKROOT = iphoneos;
640
640
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
641
641
GCC_WARN_UNUSED_FUNCTION = YES;
642
642
GCC_WARN_UNUSED_VARIABLE = YES;
643
- IPHONEOS_DEPLOYMENT_TARGET = 8 ;
643
+ IPHONEOS_DEPLOYMENT_TARGET = 9 ;
644
644
MTL_ENABLE_DEBUG_INFO = NO;
645
645
SDKROOT = iphoneos;
646
646
TARGETED_DEVICE_FAMILY = "1,2";
You can’t perform that action at this time.
0 commit comments