Skip to content

Commit

Permalink
1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zj565061763 committed Jun 7, 2018
1 parent b433f58 commit 67d61d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
对ObjectAnimator和AnimatorSet进行封装

## Gradle
`implementation 'com.fanwe.android:animator:1.1.2'`
`implementation 'com.fanwe.android:animator:1.1.3'`

## 关于startAsPop(boolean clone)
为了解决view没办法超出父布局边界来执行动画的问题,提供了这个方法
Expand Down
6 changes: 3 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 20180529
versionName "1.1.2"
versionCode 20180607
versionName "1.1.3"
}
buildTypes {
release {
Expand All @@ -29,7 +29,7 @@ publish {
groupId = 'com.fanwe.android'

artifactId = 'animator'
publishVersion = '1.1.2'
publishVersion = '1.1.3'
desc = 'android animator library'
website = 'https://github.com/zj565061763/animator'
}
Expand Down
1 change: 0 additions & 1 deletion lib/src/main/java/com/fanwe/lib/animator/BaseAnimator.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ abstract class BaseAnimator<T extends ExtendedPropertyAnimator> implements Exten

public BaseAnimator()
{
mObjectAnimator.setDuration(0);
mObjectAnimator.setFloatValues(0);
mObjectAnimator.addListener(new OnStartVisible());
}
Expand Down

0 comments on commit 67d61d1

Please sign in to comment.