Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

For #4444: Use AndroidX browser 1.2.0-alpha07 #4440

Merged
merged 1 commit into from
Sep 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object Versions {
object AndroidX {
const val annotation = "1.1.0"
const val appcompat = "1.1.0"
const val browser = "1.0.0"
const val browser = "1.2.0-alpha07"
const val cardview = "1.0.0"
const val constraintlayout = "1.1.3"
const val core = "1.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,8 @@ abstract class AbstractCustomTabsService : CustomTabsService() {
override fun updateVisuals(sessionToken: CustomTabsSessionToken, bundle: Bundle?): Boolean {
return false
}

override fun receiveFile(sessionToken: CustomTabsSessionToken, uri: Uri, purpose: Int, extras: Bundle?): Boolean {
return false
}
}
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ permalink: /changelog/
* [Gecko](https://github.com/mozilla-mobile/android-components/blob/master/buildSrc/src/main/java/Gecko.kt)
* [Configuration](https://github.com/mozilla-mobile/android-components/blob/master/buildSrc/src/main/java/Config.kt)

* **All components**
* Increased `androidx.browser` version to `1.2.0-alpha07`.

* **feature-media**
* Playback will now be stopped and the media notification will get removed if the app's task is getting removed (app is swiped away in task switcher).

Expand Down