Update navigation, crashlytics and google maps libraries.
This commit is contained in:
parent
caf909e453
commit
d4a8da0730
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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<List<TransferDetail>, Int, String>() {
|
||||
|
|
Loading…
Reference in a new issue