update gradle plugin

This commit is contained in:
Phillip Thelen 2019-04-19 11:05:14 +02:00
parent 28967504b7
commit 5bfef43cdb
3 changed files with 3 additions and 8 deletions

View file

@ -152,7 +152,7 @@ android {
buildConfigField "String", "STORE", "\"google\""
multiDexEnabled true
versionCode 2092
versionCode 2093
versionName "1.9"
}

View file

@ -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) {

View file

@ -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"