Skip to content

Commit 8d3fe6e

Browse files
authored
Merge pull request #20 from roma-apps/merge_upstream
Merge upstream
2 parents 831d439 + e5bd594 commit 8d3fe6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1786
-374
lines changed

.circleci/config.yml

Lines changed: 0 additions & 62 deletions
This file was deleted.

app/build.gradle

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "tech.bigfig.roma"
1212
minSdkVersion 21
1313
targetSdkVersion 28
14-
versionCode 67
15-
versionName "6.0"
14+
versionCode 69
15+
versionName "6.1"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
vectorDrawables.useSupportLibrary = true
1818

@@ -74,7 +74,7 @@ android {
7474
}
7575
}
7676

77-
ext.daggerVersion = '2.21'
77+
ext.daggerVersion = '2.22.1'
7878

7979
// if libraries are changed here, they should also be changed in LicenseActivity
8080
dependencies {
@@ -86,17 +86,17 @@ dependencies {
8686
implementation 'androidx.browser:browser:1.0.0'
8787
implementation 'androidx.recyclerview:recyclerview:1.0.0'
8888
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
89-
implementation 'com.google.android.material:material:1.1.0-alpha04'
89+
implementation 'com.google.android.material:material:1.1.0-alpha05'
9090
implementation 'androidx.exifinterface:exifinterface:1.0.0'
9191
implementation 'androidx.cardview:cardview:1.0.0'
9292
implementation 'androidx.preference:preference:1.1.0-alpha04'
9393
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
9494
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
9595
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
9696
implementation 'com.squareup.picasso:picasso:2.5.2'
97-
implementation 'com.squareup.okhttp3:okhttp:3.13.1'
98-
implementation 'com.squareup.okhttp3:logging-interceptor:3.13.1'
99-
implementation 'org.conscrypt:conscrypt-android:2.0.0'
97+
implementation 'com.squareup.okhttp3:okhttp:3.14.0'
98+
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.0'
99+
implementation 'org.conscrypt:conscrypt-android:2.1.0'
100100
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
101101
implementation 'com.github.connyduck:sparkbutton:2.0.0'
102102
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
@@ -122,32 +122,32 @@ dependencies {
122122
implementation "com.google.dagger:dagger-android:$daggerVersion"
123123
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
124124
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"
125-
testImplementation 'org.robolectric:robolectric:4.2'
126-
testImplementation 'org.mockito:mockito-inline:2.24.0'
125+
testImplementation 'org.robolectric:robolectric:4.2.1'
126+
testImplementation 'org.mockito:mockito-inline:2.26.0'
127127
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
128-
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
128+
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', {
129129
exclude group: 'com.android.support', module: 'support-annotations'
130130
})
131131
androidTestImplementation 'android.arch.persistence.room:testing:1.1.1'
132132
testImplementation 'androidx.test.ext:junit:1.1.0'
133133
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
134-
implementation 'io.reactivex.rxjava2:rxjava:2.2.6'
135-
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
134+
implementation 'io.reactivex.rxjava2:rxjava:2.2.8'
135+
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
136136
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
137137
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
138-
implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.1.0'
139-
implementation 'com.uber.autodispose:autodispose-ktx:1.1.0'
138+
implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.2.0'
139+
implementation 'com.uber.autodispose:autodispose-ktx:1.2.0'
140140
implementation 'androidx.paging:paging-runtime-ktx:2.1.0'
141141

142142
//Crashlytics
143143
implementation 'com.google.firebase:firebase-core:16.0.8'
144144
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
145145

146146
//Firebase Push Messages
147-
implementation 'com.google.firebase:firebase-messaging:17.5.0'
147+
implementation 'com.google.firebase:firebase-messaging:17.6.0'
148148

149149
//WorkManager
150-
implementation "androidx.work:work-runtime:2.0.0"
151-
implementation "androidx.work:work-rxjava2:2.0.0"
150+
implementation "androidx.work:work-runtime:2.0.1"
151+
implementation "androidx.work:work-rxjava2:2.0.1"
152152
}
153153
apply plugin: 'com.google.gms.google-services'

0 commit comments

Comments
 (0)