You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
@@ -18,7 +17,7 @@ It is designed for "Single Activity + Multi-Fragments" and "Multi-FragmentActivi
18
17
## Demo
19
18
The first demo shows the basic usage of the library. The second one shows the way to implement an app which is similar to Instagram. Complicated nested fragments' usage demo are also showed.
@@ -37,34 +36,34 @@ The first demo shows the basic usage of the library. The second one shows the wa
37
36
38
37
**6. Easily manage Fragment transition animations**
39
38
40
-
**7. To simplify the communication between Fragment([EventBusActivityScope module](https://github.com/YoKeyword/Fragmentation/blob/master/eventbus_activity_scope/README.md))**
39
+
**7. To simplify the communication between Fragment([EventBusActivityScope module](https://github.com/JantHsueh/Fragmentation/blob/master/eventbus_activity_scope/README.md))**
41
40
42
-
**8. Support SwipeBack to pop(Fragmentation_SwipeBack module [README](https://github.com/YoKeyword/Fragmentation/blob/master/fragmentation_swipeback/README.md))**
41
+
**8. Support SwipeBack to pop(Fragmentation_SwipeBack module [README](https://github.com/JantHsueh/Fragmentation/blob/master/fragmentation_swipeback/README.md))**
### Note: This is the use of androidx, if you are using the android.support, [click here `branch:master`](https://github.com/YoKeyword/Fragmentation/blob/master/README.md)
46
+
### 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)
48
47
**1、build.gradle**
49
48
````gradle
50
49
// This is the use of androidx, if you are using the android.support: fragmentationx -> fragmentation
**2. Activity `extends` SupportActivity or `implements` ISupportActivity:(refer to [MySupportActivity](https://github.com/YoKeyword/Fragmentation/blob/master/demo/src/main/java/me/yokeyword/sample/demo_flow/base/MySupportActivity.java))**
66
+
**2. Activity `extends` SupportActivity or `implements` ISupportActivity:(refer to [MySupportActivity](https://github.com/JantHsueh/Fragmentation/blob/master/demo/src/main/java/me/yokeyword/sample/demo_flow/base/MySupportActivity.java))**
68
67
````java
69
68
// since v1.0.0, forced extends of SupportActivity is not required, you can use interface + delegate to implement your own SupportActivity
70
69
publicclassMainActivityextendsSupportActivity {
@@ -87,7 +86,7 @@ public class MainActivity extends SupportActivity {
87
86
}
88
87
````
89
88
90
-
**3. Fragment `extends` SupportFragment or `implements` ISupportFragment:(refer to [MySupportFragment](https://github.com/YoKeyword/Fragmentation/blob/master/demo/src/main/java/me/yokeyword/sample/demo_flow/base/MySupportFragment.java)):**
89
+
**3. Fragment `extends` SupportFragment or `implements` ISupportFragment:(refer to [MySupportFragment](https://github.com/JantHsueh/Fragmentation/blob/master/demo/src/main/java/me/yokeyword/sample/demo_flow/base/MySupportFragment.java)):**
91
90
````java
92
91
// since v1.0.0, forced extends of SupportActivity is not required, you can use interface + delegate to implement your own SupportActivity
93
92
public class HomeFragment extends SupportFragment {
@@ -100,7 +99,7 @@ public class HomeFragment extends SupportFragment {
0 commit comments