Android 網路框架Volley JAR包生成

喝醉的毛毛蟲發表於2015-11-29

   Google I/O 2013上,谷歌釋出了Android網路通訊框架Volley,以前我都是直接使用原始碼編譯的,那麼問題來了,怎麼直接打包成jar包使用呢?

不要著急,請看如下步驟:


1、下載原始碼

git clone https://android.googlesource.com/platform/frameworks/volley


2、編譯

      gradle build 


3、編譯錯誤解決

Ran lint on variant release: 2 issues found
Ran lint on variant debug: 2 issues found
Wrote HTML report to file:/F:/study/opensource/volley/build/outputs/lint-results.html
Wrote XML report to F:\study\opensource\volley\build\outputs\lint-results.xml
:lint FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':lint'.
> Lint found errors in the project; aborting build.

Fix the issues identified by lint, or add the following to your build script to proceed with errors:
...
android {
    lintOptions {
        abortOnError false
    }
}




    解決方法: 在AndroidManifest.xml中新增許可權

<uses-permission android:name="android.permission.USE_CREDENTIALS" />


4、獲取volley.jar

      在如下目錄找到class.jar改成volley.jar
      F:\study\opensource\volley\build\intermediates\bundles\release/class.jar 



    解決方法: 在AndroidManifest.xml中新增許可權

<uses-permission android:name="android.permission.USE_CREDENTIALS" />

相關文章