您的位置:首页 > 移动开发 > Android开发

Android第三方架包.jar

2016-10-11 19:24 148 查看
第三方架包(可能会有重复):

compile 'com.android.support:design:23.4.0' //需要使用design包中view时导入(android.support.v7.widget.RecyclerView,..);

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导入的基础包

compile 'com.squareup.retrofit2:converter-scalars:2.0.0-beta4'
//如果需要retrofit访问网络获取的String字符串类型的数据导入的包

   
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4' //如果需要retrofit访问网络获取需要使用内置的gson解析时需要导入的包

compile 'io.reactivex:rxjava:1.1.10'
compile 'io.reactivex:rxandroid:1.2.1' //导入RxJava和RxAndroid的jar包

compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0' // retrofit结合rxJava使用时需要导入的jar (// .addCallAdapterFactory
(RxJavaCallAdapterFactory.create()))

compile 'com.j256.ormlite:ormlite-android:4.48' compile 'com.j256.ormlite:ormlite-core:4.48' //使用ormLite导入的jar包

//GreenDao需要导入的jar包

    
compile 'de.greenrobot:greendao:2.1.0'   android 项目中的jar 包

    
compile 'de.greenrobot:greendao-generator:2.1.0'  java项目中需要导入的jar包

compile 'com.jude:rollviewpager:1.2.9' //图片轮播

compile 'com.squareup.picasso:picasso:2.5.2' 毕加索下载图片   

1.材料设计

compile 'com.android.support:support-v4:23.4.0'

compile 'com.android.support:appcompat-v7:23.4.0'

compile 'com.android.support:design:23.4.0'

compile 'com.android.support:cardview-v7:23.4.0'

2.网络访问

compile 'com.squareup.okhttp:okhttp:2.7.5'

compile 'com.squareup.retrofit2:retrofit:2.1.0'

3.图片异步加载

compile 'com.squareup.picasso:picasso:2.5.2'

compile 'com.github.bumptech.glide:glide:3.7.0'

compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

compile 'com.facebook.fresco:fresco:0.10.0'

4.GSON解析

compile 'com.google.code.gson:gson:2.5'

compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'

5、反转注入框架

compile 'com.jakewharton:butterknife:7.0.1'

compile 'com.jakewharton:butterknife:8.0.1'  (用法与7.0.1存在小差异)

6、其他第三方自定义控件

compile 'in.srain.cube:ultra-ptr:1.0.11'

compile 'com.github.chrisbanes.photoview:library:1.2.4'

compile 'com.google.zxing:core:3.2.1'

compile 'de.hdodenhof:circleimageview:1.3.0'

compile 'org.sufficientlysecure:html-textview:1.3'

compile 'org.greenrobot:eventbus:3.0.0'

7、RxJava

compile ‘io.reactivex:rxjava:1.1.9’

compile ‘io.reactivex:rxandroid:1.2.1’

compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'

8、ORM框架

compile 'de.greenrobot:greendao:2.1.0'

compile 'com.j256.ormlite:ormlite-android:4.48'

compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'

【备注:】使用ActiveAndroid需要额外配置仓库

mavenCentral()

maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  jar 架包 第三方架包