mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-21 21:29:00 +00:00
update gradle plugin
This commit is contained in:
parent
28967504b7
commit
5bfef43cdb
3 changed files with 3 additions and 8 deletions
|
|
@ -152,7 +152,7 @@ android {
|
|||
buildConfigField "String", "STORE", "\"google\""
|
||||
multiDexEnabled true
|
||||
|
||||
versionCode 2092
|
||||
versionCode 2093
|
||||
versionName "1.9"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,12 +25,7 @@ public class RxErrorHandler {
|
|||
|
||||
public static Consumer<Throwable> handleEmptyError() {
|
||||
//Can't be turned into a lambda, because it then doesn't work for some reason.
|
||||
return new Consumer<Throwable>() {
|
||||
@Override
|
||||
public void accept(Throwable throwable) {
|
||||
RxErrorHandler.reportError(throwable);
|
||||
}
|
||||
};
|
||||
return RxErrorHandler::reportError;
|
||||
}
|
||||
|
||||
public static void reportError(Throwable throwable) {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ buildscript {
|
|||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.3.2'
|
||||
classpath 'com.android.tools.build:gradle:3.4.0'
|
||||
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
||||
classpath 'com.google.gms:google-services:4.2.0'
|
||||
classpath "io.realm:realm-gradle-plugin:5.10.0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue