Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelMess committed Nov 12, 2021
1 parent c7d9884 commit 2c80e0f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ dependencies {
kapt "androidx.room:room-compiler:$roomVersion"
// RxJava support for Room
implementation "androidx.room:room-rxjava2:$roomVersion"
kapt 'androidx.annotation:annotation:1.1.0'
kapt 'androidx.annotation:annotation:1.2.0'

implementation "androidx.preference:preference:$androidXPrefVersion"
implementation "androidx.preference:preference-ktx:$androidXPrefVersion"
Expand Down Expand Up @@ -165,7 +165,7 @@ dependencies {
//Detect memory leaks
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.6'

implementation 'org.apache.commons:commons-compress:1.18'
implementation "org.apache.commons:commons-compress:$commonsCompressVersion"

implementation "com.github.junrar:junrar:$junrarVersion"

Expand All @@ -192,7 +192,7 @@ dependencies {

implementation 'org.greenrobot:eventbus:3.1.1'

implementation 'com.android.volley:volley:1.1.1'
implementation 'com.android.volley:volley:1.2.1'

implementation 'eu.chainfire:libsuperuser:1.0.0.+'

Expand Down Expand Up @@ -238,7 +238,7 @@ dependencies {
// Because RxAndroid releases are few and far between, it is recommended you also
// explicitly depend on RxJava's latest version for bug fixes and new features.
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
implementation group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.1.1'
implementation group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.9'

implementation project(':commons_compress_7z')
implementation project(':file_operations')
Expand Down
17 changes: 9 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,26 @@ buildscript {
sshjVersion = '0.32.0'
jcifsVersion = '2.1.6'
fabSpeedDialVersion = '3.1.1'
roomVersion = '2.2.5'
roomVersion = '2.3.0'
bouncyCastleVersion = '1.68'
awaitilityVersion = "3.1.6"
androidMaterialVersion = "1.3.0"
androidXFragmentVersion = "1.3.0"
androidXAppCompatVersion = "1.2.0"
androidXTestVersion = "1.3.0"
androidXTestExtVersion = "1.1.2"
androidMaterialVersion = "1.4.0"
androidXFragmentVersion = "1.3.6"
androidXAppCompatVersion = "1.3.1"
androidXTestVersion = "1.4.0"
androidXTestExtVersion = "1.1.3"
junitVersion = "4.13.2"
slf4jVersion = "1.7.25"
mockitoVersion = "3.9.0"
mockitoKotlinVersion = "3.2.0"
androidBillingVersion = "4.0.0"
junrarVersion = "7.4.0"
zip4jVersion = "2.6.4"
espressoVersion = "3.3.0"
espressoVersion = "3.4.0"
androidXPrefVersion = "1.1.1"
materialDialogsVersion = "0.9.6.0"
jacocoVersion = "0.8.7"
commonsCompressVersion = "1.20"
}
repositories {
google()
Expand All @@ -37,7 +38,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'com.hiya:jacoco-android:0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
classpath "com.project.starter:easylauncher:4.0.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
3 changes: 1 addition & 2 deletions commons_compress_7z/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ android {

defaultConfig {
minSdkVersion 14
targetSdkVersion 28

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -21,6 +20,6 @@ android {
}

dependencies {
implementation 'org.apache.commons:commons-compress:1.18'
implementation "org.apache.commons:commons-compress:$commonsCompressVersion"
implementation 'org.tukaani:xz:1.8'
}
4 changes: 1 addition & 3 deletions file_operations/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ apply plugin: 'kotlin-android'

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"

defaultConfig {
minSdkVersion 14
targetSdkVersion 30

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -47,7 +45,7 @@ android {
}

dependencies {
implementation 'org.apache.commons:commons-compress:1.18'
implementation "org.apache.commons:commons-compress:$commonsCompressVersion"

implementation "com.github.junrar:junrar:$junrarVersion"

Expand Down

0 comments on commit 2c80e0f

Please sign in to comment.