Android常用开源项目compile

//官方 compile 'com.android.support:design:23.1.1' compile 'com.android.support:support-v4:23.1.1'//v4包 compile 'com.android.support:appcompat-v7:23.1.1'//v7包 compile 'com.android.support:recyclerview-v7:23.0.0'//5.0替代listview新特性 compile 'com.android.support:cardview-v7:23.0.0'//简单的card卡片布局 compile 'com.android.support:gridlayout-v7:23.1.1' compile 'com.android.support:palette-v7:23.1.1' compile 'com.android.support:mediarouter-v7:23.1.1'  //注解 compile 'com.jakewharton:butterknife:7.0.1'//android studio 推荐id注解 compile 'org.xutils:xutils:3.3.4'  //解析Json compile 'com.google.code.gson:gson:2.2.4'//google推荐解析后台数据Gson工具 https://github.com/alibaba/fastjson //解析歌词 https://github.com/qibin0506/OpenLRC //解析html,xml https://github.com/jhy/jsoup //http compile 'com.mcxiaoke.volley:library:1.0.19'//volley google官网接口请求框架 compile 'cn.finalteam:okhttpfinal-dm:1.2.2' compile 'com.loopj.android:android-async-http:1.5.0-SNAPSHOT'  //工具 compile 'cn.finalteam:galleryfinal:1.3.0'//galleryfinal拍照,选择相册多张图片 compile 'cn.trinea.android.common:trinea-android-common:4.2.15'//android-common基础工具类,请求,缓存等 compile 'cn.finalteam:toolsfinal:1.1.1'//工具类 compile 'cn.bmob.android:bmob-sdk:3.4.5'//后台 compile 'de.greenrobot:eventbus:2.4.1'//消息传递 compile 'de.greenrobot:greendao:2.0.0'//android db compile 'com.zhy:autolayout:1.3.6'//px布局适配 https://github.com/xiongwei-git/AndroidVideoPlayer//video https://github.com/simpligility/ksoap2-android//webservice //二维码 https://github.com/SkillCollege/QrCodeScan//结合了zbar,zxing //UI compile 'com.commit451:PhotoView:1.2.4'//可缩放拖拉的imageView compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'//去除android系统原生toobar compile 'in.srain.cube:ultra-ptr:1.0.11' //下拉刷新 compile 'com.astuetz:pagerslidingtabstrip:1.0.1'//Tab切换 compile 'com.ogaclejapan.smarttablayout:utils-v4:1.6.0@aar'//Tab切换  compile 'com.nineoldandroids:library:2.4.0'//兼容包 compile 'com.flyco.roundview:FlycoRoundView_Lib:1.1.2@aar'//Tab切换 compile 'com.flyco.tablayout:FlycoTabLayout_Lib:1.5.0@aar'//Tab切换  compile 'com.afollestad:material-dialogs:0.7.9.1'//弹框 compile 'com.github.PhilJay:MPAndroidChart:v2.1.6'//图表 compile 'com.github.lecho:hellocharts-android:v1.5.8'//图表 compile 'com.soundcloud.android:android-crop:1.0.1@aar'//单个图片选择和裁剪 compile 'com.edmodo:cropper:1.0.1'//单个图片选择和裁剪
compile 'com.yalantis:ucrop:1.1.0'//裁剪,http://www.finalshares.com/read-6796?f=gk-45
compile 'com.joanzapata.android:base-adapter-helper:1.1.11'//baseAdaptercompile "com.daimajia.swipelayout:library:1.2.0@aar"//滑动删除compile 'com.makeramen:roundedimageview:2.2.1'//圆角图片compile 'cn.aigestudio.wheelpicker:WheelPicker:1.0.1'//仿喵街滚动组件compile 'com.baoyz.actionsheet:library:1.1.5'//仿ios弹窗//imageLoadercompile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'compile 'com.squareup.picasso:picasso:2.5.2'compile 'com.github.bumptech.glide:glide:3.6.1'


附:开源项目整理 http://www.colobu.com/2014/08/15/android-components-collection/
https://github.com/Trinea/android-open-project

你可能感兴趣的:(gradle,gson,开源项目,compile,okhttp)