Skip to content

Commit

Permalink
Merge pull request #2832 from dimagi/address-jcenter-sunsetting
Browse files Browse the repository at this point in the history
Address JCenter sunset
  • Loading branch information
avazirna authored Aug 28, 2024
2 parents 049a924 + 99961b9 commit 247ed9f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 4 deletions.
12 changes: 10 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ dependencies {
implementation fileTree(include: '*.jar', exclude: 'regexp-me.jar', dir: 'libs')
implementation(name: 'htmlspanner-custom', ext: 'aar')
implementation 'com.github.dimagi:zebra-print-android:v1.3'
implementation 'com.simprints:LibSimprints:1.0.12'
implementation (name: 'LibSimprints-1.0.12', ext: 'aar')
implementation (name: 'mapbox-android-accounts-0.2.0', ext: 'aar')
implementation (name: 'realm-android-library-4.1.1', ext: 'aar')
implementation (name: 'volley-1.1.0', ext: 'aar')
implementation (name: 'storage-2.1.0', ext: 'aar')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.cardview:cardview:1.0.0'
Expand Down Expand Up @@ -98,7 +102,7 @@ dependencies {
implementation 'com.google.firebase:firebase-messaging:21.1.0'
implementation 'com.google.firebase:firebase-crashlytics:17.2.1'
implementation 'androidx.legacy:legacy-support-core-ui:1.0.0'
implementation 'com.duolingo.open:rtl-viewpager:2.0.0'
implementation (name: 'rtl-viewpager-2.0.0', ext: 'aar')
implementation('com.github.bumptech.glide:glide:4.9.0') {
exclude group: 'com.android.support'
}
Expand All @@ -113,6 +117,10 @@ dependencies {

implementation('io.ona.kujaku:library:0.9.0') {
exclude module: 'xpp3'
exclude module: 'volley'
exclude module: 'storage'
exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-accounts'
exclude group: 'io.realm'
}
implementation 'androidx.work:work-runtime:2.7.1'
implementation 'androidx.work:work-runtime-ktx:2.7.1'
Expand Down
Binary file added app/libs/LibSimprints-1.0.12.aar
Binary file not shown.
Binary file added app/libs/mapbox-android-accounts-0.2.0.aar
Binary file not shown.
Binary file added app/libs/realm-android-library-4.1.1.aar
Binary file not shown.
Binary file added app/libs/rtl-viewpager-2.0.0.aar
Binary file not shown.
Binary file added app/libs/storage-2.1.0.aar
Binary file not shown.
Binary file added app/libs/volley-1.1.0.aar
Binary file not shown.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}

dependencies {
Expand All @@ -25,7 +24,6 @@ allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}

Expand Down

0 comments on commit 247ed9f

Please sign in to comment.