File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ The first demo shows the basic usage of the library. The second one shows the wa
46
46
** 1、build.gradle**
47
47
```` gradle
48
48
// appcompat-v7 is required
49
- compile 'me.yokeyword:fragmentation:1.2.4 '
49
+ compile 'me.yokeyword:fragmentation:1.2.5 '
50
50
51
51
// If you don't want to extends SupportActivity/Fragment and would like to customize your own support, just rely on fragmentation-core
52
- // compile 'me.yokeyword:fragmentation-core:1.2.4 '
52
+ // compile 'me.yokeyword:fragmentation-core:1.2.5 '
53
53
54
54
// To get SwipeBack feature, rely on both fragmentation & fragmentation-swipeback
55
- compile 'me.yokeyword:fragmentation:1.2.4 '
55
+ compile 'me.yokeyword:fragmentation:1.2.5 '
56
56
// Swipeback is based on fragmentation. Refer to SwipeBackActivity/Fragment for your Customized SupportActivity/Fragment
57
- compile 'me.yokeyword:fragmentation-swipeback:1.2.4 '
57
+ compile 'me.yokeyword:fragmentation-swipeback:1.2.5 '
58
58
59
59
// To simplify the communication between Fragments.
60
60
compile 'me.yokeyword:eventbus-activity-scope:1.1.0'
Original file line number Diff line number Diff line change @@ -52,15 +52,15 @@ A powerful library that manage Fragment for Android!
52
52
** 1. 项目下app的build.gradle中依赖:**
53
53
```` gradle
54
54
// appcompat-v7包是必须的
55
- compile 'me.yokeyword:fragmentation:1.2.4 '
55
+ compile 'me.yokeyword:fragmentation:1.2.5 '
56
56
57
57
// 如果不想继承SupportActivity/Fragment,自己定制Support,可仅依赖:
58
- // compile 'me.yokeyword:fragmentation-core:1.2.4 '
58
+ // compile 'me.yokeyword:fragmentation-core:1.2.5 '
59
59
60
60
// 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,完整的添加规则如下:
61
- compile 'me.yokeyword:fragmentation:1.2.4 '
61
+ compile 'me.yokeyword:fragmentation:1.2.5 '
62
62
// swipeback基于fragmentation, 如果是自定制SupportActivity/Fragment,则参照SwipeBackActivity/Fragment实现即可
63
- compile 'me.yokeyword:fragmentation-swipeback:1.2.4 '
63
+ compile 'me.yokeyword:fragmentation-swipeback:1.2.5 '
64
64
65
65
// Activity作用域的EventBus,更安全,可有效避免after onSavenInstanceState()异常
66
66
compile 'me.yokeyword:eventbus-activity-scope:1.1.0'
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ Activity内Fragment数大于1时,滑动返回的是Fragment,否则滑动返
10
10
1、项目下app的build.gradle中依赖:
11
11
```` gradle
12
12
// appcompat v7包是必须的
13
- compile 'me.yokeyword:fragmentation:1.2.4 '
14
- compile 'me.yokeyword:fragmentation-swipeback:1.2.4 '
13
+ compile 'me.yokeyword:fragmentation:1.2.5 '
14
+ compile 'me.yokeyword:fragmentation-swipeback:1.2.5 '
15
15
````
16
16
2、如果Activity也需要支持SwipeBack,则继承SwipeBackActivity:
17
17
```` java
You can’t perform that action at this time.
0 commit comments