Update dependencies (#422)
All checks were successful
continuous-integration/drone/push Build is passing

## What changes were proposed in this pull request?

* Update dependencies

## How was this patch tested?

Manually.

Reviewed-on: #422
Co-authored-by: Amab <juanmi1982@gmail.com>
Co-committed-by: Amab <juanmi1982@gmail.com>
This commit is contained in:
Amab 2023-08-05 09:25:55 +02:00 committed by Marown
parent f45c57b456
commit 18b254da46
2 changed files with 3 additions and 4 deletions

View File

@ -39,7 +39,7 @@ if (build_param != "prod") {
android { android {
namespace 'es.ugr.swad.swadroid' namespace 'es.ugr.swad.swadroid'
compileSdkVersion 34 compileSdk 34
buildToolsVersion "34.0.0" buildToolsVersion "34.0.0"
lint { lint {
@ -68,7 +68,6 @@ android {
buildTypes { buildTypes {
prod { prod {
minifyEnabled true minifyEnabled true
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
} }
} }
@ -81,7 +80,7 @@ dependencies {
implementation 'commons-io:commons-io:2.11.0' implementation 'commons-io:commons-io:2.11.0'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation 'com.journeyapps:zxing-android-embedded:4.3.0@aar' implementation 'com.journeyapps:zxing-android-embedded:4.3.0@aar'
implementation 'com.google.zxing:core:3.5.1' implementation 'com.google.zxing:core:3.5.2'
implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.android.material:material:1.9.0' implementation 'com.google.android.material:material:1.9.0'
} }

View File

@ -5,7 +5,7 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.0.2' classpath 'com.android.tools.build:gradle:8.1.0'
} }
} }