Update Gradle and dependencies

This commit is contained in:
Alexander Bakker 2022-04-09 18:28:15 +02:00
parent b8fa67304a
commit d0c8c5fae4
6 changed files with 19 additions and 20 deletions

View file

@ -36,11 +36,6 @@ android {
testInstrumentationRunnerArguments clearPackageData: 'true'
}
lintOptions {
abortOnError true
disable "MissingTranslation"
checkDependencies true
}
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
@ -105,6 +100,11 @@ android {
sourceCompatibility 1.8
coreLibraryDesugaringEnabled true
}
lint {
abortOnError true
checkDependencies true
disable 'MissingTranslation'
}
}
protobuf {
@ -125,11 +125,11 @@ protobuf {
dependencies {
def androidTestVersion = '1.4.0'
def cameraxVersion = '1.0.2'
def glideVersion = '4.12.0'
def glideVersion = '4.13.1'
def guavaVersion = '31.0.1'
def hiltVersion = '2.38.1'
def hiltVersion = '2.41'
def junitVersion = '4.13.2'
def libsuVersion = '3.2.1'
def libsuVersion = '4.0.3'
annotationProcessor 'androidx.annotation:annotation:1.3.0'
annotationProcessor "com.google.dagger:hilt-compiler:$hiltVersion"
@ -166,11 +166,10 @@ dependencies {
implementation 'com.google.zxing:core:3.4.1'
implementation "com.mikepenz:iconics-core:3.2.5"
implementation 'com.mikepenz:material-design-iconic-typeface:2.2.0.5@aar'
implementation 'com.nulab-inc:zxcvbn:1.5.2'
implementation 'com.nulab-inc:zxcvbn:1.6.0'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0'
// NOTE: this is kept at an old version on purpose (something in newer versions breaks the Authenticator Plus importer)
implementation 'net.lingala.zip4j:zip4j:2.6.0'
implementation 'net.lingala.zip4j:zip4j:2.10.0'
implementation 'info.guardianproject.trustedintents:trustedintents:0.2'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
@ -189,7 +188,7 @@ dependencies {
testImplementation "androidx.test:core:${androidTestVersion}"
testImplementation "com.google.guava:guava:${guavaVersion}-jre"
testImplementation "junit:junit:${junitVersion}"
testImplementation "org.json:json:20211205"
testImplementation "org.json:json:20220320"
testImplementation 'org.robolectric:robolectric:4.7.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'