Skip to content

Commit 1657352

Browse files
committed
Released v1.2.2
1 parent 390013f commit 1657352

File tree

9 files changed

+268
-323
lines changed

9 files changed

+268
-323
lines changed
0 Bytes
Binary file not shown.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ allprojects{
1717
```
1818
dependencies {
1919
...
20-
implementation 'com.github.amitjangid80:multiutillib:v1.2.1'
20+
implementation 'com.github.amitjangid80:multiutillib:v1.2.2'
2121
}
2222
```
2323

@@ -35,7 +35,7 @@ dependencies {
3535
<dependency>
3636
<groupId>com.github.amitjangid80</groupId>
3737
<artifactId>multiutillib</artifactId>
38-
version>v1.2.1</version>
38+
version>v1.2.2</version>
3939
dependency>
4040
```
4141

app/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'kotlin-android'
23
apply plugin: 'com.github.dcendents.android-maven'
34

45
group = 'com.github.amitjangid80'
@@ -23,4 +24,8 @@ dependencies {
2324
implementation fileTree(include: ['*.jar'], dir: 'libs')
2425
implementation 'com.android.support:appcompat-v7:27.1.1'
2526
implementation 'com.android.support:design:27.1.1'
27+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
28+
}
29+
repositories {
30+
mavenCentral()
2631
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.amit.interfaces;
2+
3+
public interface CustomizableByCode
4+
{
5+
void setSpinningBarWidth(float width);
6+
void setSpinningBarColor(int color);
7+
void setDoneColor(int color);
8+
void setPaddingProgress(float padding);
9+
void setInitialHeight(int height);
10+
void setInitialCornerRadius(float radius);
11+
void setFinalCornerRadius(float radius);
12+
}

0 commit comments

Comments
 (0)