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'}

  

  

 

参考:

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

posted @ 2020-04-26 14:26  Supper_litt  阅读(174)  评论(0编辑  收藏  举报