Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temp: try autograph gcp prod signing #1

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# Android Components
android-components = "136.0.20250114093520"
android-components = "136.0.20250117095907"

# AGP
android-gradle-plugin = "8.8.0"
Expand All @@ -13,7 +13,7 @@ kotlinx-coroutines = "1.10.0"
material = "1.12.0"

# AndroidX
androidx-activity = "1.9.3"
androidx-activity = "1.10.0"
androidx-annotation = "1.9.1"
androidx-appcompat = "1.7.0"
androidx-browser = "1.8.0"
Expand All @@ -25,7 +25,7 @@ androidx-core = "1.15.0"
androidx-fragment = "1.8.5"
androidx-lifecycle = "2.8.7"
androidx-preference = "1.2.1"
androidx-recyclerview = "1.3.2"
androidx-recyclerview = "1.4.0"
androidx-swiperefreshlayout = "1.1.0"
androidx-work = "2.10.0"

Expand Down
2 changes: 1 addition & 1 deletion taskcluster/rb_taskgraph/transforms/signing_apks.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def build_signing_task(config, tasks):
"taskId": {"task-reference": "<build>"},
"taskType": "build",
"paths": list(dep.attributes["apks"].values()),
"formats": ["autograph_apk"],
"formats": ["gcp_prod_autograph_apk"],
}
]
del task["primary-dependency"]
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/rb_taskgraph/transforms/signing_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def build_signing_task(config, tasks):
"taskId": {"task-reference": "<build-bundle>"},
"taskType": "build",
"paths": [dep.attributes["aab"]],
"formats": ["autograph_aab"],
"formats": ["gcp_prod_autograph_aab"],
}]
del task["primary-dependency"]
yield task