From d07c0edb2a04ee574c9a45994c21659a5d712644 Mon Sep 17 00:00:00 2001 From: xuexuan <384324069@qq.com> Date: Fri, 6 Mar 2020 16:50:25 +0800 Subject: [PATCH] Update to 1.0.5 --- README.md | 12 +++++++----- README_CN.md | 12 +++++++----- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c2a8e53f..7a63becd 100755 --- a/README.md +++ b/README.md @@ -43,19 +43,22 @@ The first demo shows the basic usage of the library. The second one shows the wa         ## How do I use Fragmentation? + +## [文档](https://github.com/JantHsueh/Fragmentation/wiki) + ### Note: This is the use of androidx, if you are using the android.support, [click here `branch:master`](https://github.com/JantHsueh/Fragmentation/blob/master/README.md) **1、build.gradle** ````gradle // This is the use of androidx, if you are using the android.support: fragmentationx -> fragmentation -implementation 'me.xuexuan:fragmentationx:1.0.4' +implementation 'me.xuexuan:fragmentationx:1.0.5' // If you don't want to extends SupportActivity/Fragment and would like to customize your own support, just rely on fragmentation-core -// implementation 'me.xuexuan:fragmentationx-core:1.0.4' +// implementation 'me.xuexuan:fragmentationx-core:1.0.5' // To get SwipeBack feature, rely on both fragmentation & fragmentation-swipeback -implementation 'me.xuexuan:fragmentationx:1.0.4' +implementation 'me.xuexuan:fragmentationx:1.0.5' // Swipeback is based on fragmentation. Refer to SwipeBackActivity/Fragment for your Customized SupportActivity/Fragment -implementation 'me.xuexuan:fragmentationx-swipeback:1.0.4' +implementation 'me.xuexuan:fragmentationx-swipeback:1.0.5' // To simplify the communication between Fragments. implementation 'me.yokeyword:eventbus-activity-scope:1.1.0' @@ -99,7 +102,6 @@ public class HomeFragment extends SupportFragment { } ```` -## [WIKI](https://github.com/JantHsueh/Fragmentation/wiki) , [CHANGELOG](https://github.com/JantHsueh/Fragmentation/blob/master/CHANGELOG.md) ## LICENSE ```` diff --git a/README_CN.md b/README_CN.md index fb53a024..fbce1f36 100644 --- a/README_CN.md +++ b/README_CN.md @@ -48,20 +48,23 @@ A powerful library that manage Fragment for Android!       # 如何使用 + +## [文档](https://github.com/JantHsueh/Fragmentation/wiki) + ### 注意:以下为androidx的使用方式,如果使用的是android.support包,[点击这里`master`分支](https://github.com/JantHsueh/Fragmentation/blob/master/README_CN.md) **1. 项目下app的build.gradle中依赖:** ````gradle // 以下为androidx的使用方式,如果使用的是android.support包,fragmentationx -> fragmentation 即可 -implementation 'me.xuexuan:fragmentationx:1.0.3' +implementation 'me.xuexuan:fragmentationx:1.0.5' // 如果不想继承SupportActivity/Fragment,自己定制Support,可仅依赖: -// implementation 'me.xuexuan:fragmentationx-core:1.0.3' +// implementation 'me.xuexuan:fragmentationx-core:1.0.5' // 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,完整的添加规则如下: -implementation 'me.xuexuan:fragmentationx:1.0.3' +implementation 'me.xuexuan:fragmentationx:1.0.5' // swipeback基于fragmentation, 如果是自定制SupportActivity/Fragment,则参照SwipeBackActivity/Fragment实现即可 -implementation 'me.xuexuan:fragmentationx-swipeback:1.0.3' +implementation 'me.xuexuan:fragmentationx-swipeback:1.0.5' // Activity作用域的EventBus,通信更安全 implementation 'me.yokeyword:eventbus-activity-scope:1.1.0' @@ -105,7 +108,6 @@ public class HomeFragment extends SupportFragment { } ```` -## [进一步使用、ChangeLog,查看wiki](https://github.com/JantHsueh/Fragmentation/wiki) ## LICENSE ````