commit c16e6f5233563ae0463355225744bd6cee615a8c
parent 58266a6f6642090496bb3daeec323f3e6e160bfe
Author: pollymce <pmceldowney@mozilla.com>
Date: Mon, 6 Oct 2025 10:21:17 +0000
Bug 1982312 - raise minSdkVersion for geckoview and dependencies. r=geckoview-reviewers,tcampbell
Differential Revision: https://phabricator.services.mozilla.com/D265618
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/mobile/android/exoplayer2/build.gradle b/mobile/android/exoplayer2/build.gradle
@@ -16,7 +16,7 @@ android {
defaultConfig {
targetSdkVersion project.ext.targetSdkVersion
- minSdkVersion 21 // this will be updated to project.ext.minSdkVersion: https://bugzilla.mozilla.org/show_bug.cgi?id=1978592
+ minSdkVersion project.ext.minSdkVersion
versionCode project.ext.versionCode
versionName project.ext.versionName
diff --git a/mobile/android/geckoview/build.gradle b/mobile/android/geckoview/build.gradle
@@ -21,7 +21,7 @@ android {
defaultConfig {
targetSdkVersion project.ext.targetSdkVersion
- minSdkVersion 21 // this will be updated to project.ext.minSdkVersion: https://bugzilla.mozilla.org/show_bug.cgi?id=1978592
+ minSdkVersion project.ext.minSdkVersion
manifestPlaceholders = project.ext.manifestPlaceholders
versionCode project.ext.versionCode
diff --git a/mobile/android/geckoview_example/build.gradle b/mobile/android/geckoview_example/build.gradle
@@ -10,7 +10,7 @@ android {
defaultConfig {
targetSdkVersion project.ext.targetSdkVersion
- minSdkVersion 21 // this will be updated to project.ext.minSdkVersion shortly: see https://bugzilla.mozilla.org/show_bug.cgi?id=1982312
+ minSdkVersion project.ext.minSdkVersion
manifestPlaceholders = project.ext.manifestPlaceholders
applicationId "org.mozilla.geckoview_example"
diff --git a/mobile/android/test_runner/build.gradle b/mobile/android/test_runner/build.gradle
@@ -10,7 +10,7 @@ android {
defaultConfig {
targetSdkVersion project.ext.targetSdkVersion
- minSdkVersion 21 // this will be updated to project.ext.minSdkVersion shortly
+ minSdkVersion project.ext.minSdkVersion
manifestPlaceholders = project.ext.manifestPlaceholders
applicationId "org.mozilla.geckoview.test_runner"