Fix dependencies

This commit is contained in:
2025-09-30 15:13:06 +02:00
parent 8d0bd1f853
commit b0f0417d43
2 changed files with 18 additions and 2 deletions

View File

@@ -22,7 +22,23 @@ allprojects {
google() google()
mavenCentral() mavenCentral()
// needed for some legacy libs that aren't available on mavenCentral // needed for some legacy libs that aren't available on mavenCentral
jcenter() //jcenter()
// used by:
// - com.github.BelooS:ChipsLayoutManager:v0.3.7@aar
maven { url 'https://jitpack.io' }
// used by:
// - com.fidesmo:nordpol-android:0.1.22
// - com.journeyapps:zxing-android-embedded:3.4.0
maven { url 'https://repo.spring.io/libs-milestone/' }
// used by:
// - eu.davidea:flexible-adapter:5.1.0
maven { url 'https://verve.jfrog.io/artifactory/verve-gradle-release/' }
// used by:
// - eu.davidea:flexible-adapter-ui:1.0.0-b5
maven { url 'https://repo.spring.io/plugins-release/' }
// used by:
// - eu.davidea:flexible-adapter-livedata:1.0.0-b2
maven { url 'https://maven.scijava.org/content/repositories/public/' }
} }
} }

View File

@@ -26,6 +26,6 @@ dependencies {
// recycler // recycler
implementation 'androidx.recyclerview:recyclerview:1.3.2' implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'com.beloo.widget:ChipsLayoutManager:0.3.7@aar' implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7@aar'
} }