diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index 25e449e..44e5e8a 100644 --- a/app/build.gradle +++ b/app/build.gradle | |||
@@ -37,8 +37,8 @@ android { | |||
37 | minSdkVersion 21 | 37 | minSdkVersion 21 |
38 | targetSdkVersion 29 | 38 | targetSdkVersion 29 |
39 | multiDexEnabled true | 39 | multiDexEnabled true |
40 | versionCode 28 | 40 | versionCode 29 |
41 | versionName '0.28' | 41 | versionName '0.29' |
42 | ndk { | 42 | ndk { |
43 | abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' | 43 | abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' |
44 | } | 44 | } |
@@ -85,9 +85,9 @@ dependencies { | |||
85 | implementation 'org.slf4j:slf4j-api:1.7.26' | 85 | implementation 'org.slf4j:slf4j-api:1.7.26' |
86 | implementation 'com.github.tony19:logback-android:2.0.0' | 86 | implementation 'com.github.tony19:logback-android:2.0.0' |
87 | // commons-configuration2:2.4 requires support for interface default methods, not available on SDK <24 | 87 | // commons-configuration2:2.4 requires support for interface default methods, not available on SDK <24 |
88 | implementation 'org.apache.commons:commons-configuration2:2.3' | 88 | implementation('org.apache.commons:commons-configuration2:2.3') { exclude group: 'commons-logging', module: 'commons-logging' } |
89 | implementation 'commons-beanutils:commons-beanutils:1.9.3' | 89 | implementation('commons-beanutils:commons-beanutils:1.9.3') { exclude group: 'commons-logging', module: 'commons-logging' } |
90 | implementation 'commons-io:commons-io:2.6' | 90 | implementation('commons-io:commons-io:2.6') { exclude group: 'commons-logging', module: 'commons-logging' } |
91 | } | 91 | } |
92 | 92 | ||
93 | repositories { | 93 | repositories { |