Skip to content

Commit

Permalink
Remove jcenter and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ismaeldivita committed Apr 15, 2021
1 parent 1f969e7 commit 42973a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 30 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[ ![Download](https://api.bintray.com/packages/ismaeldivita/maven/chip-navigation-bar/images/download.svg) ](https://bintray.com/ismaeldivita/maven/chip-navigation-bar/_latestVersion)     [![Android Arsenal]( https://img.shields.io/badge/Android%20Arsenal-Chip%20Navigation%20Bar-green.svg?style=flat )]( https://android-arsenal.com/details/1/7707 )
# Chip Navigation Bar
A navigation bar widget inspired on Google [Bottom Navigation](https://material.io/design/components/bottom-navigation.html) mixed with [Chips](https://material.io/design/components/chips.html) component.

Expand Down Expand Up @@ -165,14 +164,14 @@ menu.showBadge(R.id.settings, 10000)

### Gradle

Make sure that the repositories section includes JCenter
Make sure that the repositories section includes Jitpack
```gradle
buildscript {
...
allprojects {
repositories {
jcenter()
...
maven { url 'https://jitpack.io' }
}
}
```
Add the library to the dependencies:

Expand Down
3 changes: 0 additions & 3 deletions chip-navigation-bar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ android {
}

ext {
bintrayRepo = 'maven'
bintrayName = 'chip-navigation-bar'

publishedGroupId = 'com.ismaeldivita.chipnavigation'
libraryName = 'Chip Navigation Bar'
artifact = 'chip-navigation-bar'
Expand Down
22 changes: 0 additions & 22 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,4 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
artifacts {
archives javadocJar
archives sourcesJar
}

bintray {
user = project.properties.get("bintray.user")
key = project.properties.get("bintray.apikey")

configurations = ['archives']
pkg {
repo = bintrayRepo
name = bintrayName
desc = libraryDescription
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = allLicenses
dryRun = false
publish = true
override = false
publicDownloadNumbers = true
version {
desc = libraryDescription
}
}
}

0 comments on commit 42973a1

Please sign in to comment.