File tree Expand file tree Collapse file tree 5 files changed +12
-10
lines changed
src/main/java/com/gigamole/library Expand file tree Collapse file tree 5 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,15 @@ dependencies {
3232Or Gradle Maven Central:
3333
3434``` groovy
35- compile 'com.github.gigamole.arcprogressstackview:library:1.0.1 '
35+ compile 'com.github.gigamole.arcprogressstackview:library:1.0.2 '
3636```
3737
3838Or Maven:
3939``` xml
4040<dependency >
4141 <groupId >com.github.gigamole.arcprogressstackview</groupId >
4242 <artifactId >library</artifactId >
43- <version >1.0.1 </version >
43+ <version >1.0.2 </version >
4444 <type >aar</type >
4545</dependency >
4646```
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
77 dependencies {
88 classpath ' com.github.dcendents:android-maven-gradle-plugin:1.3'
99 classpath " com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1"
10- classpath ' com.android.tools.build:gradle:1.5 .0'
10+ classpath ' com.android.tools.build:gradle:2.1 .0'
1111 }
1212}
1313
Original file line number Diff line number Diff line change 1- # Thu Mar 17 12:05 :08 EET 2016
1+ # Fri Apr 29 09:30 :08 EEST 2016
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-2.4 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-2.10 -all.zip
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ apply plugin: 'com.android.library'
1818apply plugin : " com.jfrog.bintray"
1919apply plugin : ' com.github.dcendents.android-maven'
2020
21- version = " 1.0.1 "
21+ version = " 1.0.2 "
2222
2323android {
2424 compileSdkVersion 23
@@ -28,7 +28,7 @@ android {
2828 minSdkVersion 8
2929 targetSdkVersion 23
3030 versionCode 1
31- versionName " 1.0.1 "
31+ versionName " 1.0.2 "
3232 }
3333 buildTypes {
3434 release {
Original file line number Diff line number Diff line change @@ -639,8 +639,10 @@ public void animateProgress() {
639639 mProgressAnimator .cancel ();
640640 mProgressAnimator .setDuration (mAnimationDuration );
641641 mProgressAnimator .setInterpolator (mInterpolator );
642- mProgressAnimator .removeListener (mAnimatorListener );
643- mProgressAnimator .addListener (mAnimatorListener );
642+ if (mAnimatorListener != null ) {
643+ mProgressAnimator .removeListener (mAnimatorListener );
644+ mProgressAnimator .addListener (mAnimatorListener );
645+ }
644646 mProgressAnimator .start ();
645647 }
646648
@@ -653,7 +655,7 @@ private void animateActionMoveProgress() {
653655 mProgressAnimator .cancel ();
654656 mProgressAnimator .setDuration (DEFAULT_ACTION_MOVE_ANIMATION_DURATION );
655657 mProgressAnimator .setInterpolator (null );
656- mProgressAnimator .removeListener (mAnimatorListener );
658+ if ( mAnimatorListener != null ) mProgressAnimator .removeListener (mAnimatorListener );
657659 mProgressAnimator .start ();
658660 }
659661
You can’t perform that action at this time.
0 commit comments