diff --git a/README.md b/README.md index 62f9138..1a9608d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Circular progress bar Add dependency: ```gradle dependencies { - implementation 'com.budiyev.android:circular-progress-bar:1.0.6' + implementation 'com.budiyev.android:circular-progress-bar:1.0.7' } ``` Define a view in your layout file: @@ -35,7 +35,7 @@ Define a view in your layout file: app:indeterminateArcAnimationDuration="1000" app:maximum="100" app:progress="50" - app:progressAnimationDuration="500" + app:progressAnimationDuration="100" app:startAngle="270"/> ``` diff --git a/build.gradle b/build.gradle index f4dc53b..aaa64b5 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'com.jfrog.bintray' ext { libraryName = 'CircularProgressBar' libraryDescription = 'Circular progress bar' - libraryVersion = '1.0.6' + libraryVersion = '1.0.7' artifact = 'circular-progress-bar' developerId = 'yuriy-budiyev' developerName = 'Yuriy Budiyev' @@ -46,7 +46,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 26 - versionCode 7 + versionCode 8 versionName libraryVersion }