Unable to load class ‘com.google.common.collect.ImmutableSet‘. Possible causes for this unexpected

遇到的问题:

由于Android studio版本太高,在使用Butterknife注解代替findviewByID时报错。

error:

Unable to load class 'com.google.common.collect.ImmutableSet'. Possible causes for this unexpected error include:

  • Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network)
  • The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart)
  • Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

要使用Butterknife需要在app的build.gradle中添加依赖:

implementation 'com.jakewharton:butterknife:8.5.1'
implementation 'com.jakewharton:butterknife-compiler:8.5.1'

然而Android studio版本过高,在提示下将依赖的版本改为了10.1.0:

implementation 'com.jakewharton:butterknife:10.1.0'
implementation 'com.jakewharton:butterknife-compiler:10.1.0'

运行时还是报错(在网上找了一堆方法也没解决):

Unable to load class 'com.google.common.collect.ImmutableSet'. Possible causes for this unexpected error include:

  • Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network)
  • The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart)
  • Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

解决方法:

第一步:将第二个implemention改为anotationProcessor ,然后try again,

第二步:遇到了第二个问题:

Static interface methods are only supported starting with Android N (--min-a

于是百度参考博文https://blog.csdn.net/z1web/article/details/88787382

在app的build.gradle文件中配置声明,使用Java 8编译。

加入以下代码来声明:

compileOptions {
 
    sourceCompatibility JavaVersion.VERSION_1_8
 
    targetCompatibility JavaVersion.VERSION_1_8
 
}

点击Rebuild project,终于没有出现错误,可以在手机上运行了。

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值