1
- ## Android工具类库
2
1
3
- ## appUtils (Android 基础工具类)
4
-
5
- ## dbutils (Android 数据库处理工具类)
6
-
7
- ## mediautils (Android 多媒体处理工具类)
8
2
9
3
## Android工具类库 [ ![ Build Status] ( https://travis-ci.org/AllenCoder/SuperUtils.svg?branch=master )] ( https://travis-ci.org/AllenCoder/SuperUtils ) [ ![ ] ( https://jitpack.io/v/AllenCoder/SuperUtils.svg )] ( https://jitpack.io/#AllenCoder/SuperUtils ) [ ![ API] ( https://img.shields.io/badge/API-14%2B-blue.svg?style=flat )] ( https://android-arsenal.com/api?level=14 ) [ ![ Gradle Version] ( https://img.shields.io/badge/gradle-3.4-green.svg )] ( https://docs.gradle.org/current/release-notes ) [ ![ Licence] ( https://img.shields.io/badge/licence-Apache-blue.svg )] ( http://www.apache.org/licenses/LICENSE-2.0 )
10
4
11
- 囊括了一大部分Android应用开发过程当中常用的工具类。工具类来源整理自网络和自己编写。
5
+ > 囊括了一大部分Android应用开发过程当中常用的工具类。工具类来源整理自网络和自己编写。(正在不断收集和整理中)
12
6
13
7
14
8
15
- 快速使用: 在工程目录下的 build.gradle 添加如下代码:
9
+ ### 快速使用: 在工程目录下的 build.gradle 添加如下代码:
16
10
17
11
```
18
12
allprojects {
@@ -25,43 +19,45 @@ allprojects {
25
19
26
20
在app的build.gradle引入依赖
27
21
28
- ## 1.
22
+ ### 1.Android 基础工具类
29
23
30
24
```
31
25
dependencies {
32
- compile 'com.github.AllenCoder.SuperUtils:apputils:1.0.1 '
26
+ compile 'com.github.AllenCoder.SuperUtils:apputils:1.0.2 '
33
27
}
34
28
```
35
- ## 2.
29
+ ### 2.Android 数据库处理工具类
36
30
37
31
```
38
32
dependencies {
39
- compile 'com.github.AllenCoder.SuperUtils:dbutils:1.0.1 '
33
+ compile 'com.github.AllenCoder.SuperUtils:dbutils:1.0.2 '
40
34
}
41
35
```
42
36
43
- ## 3.
37
+ ### 3.Android 多媒体处理工具类
44
38
45
39
```
46
40
dependencies {
47
- compile 'com.github.AllenCoder.SuperUtils:mediautil:1.0.1 '
41
+ compile 'com.github.AllenCoder.SuperUtils:mediautil:1.0.2 '
48
42
}
49
43
50
44
```
51
45
## License
52
46
53
- /*
54
- * Copyright 2017 [ AllenCoderr]
55
- *
56
- * Licensed under the Apache License, Version 2.0 (the "License");
57
- * you may not use this file except in compliance with the License.
58
- * You may obtain a copy of the License at
59
- *
60
- * http://www.apache.org/licenses/LICENSE-2.0
61
- *
62
- * Unless required by applicable law or agreed to in writing, software
63
- * distributed under the License is distributed on an "AS IS" BASIS,
64
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
65
- * See the License for the specific language governing permissions and
66
- * limitations under the License.
67
- * /
47
+ ```
48
+
49
+ Copyright 2017 [AllenCoderr]
50
+
51
+ Licensed under the Apache License, Version 2.0 (the "License");
52
+ you may not use this file except in compliance with the License.
53
+ You may obtain a copy of the License at
54
+
55
+ http://www.apache.org/licenses/LICENSE-2.0
56
+
57
+ Unless required by applicable law or agreed to in writing, software
58
+ distributed under the License is distributed on an "AS IS" BASIS,
59
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
60
+ See the License for the specific language governing permissions and
61
+ limitations under the License.
62
+
63
+ ```
0 commit comments