From a9d5abec0a5d5bdd4978f223c0f6df4fc8bec5a5 Mon Sep 17 00:00:00 2001 From: Yuriy Budiyev Date: Thu, 23 Nov 2017 16:28:55 +0300 Subject: [PATCH] Dev --- README.md | 6 +++--- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4bc0f32..2bb2541 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.4' + implementation 'com.budiyev.android:circular-progress-bar:1.0.5' } ``` Define a view in your layout file: @@ -24,10 +24,10 @@ Define a view in your layout file: android:layout_width="64dp" android:layout_height="64dp" app:animateProgress="true" - app:backgroundStrokeColor="?colorPrimaryDark" + app:backgroundStrokeColor="#ff3f51b5" app:backgroundStrokeWidth="2dp" app:drawBackgroundStroke="false" - app:foregroundStrokeColor="?colorPrimary" + app:foregroundStrokeColor="#ffff4081" app:foregroundStrokeWidth="3dp" app:indeterminate="false" app:indeterminateGrowAnimationDuration="2000" diff --git a/build.gradle b/build.gradle index 7c7363e..5de599f 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.4' + libraryVersion = '1.0.5' artifact = 'circular-progress-bar' developerId = 'yuriy-budiyev' developerName = 'Yuriy Budiyev' @@ -46,7 +46,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 26 - versionCode 5 + versionCode 6 versionName libraryVersion }