Skip to content

Commit 74c48ef

Browse files
committed
近期开发新增内容文档补全
1 parent 6794a55 commit 74c48ef

File tree

1 file changed

+49
-54
lines changed

1 file changed

+49
-54
lines changed

use/start.md

+49-54
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
## 常用组件集
2+
3+
**所有的组件都可以单独使用,同时为了方便开发,对于部分组件归类为组件集集中管理**
4+
5+
#### ![LibWrapper](https://img.shields.io/badge/AndroidAppFactory-LibWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/lib-wrapper) ](https://search.maven.org/artifact/com.bihe0832.android/lib-wrapper)
6+
7+
8+
- 简介:对于基础组件的集中管理所有组件
9+
10+
- 引用:`api 'com.bihe0832.android:lib-wrapper:+'`
11+
12+
#### ![CommonWrapperMin](https://img.shields.io/badge/AndroidAppFactory-CommonWrapperMin-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper-min) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper-min)
13+
14+
- 简介:对于公共组件的集中管理所有通用组件
15+
16+
- 引用:`api 'com.bihe0832.android:common-wrapper-min:+'`
17+
18+
19+
#### ![CommonWrapper](https://img.shields.io/badge/AndroidAppFactory-CommonWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper)
20+
21+
- 简介:对于公共组件的集中管理所有组件,在 CommonWrapperMin 的基础上增加了 SVGA、AceEditor、无障碍、绘图板、视频图片合成、截图等功能
22+
23+
- 引用:`api 'com.bihe0832.android:common-wrapper:+'`
24+
25+
26+
#### ![LibScreenWrapper](https://img.shields.io/badge/AndroidAppFactory-LibScreenWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/lib-wrapper-screen) ](https://search.maven.org/artifact/com.bihe0832.android/lib-wrapper-screen)
27+
28+
29+
- 简介:Widget及锁屏相关组件
30+
31+
- 引用:`api 'com.bihe0832.android:lib-wrapper-screen:+'`
32+
33+
#### ![CommonTBSWrapper](https://img.shields.io/badge/AndroidAppFactory-CommonTBSWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper-tbs) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper-tbs)
34+
35+
36+
- 简介:X5内核 Webview 相关组件
37+
38+
- 引用:`api 'com.bihe0832.android:common-wrapper-tbs:+'`
39+
40+
#### ![ServicesWrapper](https://img.shields.io/badge/AndroidAppFactory-ServicesWrapper-brightgreen)
41+
[ ![Github](https://img.shields.io/badge/Github-ServicesWrapper-brightgreen?style=social) ](https://github.com/bihe0832/AndroidAppFactory/tree/master/ServicesWrapper)
42+
![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/services-wrapper)
43+
44+
- 简介:第三方SDK 相关的封装,如 Google登录等
45+
46+
- 引用:`api com.bihe0832.android:services-wrapper:+'`
47+
48+
149
## 添加依赖
250

351
在根目录添加发布插件的相关依赖
@@ -14,8 +62,8 @@ allprojects {
1462
}
1563
}
1664
```
17-
## import
1865

66+
## import
1967

2068
直接在项目依赖中添加对应库的依赖,例如基础组件集`LibWrapper`
2169

@@ -25,7 +73,6 @@ dependencies {
2573
}
2674
```
2775

28-
2976
## 调用
3077

3178
所有的组件都可以单独使用,具体的调用方式参考对应项目
@@ -52,55 +99,3 @@ dependencies {
5299

53100
- 关闭.class 文件,然后再次点击调用的地方,即可跳转到源码
54101

55-
## 常用组件集
56-
57-
**所有的组件都可以单独使用,同时为了方便开发,对于部分组件归类为组件集集中管理**
58-
59-
60-
#### ![LibWrapper](https://img.shields.io/badge/AndroidAppFactory-LibWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/lib-wrapper) ](https://search.maven.org/artifact/com.bihe0832.android/lib-wrapper)
61-
62-
63-
- 简介:对于基础组件的集中管理所有组件
64-
65-
- 引用:`api 'com.bihe0832.android:lib-wrapper:+'`
66-
67-
#### ![CommonWrapperMin](https://img.shields.io/badge/AndroidAppFactory-CommonWrapperMin-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper-min) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper-min)
68-
69-
- 简介:对于公共组件的集中管理所有通用组件
70-
71-
- 引用:`api 'com.bihe0832.android:common-wrapper-min:+'`
72-
73-
74-
#### ![CommonWrapper](https://img.shields.io/badge/AndroidAppFactory-CommonWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper)
75-
76-
- 简介:对于公共组件的集中管理所有组件,在 CommonWrapperMin 的基础上增加了 SVGA、AceEditor、无障碍、绘图板、视频图片合成、截图等功能
77-
78-
- 引用:`api 'com.bihe0832.android:common-wrapper:+'`
79-
80-
81-
#### ![LibScreenWrapper](https://img.shields.io/badge/AndroidAppFactory-LibScreenWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/lib-wrapper-screen) ](https://search.maven.org/artifact/com.bihe0832.android/lib-wrapper-screen)
82-
83-
84-
- 简介:Widget及锁屏相关组件
85-
86-
- 引用:`api 'com.bihe0832.android:lib-wrapper-screen:+'`
87-
88-
#### ![CommonTBSWrapper](https://img.shields.io/badge/AndroidAppFactory-CommonTBSWrapper-brightgreen)[ ![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/common-wrapper-tbs) ](https://search.maven.org/artifact/com.bihe0832.android/common-wrapper-tbs)
89-
90-
91-
- 简介:X5内核 Webview 相关组件
92-
93-
- 引用:`api 'com.bihe0832.android:common-wrapper-tbs:+'`
94-
95-
#### ![ServicesWrapper](https://img.shields.io/badge/AndroidAppFactory-ServicesWrapper-brightgreen)
96-
[ ![Github](https://img.shields.io/badge/Github-ServicesWrapper-brightgreen?style=social) ](https://github.com/bihe0832/AndroidAppFactory/tree/master/ServicesWrapper)
97-
![Maven Central](https://img.shields.io/maven-central/v/com.bihe0832.android/services-wrapper)
98-
99-
- 简介:第三方SDK 相关的封装,如 Google登录等
100-
101-
- 引用:`api com.bihe0832.android:services-wrapper:+'`
102-
103-
104-
105-
106-

0 commit comments

Comments
 (0)