標籤:android style blog http color java 使用 io
前言
昨晚在不同的Android做最後上線測試的時候,突然一個在其他平台正常的升級提示功能報出了“java.lang.NoClassDefFoundError”的錯誤。趕緊adb logcat *:W查看錯誤記錄檔,發現了引用的第三方項目的類不存在。幸虧阿里這邊大牛多,而且普通走的比較晚,稍微說明一下我的使用方式,就給我指出了第三方工程引入方式不對的問題,這裡記錄一下。
引入工程步驟以目前非常出名的開源項目“android-pulltorefresh”為例,在我的測試專案中如何添加“android-pulltorefresh”。
建立測試專案,匯入pulltorefresh工程建立測試專案沒什麼好說的,就是你new一個android project即可。
匯入pulltorefresh工程步驟如下:
1. git clone 工程到本地目錄
git clone https://github.com/chrisbanes/Android-PullToRefresh.git
2. 匯入工程到Eclipse,具體步驟如下:
File -> Import -> Android -> Existing Android Code Into Workspace
Next -> Browser -> 選擇pulltorefresh工程目錄,finish即可(這裡只匯入library即可)
靜態匯入library庫
1. 選擇需要依賴pulltorefresh的項目 -> 按右鍵 -> Properties
2. 下方的Library欄,單擊Add,添加之前pulltorefresh的library項目即可。
3. Project -> Clean項目即可。
驗證檢查是否正確匯入第三方項目,可以查看項目本身的project.properties檔案,如下所示:
# This file is automatically generated by Android Tools.# Do not modify this file -- YOUR CHANGES WILL BE ERASED!## This file must be checked in Version Control Systems.## To customize properties used by the Ant build system edit# "ant.properties", and override values to adapt the script to your# project structure.## To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt# Project target.target=android-19android.library.reference.1=../../../../tmp/Android-PullToRefresh/library
存在android.library.refreence.* 即代表你已經正確匯入了第三方工程,ENJOY!