Skip to content

Commit

Permalink
Wallet library v0.16.13 update. Various dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed Jan 13, 2021
1 parent 3ae66b4 commit 67c469c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
31 changes: 17 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ android {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
ndk {
debugSymbolLevel 'FULL'
}
// PRIVATE BUILD: uncomment (remove two slashes at the start) the following line for
// private release builds support
// signingConfig signingConfigs.debug
Expand Down Expand Up @@ -176,12 +179,12 @@ dependencies {
// overscroll
implementation 'me.everything:overscroll-decor-android:1.0.4'
// lottie
implementation 'com.airbnb.android:lottie:3.4.4'
implementation 'com.airbnb.android:lottie:3.6.0'
// Glide - image processing & caching library
implementation 'com.github.bumptech.glide:glide:4.11.0'
kapt 'com.github.bumptech.glide:compiler:4.11.0'
// giphy
implementation 'com.giphy.sdk:ui:1.3.0'
implementation 'com.giphy.sdk:ui:2.0.7'
// spring animation
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
implementation 'com.daasuu:EasingInterpolator:1.3.0'
Expand All @@ -192,15 +195,15 @@ dependencies {
implementation 'androidx.biometric:biometric:1.0.1'

// joda
implementation "net.danlew:android.joda:2.10.3"
implementation 'net.danlew:android.joda:2.10.9'

// parceler
implementation 'org.parceler:parceler-api:1.1.13'
kapt 'org.parceler:parceler:1.1.13'

// dagger - DI
implementation 'com.google.dagger:dagger:2.27'
kapt 'com.google.dagger:dagger-compiler:2.27'
implementation 'com.google.dagger:dagger:2.30.1'
kapt 'com.google.dagger:dagger-compiler:2.30.1'

// rx
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
Expand Down Expand Up @@ -229,14 +232,14 @@ dependencies {
implementation 'com.google.code.gson:gson:2.8.6'

// Retrofit2 - Popular (2020) REST API wrapper with Java interface
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
implementation 'com.squareup.retrofit2:converter-gson:2.8.1'
implementation 'com.squareup.okhttp3:logging-interceptor:4.4.0'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'

// Google services & Google drive
regularImplementation 'com.google.android.gms:play-services-auth:18.1.0'
regularImplementation 'com.google.http-client:google-http-client-gson:1.35.0'
regularImplementation('com.google.api-client:google-api-client-android:1.30.9') {
regularImplementation 'com.google.android.gms:play-services-auth:19.0.0'
regularImplementation 'com.google.http-client:google-http-client-gson:1.38.0'
regularImplementation('com.google.api-client:google-api-client-android:1.31.1') {
exclude group: 'org.apache.httpcomponents'
}
regularImplementation('com.google.apis:google-api-services-drive:v3-rev197-1.25.0') {
Expand All @@ -248,9 +251,9 @@ dependencies {
regularImplementation 'io.sentry:sentry-android:2.1.1'

// test
testImplementation 'junit:junit:4.13'
testImplementation "io.mockk:mockk:1.10.0"
androidTestImplementation "io.mockk:mockk-android:1.10.0"
testImplementation 'junit:junit:4.13.1'
testImplementation 'io.mockk:mockk:1.10.4'
androidTestImplementation 'io.mockk:mockk-android:1.10.4'
androidTestImplementation 'androidx.test:core:1.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ buildscript {
ext.kotlin_version = '1.4.10'

// build & version
ext.buildNumber = 145
ext.versionNumber = "0.5.2"
ext.buildNumber = 146
ext.versionNumber = "0.5.3"

// JNI libs
ext.libwalletVersion = "0.16.12"
ext.libwalletVersion = "0.16.13"
ext.libwalletHostURL = "https://tari-binaries.s3.amazonaws.com/libwallet/"
ext.supportedABIs = ["arm64-v8a", "armeabi-v7a", "x86_64"]

Expand Down

0 comments on commit 67c469c

Please sign in to comment.