Skip to content

Commit

Permalink
Update 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GIGAMOLE committed Apr 29, 2016
1 parent 62686c0 commit fa05e0f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ dependencies {
Or Gradle Maven Central:

```groovy
compile 'com.github.gigamole.arcprogressstackview:library:1.0.1'
compile 'com.github.gigamole.arcprogressstackview:library:1.0.2'
```

Or Maven:
```xml
<dependency>
<groupId>com.github.gigamole.arcprogressstackview</groupId>
<artifactId>library</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<type>aar</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
dependencies {
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1"
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.1.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Mar 17 12:05:08 EET 2016
#Fri Apr 29 09:30:08 EEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'com.android.library'
apply plugin: "com.jfrog.bintray"
apply plugin: 'com.github.dcendents.android-maven'

version = "1.0.1"
version = "1.0.2"

android {
compileSdkVersion 23
Expand All @@ -28,7 +28,7 @@ android {
minSdkVersion 8
targetSdkVersion 23
versionCode 1
versionName "1.0.1"
versionName "1.0.2"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,10 @@ public void animateProgress() {
mProgressAnimator.cancel();
mProgressAnimator.setDuration(mAnimationDuration);
mProgressAnimator.setInterpolator(mInterpolator);
mProgressAnimator.removeListener(mAnimatorListener);
mProgressAnimator.addListener(mAnimatorListener);
if (mAnimatorListener != null) {
mProgressAnimator.removeListener(mAnimatorListener);
mProgressAnimator.addListener(mAnimatorListener);
}
mProgressAnimator.start();
}

Expand All @@ -653,7 +655,7 @@ private void animateActionMoveProgress() {
mProgressAnimator.cancel();
mProgressAnimator.setDuration(DEFAULT_ACTION_MOVE_ANIMATION_DURATION);
mProgressAnimator.setInterpolator(null);
mProgressAnimator.removeListener(mAnimatorListener);
if (mAnimatorListener != null) mProgressAnimator.removeListener(mAnimatorListener);
mProgressAnimator.start();
}

Expand Down

0 comments on commit fa05e0f

Please sign in to comment.