Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
fenix
Commits
f0af6d6f
Commit
f0af6d6f
authored
Feb 10, 2020
by
Sebastian Kaspari
Browse files
Update Mozilla Android Components to 32.0.0-SNAPSHOT.
parent
a9d06a0b
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/org/mozilla/fenix/library/history/HistoryFragment.kt
View file @
f0af6d6f
...
...
@@ -114,7 +114,7 @@ class HistoryFragment : LibraryPageFragment<HistoryItem>(), UserInteractionHandl
historyView
.
update
(
it
)
}
viewModel
.
history
.
observe
(
this
,
Observer
{
viewModel
.
history
.
observe
(
viewLifecycleOwner
,
Observer
{
historyView
.
historyAdapter
.
submitList
(
it
)
})
}
...
...
app/src/main/java/org/mozilla/fenix/settings/sitepermissions/SitePermissionsExceptionsFragment.kt
View file @
f0af6d6f
...
...
@@ -63,7 +63,7 @@ class SitePermissionsExceptionsFragment :
val
adapter
=
ExceptionsAdapter
(
this
)
val
liveData
=
LivePagedListBuilder
(
sitePermissionsPaged
,
MAX_ITEMS_PER_PAGE
).
build
()
liveData
.
observe
(
this
,
Observer
<
PagedList
<
SitePermissions
>>
{
liveData
.
observe
(
viewLifecycleOwner
,
Observer
<
PagedList
<
SitePermissions
>>
{
if
(
it
.
isEmpty
())
{
showEmptyListMessage
()
}
else
{
...
...
buildSrc/src/main/java/Dependencies.kt
View file @
f0af6d6f
...
...
@@ -32,7 +32,7 @@ object Versions {
const
val
androidx_work
=
"2.2.0"
const
val
google_material
=
"1.1.0"
const
val
mozilla_android_components
=
"3
1
.0.0-SNAPSHOT"
const
val
mozilla_android_components
=
"3
2
.0.0-SNAPSHOT"
// Note that android-components also depends on application-services,
// and in fact is our main source of appservices-related functionality.
// The version number below tracks the application-services version
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment