Android开发使用Mac Apple M1 + protobuf时报错

开篇废话

Android开发使用Mac Apple M1 + protobuf时报Could not resolve all files for configuration ':app:protobufToolsLocator_protoc'. Could not find protoc-osx-aarch_64.exe

遇到的问题

今天换了MacBook Air笔记本进行开发,非常开心,因为电脑配置很高,但是随之而来了一个问题,之前好好的代码怎么跑不起来了,反而报了下面这样的错误。

Execution failed for task ':app:generateDebugProto'.
> Could not resolve all files for configuration ':app:protobufToolsLocator_protoc'.
   > Could not find protoc-3.6.1-osx-aarch_64.exe (com.google.protobuf:protoc:3.6.1).
     Searched in the following locations:
         https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/3.6.1/protoc-3.6.1-osx-aarch_64.exe

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

开始解决

简单一看,不就是找不到某个库,下载不下来了嘛,是不是代理的问题,是不是要换一下maven仓库,倒腾了半天,发现事情并不简单,其它同事从来没遇到过这样的问题,只有我换了新电脑遇到了,而新电脑的CPU是ARM架构的,看来只能去官方和github找找答案了。
github protobuf issues

protoc {
    artifact = if (project.hasProperty("protocPlatform")) {
        "com.google.protobuf:protoc:${protobuf_version}:osx-x86_64"
    } else {
        "com.google.protobuf:protoc:${protobuf_version}"
    }
}

从代码来猜测,如果我们的CPU是Apple M1的话,我们就使用添加:osx-x86_64后缀,不同的架构下去使用不同的编译器。

再次遇到问题

我在我的电脑上发现并没有解决问题,但是当时提问的人应该是解决了问题了,是不是方法更新了,如果小伙伴们用上面的方法就解决了,就不用往下看了。

再次解决问题

最终我从protobuf的使用场景之一的grpc的github找到了解决办法。
github grpc issues

protobuf {
  protoc {
    if (osdetector.os == "osx") {
      artifact = 'com.google.protobuf:protoc:${protobuf_version}:osx-x86_64'
    } else {
      artifact = 'com.google.protobuf:protoc:${protobuf_version}'
    }
  }
}

用上面的方法,最终解决了我的问题,其核心只不过是判断是否是osx的方式变了。

写在最后

如果解决了大家的问题,希望大家可以给我点个赞,您的支持是我创作的最大的动力。

protoc-gen-grpc-java-1.40.0-osx-aarch_64 mac arm芯片平台grpc生成java的支持。官网上面没有,这是基于源码编译生成的。 pom.xml:(protoc-gen-grpc-java-1.40.0.pom) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.grpc</groupId> <artifactId>protoc-gen-grpc-java</artifactId> <version>1.40.0</version> <packaging>pom</packaging> <name>io.grpc:grpc-compiler</name> <description>The protoc plugin for gRPC Java</description> <url>https://github.com/grpc/grpc-java</url> <licenses> <license> <name>Apache 2.0</name> <url>https://opensource.org/licenses/Apache-2.0</url> </license> </licenses> <developers> <developer> <id>grpc.io</id> <name>gRPC Contributors</name> <email>[email protected]</email> <url>https://grpc.io/</url> <organization>gRPC Authors</organization> <organizationUrl>https://www.google.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/grpc/grpc-java.git</connection> <developerConnection>scm:git:[email protected]:grpc/grpc-java.git</developerConnection> <url>https://github.com/grpc/grpc-java</url> </scm> </project>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值