Skip to content

Commit bcdb3d9

Browse files
Update to v7.0.2 and add maven-publish support
1 parent 06406e6 commit bcdb3d9

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Step 1. Add it in your root build.gradle at the end of repositories:
3535
Step 2. Add the dependency (Recommend to use maven instead of jitpack)
3636

3737
dependencies {
38-
implementation 'com.github.TutorialsAndroid:progressx:v7.0.1'
38+
implementation 'com.github.TutorialsAndroid:progressx:v7.0.2'
3939
}
4040

4141
## Download Maven Central
@@ -52,7 +52,7 @@ Step 1. Add it in your root build.gradle at the end of repositories:
5252
Step 2. Add the dependency
5353

5454
dependencies {
55-
implementation 'io.github.tutorialsandroid:progressx:7.0.1'
55+
implementation 'io.github.tutorialsandroid:progressx:7.0.2'
5656
}
5757

5858
## Usage

library/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'maven-publish'
23

34
ext {
45
PUBLISH_GROUP_ID = 'io.github.tutorialsandroid'
5-
PUBLISH_VERSION = '7.0.1'
6+
PUBLISH_VERSION = '7.0.2'
67
PUBLISH_ARTIFACT_ID = 'progressx'
78
PUBLISH_DESCRIPTION = 'A material style progress wheel that you can integrate into your app'
89
PUBLISH_URL = 'https://github.com/tutorialsandroid/progressx'

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.developer.progressx.custom"
99
minSdkVersion 23
1010
targetSdkVersion 37
11-
versionCode 10
12-
versionName "7.0.1"
11+
versionCode 11
12+
versionName "7.0.2"
1313
}
1414
buildTypes {
1515
release {

0 commit comments

Comments
 (0)