Skip to content

Commit deffdf0

Browse files
committed
Fixed dependecy bug
1 parent 008b124 commit deffdf0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ allprojects {
2424

2525
```groovy
2626
dependencies {
27-
implementation 'com.github.devmike01:PageStepIndicator:1.0.0'
27+
implementation 'com.github.devmike01:PageStepIndicator:1.1.0'
2828
}
2929
```
3030

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ buildscript {
99
dependencies {
1010
classpath 'com.android.tools.build:gradle:3.2.1'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // Add this line
1213

1314
// NOTE: Do not place your application dependencies here; they belong
1415
// in the individual module build.gradle files
@@ -19,6 +20,7 @@ allprojects {
1920
repositories {
2021
google()
2122
jcenter()
23+
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
2224
}
2325
}
2426

pagestepindicator/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ apply plugin: 'com.android.library'
22

33
apply from: rootProject.file('dependecy.gradle')
44

5-
group='com.github.devmike01'
5+
apply plugin: 'com.github.dcendents.android-maven'
6+
7+
group='com.github.devmike01.pagestepindicator'
68

79

810
android {

0 commit comments

Comments
 (0)