Skip to content

Commit be6d350

Browse files
committed
Issue mozilla-mobile#2338: Update a-c to v0.55; suppress deprecation error.
1 parent 58e5bc2 commit be6d350

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/java/org/mozilla/tv/firefox/search/SearchEngineManagerFactory.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ object SearchEngineManagerFactory {
2222
fun create(app: Application): SearchEngineManager {
2323
return SearchEngineManager(listOf(engineProvider)).apply {
2424
GlobalScope.launch {
25-
@Suppress("DeferredResultUnused")
25+
@Suppress("DeferredResultUnused", "DEPRECATION") // TODO load is deprecated (#2352).
2626
load(app) // Call is used only for its side effects
2727
}
2828
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
ext.architecture_components_version = '2.0.0'
88
ext.kotlin_version = '1.3.31'
99
ext.coroutines_version = '1.0.1'
10-
ext.moz_components_version = '0.54.0'
10+
ext.moz_components_version = '0.55.0'
1111
ext.androidx_work_version = '2.0.1'
1212

1313
ext.robolectric_version = '4.0.2' // required for SDK 28.

0 commit comments

Comments
 (0)