From 3f962fd72f19a3e805399e98ce5b208b7944fc00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=8F=B3=E5=8F=B3?= <328903522@qq.com> Date: Sat, 8 Jul 2017 11:29:04 +0800 Subject: [PATCH] Update to 1.0.6 --- README.md | 8 ++++---- README_CN.md | 8 ++++---- fragmentation_swipeback/README.md | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 078fcd40..01a3ea11 100755 --- a/README.md +++ b/README.md @@ -46,15 +46,15 @@ The first demo shows the basic usage of the library. The second one shows the wa **1、build.gradle** ````gradle // appcompat-v7 is required -compile 'me.yokeyword:fragmentation:1.0.5' +compile 'me.yokeyword:fragmentation:1.0.6' // If you don't want to extends SupportActivity/Fragment and would like to customize your own support, just rely on fragmentation-core -// compile 'me.yokeyword:fragmentation-core:1.0.5' +// compile 'me.yokeyword:fragmentation-core:1.0.6' // To get SwipeBack feature, rely on both fragmentation & fragmentation-swipeback -compile 'me.yokeyword:fragmentation:1.0.5' +compile 'me.yokeyword:fragmentation:1.0.6' // Swipeback is based on fragmentation. Refer to SwipeBackActivity/Fragment for your Customized SupportActivity/Fragment -compile 'me.yokeyword:fragmentation-swipeback:1.0.5' +compile 'me.yokeyword:fragmentation-swipeback:1.0.6' ```` **2、 Activity extends SupportActivity** diff --git a/README_CN.md b/README_CN.md index a1dfe30a..01c3d646 100644 --- a/README_CN.md +++ b/README_CN.md @@ -51,15 +51,15 @@ A powerful library that manage Fragment for Android! **1. 项目下app的build.gradle中依赖:** ````gradle // appcompat-v7包是必须的 -compile 'me.yokeyword:fragmentation:1.0.5' +compile 'me.yokeyword:fragmentation:1.0.6' // 如果不想继承SupportActivity/Fragment,自己定制Support,可仅依赖: -// compile 'me.yokeyword:fragmentation-core:1.0.5' +// compile 'me.yokeyword:fragmentation-core:1.0.6' // 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,完整的添加规则如下: -compile 'me.yokeyword:fragmentation:1.0.5' +compile 'me.yokeyword:fragmentation:1.0.6' // swipeback基于fragmentation, 如果是自定制SupportActivity/Fragment,则参照SwipeBackActivity/Fragment实现即可 -compile 'me.yokeyword:fragmentation-swipeback:1.0.5' +compile 'me.yokeyword:fragmentation-swipeback:1.0.6' ```` **2. Activity继承SupportActivity:** diff --git a/fragmentation_swipeback/README.md b/fragmentation_swipeback/README.md index 0b41b10e..971998c0 100644 --- a/fragmentation_swipeback/README.md +++ b/fragmentation_swipeback/README.md @@ -12,8 +12,8 @@ Activity内Fragment数大于1时,滑动返回的是Fragment,否则滑动返 1、项目下app的build.gradle中依赖: ````gradle // appcompat v7包是必须的 -compile 'me.yokeyword:fragmentation:1.0.5' -compile 'me.yokeyword:fragmentation-swipeback:1.0.5' +compile 'me.yokeyword:fragmentation:1.0.6' +compile 'me.yokeyword:fragmentation-swipeback:1.0.6' ```` 2、如果Activity也需要支持SwipeBack,则继承SwipeBackActivity: ````java