From ebbe98352fdfce1e401fed5da1b178d85966a2c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Luki=C4=87?= Date: Tue, 14 Feb 2017 13:36:18 +0100 Subject: [PATCH] Added firebase crash log support for debug flavor. Updated version. --- android/.gitignore | 1 + android/app/build.gradle | 8 ++++++-- android/build.gradle | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/android/.gitignore b/android/.gitignore index 7091740..1925df1 100644 --- a/android/.gitignore +++ b/android/.gitignore @@ -10,3 +10,4 @@ /app/publishing /app/hexiwear.properties +/app/google-services.json diff --git a/android/app/build.gradle b/android/app/build.gradle index 9572b40..cf26885 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.wolkabout.hexiwear" minSdkVersion 19 targetSdkVersion 22 - versionCode 27 - versionName "1.27" + versionCode 28 + versionName "1.28" } buildTypes { release { @@ -76,6 +76,8 @@ dependencies { compile 'com.wolkabout:wolk:1.0' compile 'org.springframework.android:spring-android-rest-template:2.0.0.M3' compile 'com.fasterxml.jackson.core:jackson-databind:2.7.5' + + debugCompile 'com.google.firebase:firebase-crash:10.0.1' } apt { @@ -83,3 +85,5 @@ apt { androidManifestFile variant.outputs[0].processResources.manifestFile } } + +apply plugin: 'com.google.gms.google-services' diff --git a/android/build.gradle b/android/build.gradle index a9037f1..f9108f6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,6 +5,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' + classpath 'com.google.gms:google-services:3.0.0' } }