Added firebase crash log support for debug flavor. Updated version.

This commit is contained in:
Nikola Lukić 2017-02-14 13:36:18 +01:00
parent 9f7b562bb3
commit ebbe98352f
3 changed files with 8 additions and 2 deletions

1
android/.gitignore vendored
View File

@ -10,3 +10,4 @@
/app/publishing
/app/hexiwear.properties
/app/google-services.json

View File

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

View File

@ -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'
}
}