File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed
src/main/java/com/wang/avi Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ android {
8
8
applicationId " com.wang.avi.sample"
9
9
minSdkVersion 11
10
10
targetSdkVersion 23
11
- versionCode 22
12
- versionName " 2.0.2 "
11
+ versionCode 23
12
+ versionName " 2.0.3 "
13
13
}
14
14
buildTypes {
15
15
release {
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
defaultConfig {
8
8
minSdkVersion 11
9
9
targetSdkVersion 23
10
- versionCode 22
11
- versionName " 2.0.2 "
10
+ versionCode 23
11
+ versionName " 2.0.3 "
12
12
}
13
13
buildTypes {
14
14
release {
@@ -26,7 +26,7 @@ dependencies {
26
26
27
27
ext {
28
28
PUBLISH_GROUP_ID = ' com.wang.avi'
29
- PUBLISH_VERSION = ' 2.0.2 '
29
+ PUBLISH_VERSION = ' 2.0.3 '
30
30
PUBLISH_DES = ' Nice loading animations for Android'
31
31
LIB_NAME = ' AVLoadingIndicatorView'
32
32
Original file line number Diff line number Diff line change @@ -106,13 +106,12 @@ private void startAnimators() {
106
106
}
107
107
108
108
private void stopAnimators () {
109
- if (mAnimators ==null ){
110
- return ;
111
- }
112
- for (ValueAnimator animator : mAnimators ) {
113
- if (animator != null && animator .isStarted ()) {
114
- animator .removeAllUpdateListeners ();
115
- animator .end ();
109
+ if (mAnimators !=null ){
110
+ for (ValueAnimator animator : mAnimators ) {
111
+ if (animator != null && animator .isStarted ()) {
112
+ animator .removeAllUpdateListeners ();
113
+ animator .end ();
114
+ }
116
115
}
117
116
}
118
117
}
You can’t perform that action at this time.
0 commit comments