andorid jar/库源码解析之错误提示

目录:andorid jar/库源码解析 

错误:

  错误1:

Error: Static interface methods are only supported starting with Android N (--min-api 24)

错误原因:这是因为java8才支持静态接口方法的原因
解决办法:可以通过在app的build.gradle文件中配置使用java8编译

*.gradle

android {
  ...
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

重新运行项目即可运行成功

   错误2:

  无法使用google源。(改成使用阿里源)

maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}

  andorid jar/库源码解析之错误提示_第1张图片

  

 

参考:

https://www.jianshu.com/p/49ff4c7c1e29

你可能感兴趣的:(andorid jar/库源码解析之错误提示)