最近楼主想把项目中的访问网络的框架更新一下,于是乎就到github上去搜,于是乎就看到了OkGo,这个框架看了看写的很好本人也推荐一下,写OkGo的博主写了demo,直接在github上下载就可以了。
附OkGo的下载地址:https://github.com/jeasonlzy/okhttp-OkGo
如果不会倒得小白我大概总结了以下几个步骤:
1、下载demo
2、下载完成后解压找到app的目录
3、将路径复制,在studio中选择File->new input module,将刚才复制的路路径放进去他会自己导入相对应的依赖,当然如果出现下面的情况说明名称重复了,改一下就好了,随便什么都可以。
改名之后基本不会报错了,点击finish就可以了。
4、当然进去之后还会报错,错误情况如下不用着急。在你的build.gradle中添加
添加如下代码,重新编译一下就可以了
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
lasspath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
5、当然错误还没有完,运行的时候会报如下的错误。
Error:Execution failed for task ':OkGoapp:validateSigningMiuiDebug'.
> Keystore file D:\Android\AndroidStudioWork\ZWidgetS\appkey.jks not found for signing config 'appkey'.
其实是下载的压缩包中有个appkey.jks,没有加载到项目中,你手动将压缩包中的appkey.jks添加在项目目录下就可以了,注意是你自己的项目目录下
6、重新编译运行就可以了