Skip to content
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
4 changes: 2 additions & 2 deletions androidbrowserhelper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ plugins {
// Before 2.6.1, the version code was unused and was kept at 1.
// This is now being used to report metrics, and should be bumped with
// every version bump.
def VERSION = "2.7.0-alpha02";
def VERSION_CODE = 4;
def VERSION = "2.7.0-alpha03";
def VERSION_CODE = 5;

android {
namespace "com.google.androidbrowserhelper"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private static TrustedWebActivityDisplayMode getDisplayMode(String displayMode,

if (includeExperimental) {
if ("window-controls-overlay".equals(displayMode)) {
return new TrustedWebActivityDisplayMode.WindowControlsOverlay();
return new TrustedWebActivityDisplayMode.WindowControlsOverlayMode();
}
if ("tabbed".equals(displayMode)) {
return new TrustedWebActivityDisplayMode.TabbedMode();
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ agp = "8.9.1"
androidx-activity = "1.9.3"
androidx-annotation = "1.9.1"
androidx-appcompat = "1.7.0"
androidx-browser = "1.10.0-alpha01"
androidx-browser = "1.10.0-alpha02"
androidx-constraintlayout = "2.2.0"
androidx-core = "1.17.0"
androidx-recyclerview = "1.1.0"
Expand Down