1
0
Fork 0

Bump A-C snapshot version to 0.48

This is necessary to pick up an application-services dependency bump, and unbreak master.

AwesomeBarUIView changes are needed because, evidently, a new parameter was introduced, and
not at the end.
master
Grisha Kruglov 2019-03-20 14:12:11 -07:00 committed by Colin Lee
parent 5a839167fc
commit 8eb113fa32
2 changed files with 6 additions and 6 deletions

View File

@ -62,10 +62,10 @@ class AwesomeBarUIView(
if (Settings.getInstance(container.context).showSearchSuggestions()) {
view.addProviders(
SearchSuggestionProvider(
components.search.searchEngineManager.getDefaultSearchEngine(this),
searchUseCase,
components.core.client,
SearchSuggestionProvider.Mode.MULTIPLE_SUGGESTIONS
searchEngine = components.search.searchEngineManager.getDefaultSearchEngine(this),
searchUseCase = searchUseCase,
fetchClient = components.core.client,
mode = SearchSuggestionProvider.Mode.MULTIPLE_SUGGESTIONS
)
)
}

View File

@ -22,8 +22,8 @@ private object Versions {
const val androidx_fragment = "1.1.0-alpha05"
const val androidx_navigation = "2.1.0-alpha01"
const val appservices_gradle_plugin = "0.3.1"
const val mozilla_android_components = "0.47.0-SNAPSHOT"
const val appservices_gradle_plugin = "0.4.2"
const val mozilla_android_components = "0.48.0-SNAPSHOT"
const val test_tools = "1.0.2"
const val espresso_core = "2.2.2"