From d4a8da0730e671f2ff333a475a3ae844ec412426 Mon Sep 17 00:00:00 2001 From: Severiano Jaramillo Date: Tue, 5 Feb 2019 12:36:04 -0600 Subject: [PATCH] Update navigation, crashlytics and google maps libraries. --- app/build.gradle | 6 +++--- .../agorise/bitsybitshareswallet/utils/CSVGenerationTask.kt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 16973fe..738c163 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -64,7 +64,7 @@ android { dependencies { def lifecycle_version = "2.0.0" def room_version = "2.1.0-alpha04" - def nav_version = "1.0.0-alpha11" + def nav_version = "1.0.0-beta01" def rx_bindings_version = "3.0.0-alpha2" implementation fileTree(dir: 'libs', include: ['*.jar']) @@ -78,7 +78,7 @@ dependencies { implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.google.android.material:material:1.0.0' implementation 'com.google.android.gms:play-services-maps:16.0.0' - implementation 'com.google.maps.android:android-maps-utils:0.5+' + implementation 'com.google.maps.android:android-maps-utils:0.5' // AAC Lifecycle implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version" kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version" @@ -100,7 +100,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:3.12.0' implementation 'com.squareup.okhttp3:logging-interceptor:3.5.0' //Firebase - implementation 'com.google.firebase:firebase-core:16.0.6' + implementation 'com.google.firebase:firebase-core:16.0.7' implementation 'com.google.firebase:firebase-crash:16.2.1' implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8' // PDF and CSV generation diff --git a/app/src/main/java/cy/agorise/bitsybitshareswallet/utils/CSVGenerationTask.kt b/app/src/main/java/cy/agorise/bitsybitshareswallet/utils/CSVGenerationTask.kt index 7dd9f69..a5dd0ec 100644 --- a/app/src/main/java/cy/agorise/bitsybitshareswallet/utils/CSVGenerationTask.kt +++ b/app/src/main/java/cy/agorise/bitsybitshareswallet/utils/CSVGenerationTask.kt @@ -14,7 +14,7 @@ import java.text.SimpleDateFormat import java.util.* /** - * AsyncTask subclass used to move the PDF generation procedure to a background thread + * AsyncTask subclass used to move the CSV generation procedure to a background thread * and inform the UI of the progress. */ class CSVGenerationTask(context: Context) : AsyncTask, Int, String>() {