File tree Expand file tree Collapse file tree 8 files changed +25
-12
lines changed
Expand file tree Collapse file tree 8 files changed +25
-12
lines changed Original file line number Diff line number Diff line change 11
22[ ![ GitHub] ( 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- [ ![ Bintray] ( https://img.shields.io/badge/DevUtils-1.9.9 -brightgreen.svg )] ( https://bintray.com/afkt/maven/DevAppX )
4+ [ ![ Bintray] ( https://img.shields.io/badge/DevUtils-2.0.0 -brightgreen.svg )] ( https://bintray.com/afkt/maven/DevAppX )
55[ ![ API] ( https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat )] ( https://android-arsenal.com/api?level=14 )
66[ ![ Utils] ( https://img.shields.io/badge/utils-160+-ff69b4.svg )] ( https://github.com/afkT/DevUtils/blob/master/lib/DevApp/README.md )
77
6666``` java
6767
6868// DevApp Android 工具类库
69- implementation ' com.afkt:DevAppX:1.9.9 '
69+ implementation ' com.afkt:DevAppX:2.0.0 '
7070
7171// DevJava Java 工具类库 ( 不依赖 android api )
72- implementation ' com.afkt:DevJava:1.1.3 ' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
72+ implementation ' com.afkt:DevJava:1.1.4 ' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
7373
7474// DevAssist 快捷功能辅助类库
7575implementation ' com.afkt:DevAssist:1.0.4'
Original file line number Diff line number Diff line change 3131 // 向前兼容 SDK 版本
3232 targetSdkVersion : 30 ,
3333 // 构建工具版本
34- buildToolsVersion : ' 30.0.1 ' ,
34+ buildToolsVersion : ' 30.0.2 ' ,
3535 // java 版本
3636 javaVersion : JavaVersion . VERSION_1_8 ,
3737 // Kotlin 版本
@@ -42,19 +42,19 @@ ext {
4242 // ===========
4343
4444 // 版本号
45- dev_app_versionCode : 199 ,
45+ dev_app_versionCode : 200 ,
4646 // 版本名
47- dev_app_versionName : ' 1.9.9 ' ,
47+ dev_app_versionName : ' 2.0.0 ' ,
4848
4949 // 版本号
5050 dev_assist_versionCode : 104 ,
5151 // 版本名
5252 dev_assist_versionName : ' 1.0.4' ,
5353
5454 // 版本号
55- dev_java_versionCode : 113 ,
55+ dev_java_versionCode : 114 ,
5656 // 版本名
57- dev_java_version : ' 1.1.3 ' ,
57+ dev_java_version : ' 1.1.4 ' ,
5858
5959 // 版本号
6060 dev_widget_versionCode : 104 ,
Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 2.0.0 * (2020-08-29)*
5+ ----------------------------
6+
7+ * ` [Add] ` FileUtils#canRead、canWrite、canReadWrite
8+
49Version 1.9.9 * (2020-08-27)*
510----------------------------
611
Original file line number Diff line number Diff line change 1- 418d64e43e32ada100ad021456996e393bb603cb
1+ 73716937fa770b84e2a36fa57563775ec74fc22f
Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 1.1.4 * (2020-08-29)*
5+ ----------------------------
6+
7+ * ` [Add] ` FileUtils#canRead、canWrite、canReadWrite
8+
49Version 1.1.3 * (2020-08-04)*
510----------------------------
611
Original file line number Diff line number Diff line change 22## Gradle
33
44``` java
5- implementation ' com.afkt:DevJava:1.1.3 '
5+ implementation ' com.afkt:DevJava:1.1.4 '
66```
77
88## 目录结构
@@ -540,6 +540,9 @@ JCLogUtils.setPrint(new JCLogUtils.Print() {});
540540| isFile | 判断是否文件 |
541541| isDirectory | 判断是否文件夹 |
542542| isHidden | 判断是否隐藏文件 |
543+ | canRead | 文件是否可读 |
544+ | canWrite | 文件是否可写 |
545+ | canReadWrite | 文件是否可读写 |
543546| getFileLastModified | 获取文件最后修改的毫秒时间戳 |
544547| getFileCharsetSimple | 获取文件编码格式 |
545548| getFileLines | 获取文件行数 |
Original file line number Diff line number Diff line change 77
88``` java
99// AndroidX
10- implementation ' com.afkt:DevAppX:1.9.9 '
10+ implementation ' com.afkt:DevAppX:2.0.0 '
1111implementation ' com.afkt:DevWidgetX:1.0.4'
1212```
1313
Original file line number Diff line number Diff line change 33
44``` java
55// AndroidX
6- implementation ' com.afkt:DevAppX:1.9.9 '
6+ implementation ' com.afkt:DevAppX:2.0.0 '
77implementation ' com.afkt:DevWidgetX:1.0.4'
88```
99
You can’t perform that action at this time.
0 commit comments