Add the JitPack repository to your build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency on module build.gradle:
dependencies {
implementation 'com.github.miladsalimiiii:CustomProgressbar:Tag'
}
<com.milad.customprogressbar.SolidCircularProgressbar
android:id="@+id/progressbar_main_solid"
android:layout_width="100dp"
android:layout_height="100dp"
app:color="@color/colorAccent"
app:timeInterval="30000"/>
In default we have fill progressbar , if you want to use stroke use app:isStroke="true".
Pay attention time unit is miliSecond.
Happy Coding . . .



