Skip to content

Commit ad71bb5

Browse files
author
Ttt
committed
1.更新完善 ColorUtils, 增加部分 DevCommUtils 方法
2.发布 1.3.2 Former-commit-id: 4a3cd2b
1 parent 7d4d032 commit ad71bb5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ccd09bcb4e1f3bcec5fc15e4ffab1df33f56a95f
1+
c2260296257b8f77cf8c3d663d49dfa6a7ac6a4b

DevLibUtils/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.library'
22

3-
def dev_utils_version = "1.3.1";
3+
def dev_utils_version = "1.3.2";
44

55
android {
66
compileSdkVersion 28
@@ -9,7 +9,7 @@ android {
99
defaultConfig {
1010
minSdkVersion 14
1111
targetSdkVersion 28
12-
versionCode 131
12+
versionCode 132
1313
versionName dev_utils_version
1414

1515
/**

DevLibUtils/src/main/java/dev/utils/app/ColorsUtils.java renamed to DevLibUtils/src/main/java/dev/utils/app/ColorUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
* detail: 颜色工具类 包括常用的色值
1515
* Created by Ttt
1616
*/
17-
public final class ColorsUtils {
17+
public final class ColorUtils {
1818

19-
private ColorsUtils() {
19+
private ColorUtils() {
2020
}
2121

2222
// 日志TAG
23-
private static final String TAG = ColorsUtils.class.getSimpleName();
23+
private static final String TAG = ColorUtils.class.getSimpleName();
2424

2525
/**
2626
* 0-255 十进值转换成十六进制,如255 就是 ff

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[![Cocoapods](https://img.shields.io/badge/GitHub-afkT-blue.svg)](https://github.com/afkT)
33
[![GitHub license](https://img.shields.io/github/license/afkT/DevUtils.svg)](https://github.com/afkT/DevUtils/blob/master/LICENSE)
4-
[![Cocoapods](https://img.shields.io/badge/DevUtils-1.3.1-brightgreen.svg)](https://github.com/afkT/DevUtils)
4+
[![Cocoapods](https://img.shields.io/badge/DevUtils-1.3.2-brightgreen.svg)](https://github.com/afkT/DevUtils)
55
[![](https://jitpack.io/v/afkT/DevUtils.svg)](https://jitpack.io/#afkT/DevUtils)
66
[![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14)
77
[![Cocoapods](https://img.shields.io/badge/utils-100+-ff69b4.svg)](https://github.com/afkT/DevUtils/blob/master/DevLibUtils/README.md)
@@ -26,7 +26,7 @@ Step 2. Add the dependency
2626
```
2727
dependencies {
2828
// 因为内含 res 文件, 使用 aar 方式调用
29-
implementation 'com.github.afkT:DevUtils:1.3.1@aar'
29+
implementation 'com.github.afkT:DevUtils:1.3.2@aar'
3030
}
3131
```
3232

0 commit comments

Comments
 (0)