From 6ed8bea132639671e3db824002c05855fb49c4c7 Mon Sep 17 00:00:00 2001 From: Yuriy Budiyev Date: Thu, 11 Jan 2018 21:40:46 +0300 Subject: [PATCH] Dev --- README.md | 3 ++- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57f07c5..ed4b047 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Circular progress bar, supports animations and indeterminate mode, highly custom Add dependency: ```gradle dependencies { - implementation 'com.budiyev.android:circular-progress-bar:1.1.5' + implementation 'com.budiyev.android:circular-progress-bar:1.1.6' } ``` Define a view in your layout file: @@ -30,6 +30,7 @@ Define a view in your layout file: app:backgroundStrokeColor="#ff3f51b5" app:backgroundStrokeWidth="2dp" app:drawBackgroundStroke="false" + app:foregroundStrokeCap="butt" app:foregroundStrokeColor="#ffff4081" app:foregroundStrokeWidth="3dp" app:indeterminate="false" diff --git a/build.gradle b/build.gradle index 7ba6360..aaf22ca 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.1.5' + libraryVersion = '1.1.6' artifact = 'circular-progress-bar' developerId = 'yuriy-budiyev' developerName = 'Yuriy Budiyev' @@ -46,7 +46,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 27 - versionCode 16 + versionCode 17 versionName libraryVersion }