步骤:学习网站 andriod中文API
http://android-doc.com/plus/view.php?aid=3645
下载app源码
遇到问题是需要配置:gradle
我目前使用的版本为:
classpath 'com.android.tools.build:gradle:3.1.2'对应的位置在
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip对应的位置在
第一步:也就是在这两个文件位置找到:上面的两行代码将下载的其它源码的其它版本号改为自己的版本号,我的为:
1.gradle:3.1.2 对应 gradle-4.4-all.zip即可
第二步:找到file-》setting修改gradle加载位置为本地的gradle我的为如下所示位置
版本号对应关系
第三步:编译rebuild->然后按照提示build的提示更新!
第四步:运行
报错为:Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the annotationProcessor configuration. - butterknife-7.0.1.jar (com.jakewharton:butterknife:7.0.1)
解决:在build.gradle(moudle.app)下找到如下的位置:添加画蓝线的代码
也就是:
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
successfully!
参考;https://blog.youkuaiyun.com/u013252110/article/details/52367031 (Android studio如何更改gradle版本)
https://blog.youkuaiyun.com/xuwenwen_2013/article/details/52923354
版本对应关系:https://developer.android.com/studio/releases/gradle-plugin#updating-gradle
https://blog.youkuaiyun.com/u013347784/article/details/64440308
参考:https://blog.youkuaiyun.com/huangxiaoguo1/article/details/78111857
https://www.tuicool.com/articles/QraQrib
官方错误指导:https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration?utm_source=android-studio#annotationProcessor_config