Skip to content

Commit

Permalink
uploaded to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Champigny committed Apr 22, 2021
1 parent b8481cd commit 6bcd5b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,10 @@ Useful for Material Design 2

[ ![Download](https://api.bintray.com/packages/florent37/maven/shapeofview/images/download.svg) ](https://bintray.com/florent37/maven/shapeofview/)
```java
//requires with AndroidX
dependencies {
implementation 'com.github.florent37:shapeofview:(lastest version)'
}
//using maven central

//to use before AndroidX
dependencies {
implementation 'com.github.florent37:shapeofview:1.3.2'
implementation 'io.github.florent37:shapeofview:1.4.7'
}
```

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//implementation project(':shapeofview')
implementation "io.github.florent37:shapeofview:+"
implementation "io.github.florent37:shapeofview:1.4.7"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ buildscript {
ext.kotlin_version = '1.4.10'

repositories {
mavenCentral()
google()
jcenter()
}
Expand All @@ -19,9 +20,9 @@ buildscript {

allprojects {
repositories {
mavenCentral()
google()
jcenter()
mavenCentral()
}
}

Expand Down

0 comments on commit 6bcd5b3

Please sign in to comment.