Skip to content

Commit 24064dc

Browse files
committed
Use latest version of Android Components concept-fetch
There are [two][0] [patches][1] that need to land in mozilla-central which change the API of concept-fetch. If those were to land today, it would then cause an incident where rust components are no longer able to communicate over viaduct on Android (via `RustHttpConfig`). In order to break the cyclical dependency, we need to use a published verion of AC that is not published to Fenix, so that we can consume it in app services first. [0]: https://phabricator.services.mozilla.com/D242856 [1]: https://phabricator.services.mozilla.com/D244926
1 parent 6a007c9 commit 24064dc

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## 🦊 What's Changed 🦊
66

7+
### Android
8+
- Updated to a newer version of Android Components (`139.0.20250417022706`).
9+
710
### Glean
811
- Updated to v64.0.0 ([#6649](https://github.com/mozilla/application-services/pull/6649))
912

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ buildscript {
2727
includeGroupByRegex "org\\.mozilla\\..*"
2828
}
2929
}
30+
maven {
31+
name "Mozilla Nightly"
32+
url "https://nightly.maven.mozilla.org/maven2"
33+
content {
34+
// Improve performance: only check moz maven for mozilla deps.
35+
includeGroupByRegex "org\\.mozilla\\..*"
36+
}
37+
}
3038
}
3139

3240
dependencies {
@@ -61,6 +69,14 @@ allprojects {
6169
includeGroupByRegex "org\\.mozilla\\..*"
6270
}
6371
}
72+
maven {
73+
name "Mozilla Nightly"
74+
url "https://nightly.maven.mozilla.org/maven2"
75+
content {
76+
// Improve performance: only check moz maven for mozilla deps.
77+
includeGroupByRegex "org\\.mozilla\\..*"
78+
}
79+
}
6480
}
6581
}
6682

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kotlin-compiler = "2.1.20"
1616
kotlin-coroutines = "1.10.2"
1717

1818
# Mozilla
19-
android-components = "135.0.1"
19+
android-components = "139.0.20250417022706"
2020
glean = "64.0.0"
2121
rust-android-gradle = "0.9.6"
2222

0 commit comments

Comments
 (0)