常用的實用工具jar包匯入
阿新 • • 發佈:2018-10-31
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'//需要使用design包中view時匯入
compile 'com.squareup.okhttp:okhttp:2.7.5' //使用okhttp框架匯入jar
compile 'com.github.bumptech.glide:glide:3.7.0'//載入網路圖片使用glide
compile 'com.squareup.retrofit2:retrofit:2.1.0'//使用retrofit匯入的基礎包
//如果需要retrofit訪問網路獲取的String字串型別的資料匯入的包
compile 'com.squareup.retrofit2:converter-scalars:2.0.0-beta4'
//如果需要retrofit訪問網路獲取需要使用內建的gson解析時需要匯入的包
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
//匯入RxJava和RxAndroid的jar包
compile 'io.reactivex:rxjava:1.1.10'
compile 'io.reactivex:rxandroid:1.2.1'
// .addCallAdapterFactory(RxJavaCallAdapterFactory.create())
// retrofit結合rxJava使用時需要匯入的jar
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
//使用ormLite匯入的jar包
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
//GreenDao需要匯入的jar包
compile 'de.greenrobot:greendao:2.1.0' android 專案中的jar 包
compile 'de.greenrobot:greendao-generator:2.1.0' java專案中需要匯入的jar包
//自動生成viewholder,findviewbyid,onclick
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:design:24.2.0'
//畢加索,圖片載入
compile 'com.squareup.picasso:picasso:2.5.2'
//網路載入
compile 'com.squareup.okhttp3:okhttp:3.4.1'
//解析
compile 'com.alibaba:fastjson:1.2.17'
//圖片載入
compile 'com.facebook.fresco:fresco:0.13.0'
//下拉重新整理
compile project(':pullToRefreshlibrary')
//輕量資料庫
compile files('libs/xUtils-2.6.14.jar')
}
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'//需要使用design包中view時匯入
compile 'com.squareup.okhttp:okhttp:2.7.5' //使用okhttp框架匯入jar
compile 'com.github.bumptech.glide:glide:3.7.0'//載入網路圖片使用glide
compile 'com.squareup.retrofit2:retrofit:2.1.0'//使用retrofit匯入的基礎包
//如果需要retrofit訪問網路獲取的String字串型別的資料匯入的包
compile 'com.squareup.retrofit2:converter-scalars:2.0.0-beta4'
//如果需要retrofit訪問網路獲取需要使用內建的gson解析時需要匯入的包
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
//匯入RxJava和RxAndroid的jar包
compile 'io.reactivex:rxjava:1.1.10'
compile 'io.reactivex:rxandroid:1.2.1'
// .addCallAdapterFactory(RxJavaCallAdapterFactory.create())
// retrofit結合rxJava使用時需要匯入的jar
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
//使用ormLite匯入的jar包
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
//GreenDao需要匯入的jar包
compile 'de.greenrobot:greendao:2.1.0' android 專案中的jar 包
compile 'de.greenrobot:greendao-generator:2.1.0' java專案中需要匯入的jar包
//自動生成viewholder,findviewbyid,onclick
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:design:24.2.0'
//畢加索,圖片載入
compile 'com.squareup.picasso:picasso:2.5.2'
//網路載入
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.alibaba:fastjson:1.2.17'
//圖片載入
compile 'com.facebook.fresco:fresco:0.13.0'
//下拉重新整理
compile project(':pullToRefreshlibrary')
//輕量資料庫
compile files('libs/xUtils-2.6.14.jar')
}