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

Android通用框架设计与完整电商APP开发

2018-02-02 22:21 405 查看
开源框架:

字体开源框架:

阿里巴巴矢量图标库

Font Awesome图标库,基于css样式,其实还是.ttf的映射

//Fragment依赖

    compile 'me.yokeyword:fragmentation:1.0.3'

    compile 'me.yokeyword:fragmentation-swipeback:1.0.3'   //在边缘滑动,可以回到上一个页面的库

    //字体图标

    compile 'com.joanzapata.iconify:android-iconify-ionicons:2.2.2'

    compile 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2'

    //ButterKnife依赖

    compile 'com.jakewharton:butterknife:8.6.0'

    annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'

    //网络请求依赖

    compile 'com.squareup.okio:okio:1.13.0'

    compile 'com.squareup.okhttp3:okhttp:3.8.1'

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

    compile 'com.squareup.retrofit2:converter-scalars:2.3.0'

    //Loader依赖

    compile 'com.wang.avi:library:2.1.3'

    //JSON依赖Android版

    compile 'com.alibaba:fastjson:1.1.57.android'

    //Log

    compile 'com.orhanobut:logger:2.1.1'

    //数据库依赖

    compile 'org.greenrobot:greendao-generator:3.2.2'

    compile 'org.greenrobot:greendao:3.2.2'

    //微信依赖(包含统计)

    compile 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:1.3.4'

    //沉浸式状态栏

    compile 'com.github.niorgai:StatusBarCompat:2.1.3'

    //Google AutoValue

    provided 'com.google.auto.value:auto-value:1.4.1'

    annotationProcessor "com.google.auto.value:auto-value:1.4.1"

    //工具包

    compile 'com.blankj:utilcode:1.7.1'

    //动态权限处理

    compile 'com.github.hotchemi:permissionsdispatcher:2.4.0'

    annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0'

    //图片剪裁

    compile 'com.github.yalantis:ucrop:2.2.1-native'

    //二维码扫描

    compile 'me.dm7.barcodescanner:zbar:1.9.3'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: