[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22321: Add temporary protoc version workaround for M1 Macbooks

pull/600/head
Matt Tighe 3 years ago committed by mergify[bot]
parent 6b5ce4d387
commit 369af67f41

@ -605,8 +605,14 @@ dependencies {
}
protobuf {
// Mac M1 workaround until we can bump the version. Dependent on A-S.
// See https://github.com/mozilla-mobile/fenix/issues/22321
protoc {
artifact = Deps.protobuf_compiler
if (osdetector.os == "osx") {
artifact = "${Deps.protobuf_compiler}:osx-x86_64"
} else {
artifact = Deps.protobuf_compiler
}
}
// Generates the java Protobuf-lite code for the Protobufs in this project. See

Loading…
Cancel
Save