Upgrade library dependencies

This commit is contained in:
Herbert Reiter
2020-12-27 16:30:08 +01:00
parent 0cb372aa26
commit 09a2fb28f7
3 changed files with 12 additions and 10 deletions
+9 -7
View File
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 29 // 29 = Android 10
compileSdkVersion 30 // 30 = Android 11
defaultConfig {
applicationId "net.moasdawiki.app"
minSdkVersion 26 // 26 = Oreo 8.0
targetSdkVersion 29 // should be same as compileSdkVersion
versionCode 19
versionName "2.3.3.0"
targetSdkVersion 30 // should be same as compileSdkVersion
versionCode 20
versionName "2.4.0.0"
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
}
sourceSets {
@@ -24,10 +24,12 @@ android {
}
dependencies {
implementation 'net.moasdawiki:moasdawiki-server:2.3.3'
// HR: Workaround für Android Studio Bug
implementation files('/daten/wissensdb/moasdawiki-server-2.4.1.jar')
//implementation 'net.moasdawiki:moasdawiki-server:2.4.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
compileOnly 'org.jetbrains:annotations:19.0.0'
testImplementation 'org.testng:testng:6.14.3'
compileOnly 'org.jetbrains:annotations:20.1.0'
testImplementation 'org.testng:testng:7.3.0'
}