live bug fix and crashlytics

This commit is contained in:
cimenmus
2018-07-03 00:55:48 +03:00
parent d7641a172b
commit 7167de674f
10 changed files with 45 additions and 8 deletions

View File

@@ -1,4 +1,9 @@
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 27
@@ -7,8 +12,8 @@ android {
applicationId "ch.pizzapp.capri"
minSdkVersion 16
targetSdkVersion 27
versionCode 8 // play store'daki version --> canlı : 7 dahili test: 6
versionName "2.1" // play store'daki version : 2.0
versionCode 9 // play store'daki version --> canlı : 8 dahili test: 6
versionName "2.11" // play store'daki version : 2.1
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
@@ -63,6 +68,9 @@ dependencies {
implementation('com.braintreepayments.api:drop-in:3.1.0') {
exclude group: 'com.braintreepayments.api', module: 'braintree'
}
implementation('com.crashlytics.sdk.android:crashlytics:2.9.4@aar') {
transitive = true;
}
testImplementation 'junit:junit:4.12'
}