2015年Android开发新技术盘点

     又到年末。 利用中午的时间,汇总盘点一下今年Android开发方面的新技术。感觉如今Android开发没有曾经那么纯粹了,出现了非常多新的开发模式。

2015年影响比較普遍的新技术应该就是Material Design了,毕竟如今的新手机系统基本都升到Android5.1了, 个别的手机已经升到Android 6了,其他比如DataBinding, RxAndroid。React native等的眼下还是非常小众,没有流行起来。

    这几年在前端开发领域高速发展的影响下。Android开发也出现了非常多原生的相似框架和插件,比如受AngularJS MVVM模式启示的Android官方Data Binding,RoboBinding框架等; 基于Dart语言,和React native相似的Flutter(Sky)框架; 

     

以下是汇总的一些新技术

新框架,新插件,新控件



  • 性能优化
    Android性能优化典范
    youtube.com/playlist?
  • 架构&工具
    blog.8thlight.com/uncle
    fernandocejas.com/2014/
    bboyfeiyu/android-tech-frontier · GitHub
    android10/Android-CleanArchitecture · GitHub
    ReactiveX/RxAndroid · GitHub
    square/dagger · GitHub
    android-cn/android-open-project-analysis · GitHub
  • 插件化/组件化
    houkx/android-pluginmgr · GitHub
    singwhatiwanna/dynamic-load-apk · GitHub
    Qihoo360/DroidPlugin · GitHub
  • 安全/黑科技
    『Android 安全』
    进击的Android注入术《一》
    rovo89/Xposed · GitHub
    alibaba/AndFix · GitHub
    alibaba/dexposed · GitHub
    skylot/jadx · GitHub
    pxb1988/dex2jar · GitHub
    crittercism/dexmaker · GitHub
    mihaip/dex-method-counts · GitHub

  • 最后放上Android新项目用到的开源库,新东西非常多啊

     compile "com.android.support:appcompat-v7:${supportLibVersion}"
      compile "com.android.support:support-v4:${supportLibVersion}"
      compile "com.android.support:cardview-v7:${supportLibVersion}"
      compile "com.android.support:design:${supportLibVersion}"
      compile 'com.prolificinteractive:material-calendarview:1.1.0'
      compile "com.android.support:support-annotations:${supportLibVersion}"
    //    debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3'
    //    releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3'
      compile 'com.google.code.gson:gson:2.4'
      compile 'com.github.bumptech.glide:glide:3.6.0'
      compile 'com.github.bumptech.glide:volley-integration:1.3.1@aar'
      compile 'me.iwf.photopicker:PhotoPicker:0.2.9@aar'
      compile 'com.jakewharton:butterknife:7.0.1'
      compile 'com.mcxiaoke.volley:library:1.0.19'
      compile 'com.google.zxing:core:3.2.0'
      compile 'com.journeyapps:zxing-android-embedded:3.0.2@aar'
      compile 'com.tencent.bugly:crashreport:1.2.8'
      //    compile 'io.realm:realm-android:0.86.1'   

    原文地址:https://www.cnblogs.com/tlnshuju/p/7221411.html