File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ FlyTour是Android MVVM+MVP+Dagger2+Retrofit+RxJava+组件化+插件组成的双
2323
2424本框架的最大的特点就是和[ FlyCloud微服务框架] ( https://github.com/mxdldev/spring-cloud-flycloud ) 配合使用,从移动前端和服务后端的一套完整解决方案,解决了很多开发者只会前端不会后端的问题,或者只会后端不会前端的问题,有了这两套框架,我们的开发不在受制于人。
2525
26- 通过不断的升级迭代,该框架已经有了十个不同的版本,[FlyTour 5.2.0【插件化+MVP+Kotlin标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[FlyTour 5.1.0【插件化+MVP+Java标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[5.0.0【组件化+MVP+Kotlin标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[4.1.0【组件化+MVVM+RxJava+Retrofit+DataBinding升级版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[4.0.0【组件化+MVVM+RxJava+Retrofit标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[3.0.0【组件化+MVP+RxJava+Retrofit+Dagger2网络版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[2.1.0【组件化+MVP+Dagger2版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[2.0.0【组件化+MVP标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases), [1.1.0【优化版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[1.0.0【初始版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases),各个版本都有不同的特性,基本涵盖了目前Android领域的主流开发架构,能满足不同阶段的Android开发者的使用需求,大家可根据自己的项目需求去选择自己所需要的版本。
26+ 通过不断的升级迭代,该框架已经有了十个不同的版本,[FlyTour 4.2.0【组件化+MVVM+RxJava+Retrofit+DataBinding网络优化版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[FlyTour 5.2.0【插件化+MVP+Kotlin标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[FlyTour 5.1.0【插件化+MVP+Java标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[5.0.0【组件化+MVP+Kotlin标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[4.1.0【组件化+MVVM+RxJava+Retrofit+DataBinding升级版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[4.0.0【组件化+MVVM+RxJava+Retrofit标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[3.0.0【组件化+MVP+RxJava+Retrofit+Dagger2网络版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[2.1.0【组件化+MVP+Dagger2版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[2.0.0【组件化+MVP标准版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases), [1.1.0【优化版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases)、[1.0.0【初始版】](https://github.com/mxdldev/android-mvp-mvvm-flytour/releases),各个版本都有不同的特性,基本涵盖了目前Android领域的主流开发架构,能满足不同阶段的Android开发者的使用需求,大家可根据自己的项目需求去选择自己所需要的版本。
2727
2828FlyTour为组件化项目架构,它由自己的开源框架[ FlyTranslate] ( https://github.com/geduo83/FlyTranslate ) ,[ FlyAndroidMVP] ( https://github.com/geduo83/FlyAndroidMVP ) 基础上孵化出来的框架,如果需要单一结构体项目架构请下载[ FlyTranslate【MVP+RxJava+Retrofit+Dagger2】] ( https://github.com/geduo83/FlyTranslate ) 或 [ FlyFun【android mvp】] ( https://github.com/geduo83/FlyAndroidMVP )
2929
@@ -35,6 +35,11 @@ FlyTour为组件化项目架构,它由自己的开源框架[FlyTranslate](http
3535
3636### 更新日志:
3737
38+ ### [ FlyTour 4.2.0【组件化+MVVM+RxJava+Retrofit+DataBinding网络优化版】] ( https://github.com/mxdldev/android-mvp-mvvm-flytour/releases ) 2020-03-23
39+ 组件化+MVVM+DataDinding+RxJava+Retrofit,在4.1.0的MVVM架构基础上对网络请求部分的Token通过拦截器统一处理,不必每个请求都单独携带Token,为了满足广大开发者的测试需求,对服务端FlyCloud进行了全新的升级,已经将后端代码部署在了外网上,接口文档如下:[ http://106.12.61.238:8080/swagger-ui.html ] ( http://106.12.61.238:8080/swagger-ui.html )
40+ * 网络请求token传递优化
41+ * 将所有的访问接口开放在外网上
42+
3843### [ FlyTour 5.2.0【插件化+MVP+Kotlin标准版】] ( https://github.com/mxdldev/android-mvp-mvvm-flytour/releases ) 2020-03-06
3944该版本是对5.0.0的Kotlin特性和5.1.0的VirtualAPK插件化特性进行了整合
4045* 对所有功能用Kotlin重新编写
You can’t perform that action at this time.
0 commit comments