savvisingh / DateRangePicker

Date Range Picker is a Calendar Picker View to show a Customized Date Range Picker with improved UI and functionality to add subtitles to the dates
Apache License 2.0
784 stars 160 forks source link

Sunsetting jcenter #91

Open Dmitry-Borodin opened 3 years ago

Dmitry-Borodin commented 3 years ago

https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ Please provide another way to access you library, many people depend on it.

CoolMind commented 3 years ago

Yes, please, add the library to Maven. Currently you can use this method.

In project's build.gradle:

buildscript {
    repositories {
        google()
        maven {url "https://plugins.gradle.org/m2/" }
    }
allprojects {
    repositories {
        google()
        maven { url 'https://jitpack.io' }
        mavenCentral()
    }
}

In app's build.gradle:

implementation 'com.github.savvisingh:DateRangePicker:master'