Skip to content

Commit bf0ac33

Browse files
committed
Build fix
Change-Id: I11a56e9d6ff108c75e088983cb5884ad9aafb018
1 parent e199385 commit bf0ac33

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
5656

5757
// Used for FirestorePagingActivity
58-
implementation 'android.arch.paging:runtime:1.0.0-beta1'
58+
implementation "android.arch.paging:runtime:$pagingVersion"
5959

6060
// The following dependencies are not required to use the Firebase UI library.
6161
// They are used to make some aspects of the demo app implementation simpler for

constants.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ project.ext {
1212
supportLibraryVersion = '27.1.0'
1313
architectureVersion = '1.1.1'
1414
kotlinVersion = '1.2.30'
15+
pagingVersion = '1.0.0-beta1'
1516
}

firestore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before using this library, you should be familiar with the following topics:
1616
1. [Using the FirestoreRecyclerAdapter](#using-the-firestorerecycleradapter)
1717
1. [Adapter lifecyle](#firestorerecycleradapter-lifecycle)
1818
1. [Events](#data-and-error-events)
19-
1. [Using the FirestoreRecyclerAdapter](#using-the-firestorepagingadapter)
19+
1. [Using the FirestorePagingAdapter](#using-the-firestorepagingadapter)
2020
1. [Adapter lifecyle](#firestorepagingadapter-lifecycle)
2121
1. [Events](#paging-events)
2222

firestore/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
api "com.android.support:recyclerview-v7:$supportLibraryVersion"
2323
annotationProcessor "android.arch.lifecycle:compiler:$architectureVersion"
2424

25-
compileOnly "android.arch.paging:runtime:1.0.0-beta1"
25+
compileOnly "android.arch.paging:runtime:$pagingVersion"
2626

2727
androidTestImplementation 'junit:junit:4.12'
2828
androidTestImplementation 'com.android.support.test:runner:1.0.1'

proguard-tests/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ android {
2929

3030
dependencies {
3131
implementation "com.google.firebase:firebase-core:$firebaseVersion"
32+
implementation "android.arch.paging:runtime:$pagingVersion"
3233

3334
implementation project(path: ':auth')
3435
implementation project(path: ':firestore')

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include ':app', ':library', ':database', ':auth', ':storage', ':firestore', ':common',
2-
'proguard-tests', ':internal:lint', ':internal:lintchecks'
2+
':proguard-tests', ':internal:lint', ':internal:lintchecks'

0 commit comments

Comments
 (0)