mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-24 06:00:49 +01:00
Merge pull request #1151 from nextcloud/50f4dependabot/gradle/com.fasterxml.jackson.core-jackson-core-2.12.3
Bump jackson-core from 2.10.1 to 2.12.3 + joda-time
This commit is contained in:
commit
42dab815af
@ -178,7 +178,7 @@ dependencies {
|
|||||||
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.2'
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.2'
|
||||||
|
|
||||||
implementation 'com.bluelinelabs:logansquare:1.3.7'
|
implementation 'com.bluelinelabs:logansquare:1.3.7'
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.1'
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
|
||||||
kapt 'com.bluelinelabs:logansquare-compiler:1.3.7'
|
kapt 'com.bluelinelabs:logansquare-compiler:1.3.7'
|
||||||
|
|
||||||
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
|
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
|
||||||
@ -224,7 +224,7 @@ dependencies {
|
|||||||
implementation 'com.github.mario.fresco:webpsupport:111'
|
implementation 'com.github.mario.fresco:webpsupport:111'
|
||||||
implementation 'com.github.mario.fresco:animated-gif:111'
|
implementation 'com.github.mario.fresco:animated-gif:111'
|
||||||
implementation 'com.github.mario.fresco:imagepipeline-okhttp3:111'
|
implementation 'com.github.mario.fresco:imagepipeline-okhttp3:111'
|
||||||
implementation group: 'joda-time', name: 'joda-time', version: '2.10.3'
|
implementation 'joda-time:joda-time:2.10.10'
|
||||||
implementation "io.coil-kt:coil:${coilKtVersion}"
|
implementation "io.coil-kt:coil:${coilKtVersion}"
|
||||||
implementation "io.coil-kt:coil-gif:${coilKtVersion}"
|
implementation "io.coil-kt:coil-gif:${coilKtVersion}"
|
||||||
implementation "io.coil-kt:coil-svg:${coilKtVersion}"
|
implementation "io.coil-kt:coil-svg:${coilKtVersion}"
|
||||||
|
@ -31,6 +31,7 @@ import org.joda.time.DateTime;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
|
public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
|
||||||
|
private static final String TAG = LoganSquareJodaTimeConverter.class.getSimpleName();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DateTime parse(JsonParser jsonParser) throws IOException {
|
public DateTime parse(JsonParser jsonParser) throws IOException {
|
||||||
@ -41,7 +42,7 @@ public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
|
|||||||
try {
|
try {
|
||||||
return DateTime.parse(dateString);
|
return DateTime.parse(dateString);
|
||||||
} catch (final RuntimeException exception) {
|
} catch (final RuntimeException exception) {
|
||||||
Log.e("NC", exception.getLocalizedMessage());
|
Log.e(TAG, exception.getLocalizedMessage(), exception);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user