Upgrade dependencies

This commit is contained in:
Herbert Reiter
2023-08-05 22:04:17 +02:00
parent 1ebbe18252
commit 6c47546d8e
+7 -7
View File
@@ -25,11 +25,11 @@ android {
dependencies {
implementation 'net.moasdawiki:moasdawiki-server:3.6.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
// androidx.appcompat:appcompat:1.5.0 causes dependency conflict, waiting for 1.6
// https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view
implementation 'androidx.appcompat:appcompat:1.4.2'
// androidx.preference 1.2.0 causes dependency conflict
implementation 'androidx.preference:preference:1.1.1'
compileOnly 'org.jetbrains:annotations:24.0.1'
testImplementation 'org.testng:testng:7.7.1'
api ('androidx.appcompat:appcompat:1.6.1') {
exclude group: 'org.jetbrains', module: 'annotations'
}
api ('androidx.preference:preference:1.2.1') {
exclude group: 'org.jetbrains', module: 'annotations'
}
compileOnly 'org.jetbrains:annotations:24.0.1'
}