Skip to content
This repository was archived by the owner on Feb 17, 2020. It is now read-only.

Commit 4aae2a4

Browse files
committed
update the support library to 27.1.1
1 parent 54056df commit 4aae2a4

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/src/main/java/net/squanchy/notification/NotificationService.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ internal class NotificationService(private val authService: AuthService, private
1111
fun sortedFavourites(): Observable<List<Event>> {
1212
return authService.ifUserSignedInThenObservableFrom { userId ->
1313
eventRepository.events(userId)
14-
.map { it.filter { it.favorited } }
15-
.map { it.sortedBy { it.startTime } }
16-
.take(1)
17-
.subscribeOn(Schedulers.io())
14+
.map { it.filter { it.favorited } }
15+
.map { it.sortedBy { it.startTime } }
16+
.take(1)
17+
.subscribeOn(Schedulers.io())
1818
}
1919
}
2020
}

dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ext {
22
daggerVersion = '2.15'
33
glideVersion = '4.6.1'
4-
supportLibVersion = '27.1.0'
4+
supportLibVersion = '27.1.1'
55
playServicesVersion = '12.0.1'
66
kotlinVersion = '1.2.31'
77
moshiVersion = '1.5.0'

0 commit comments

Comments
 (0)