File tree 6 files changed +13
-8
lines changed
src/main/java/com/blankj/utilcode/util
6 files changed +13
-8
lines changed Original file line number Diff line number Diff line change
1
+ * ` 20/05/28 ` [ fix] IntentUtils#getInstallAppIntent file exist wrong. Publish v1.29.0.
1
2
* ` 20/05/23 ` [ fix] BusUtils#postSticky times not right. Publish v1.28.6.
2
- * ` 20/05/22 ` [ add] IntentUtils#getInstallAppIntent support Uri param. Publish.
3
+ * ` 20/05/22 ` [ add] IntentUtils#getInstallAppIntent support Uri param.
3
4
* ` 20/05/21 ` [ add] Publish bus plugin v2.6. Publish api plugin v1.4. Publish. Publish v1.28.5.
4
5
* ` 20/05/19 ` [ fix] FileUtils#copyOrMoveDird NPE.
5
6
* ` 20/05/18 ` [ add] IntentUtils#getLaunchAppDetailsSettingsIntent support isNewTask.
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ class Config {
14
14
static compileSdkVersion = 29
15
15
static minSdkVersion = 14
16
16
static targetSdkVersion = 29
17
- static versionCode = 1_028_006
18
- static versionName = ' 1.28.6 ' // E.g. 1.9.72 => 1,009,072
17
+ static versionCode = 1_029_000
18
+ static versionName = ' 1.29.0 ' // E.g. 1.9.72 => 1,009,072
19
19
20
20
// lib version
21
21
static gradlePluginVersion = ' 3.5.0'
Original file line number Diff line number Diff line change 2
2
3
3
Gradle:
4
4
``` groovy
5
- implementation 'com.blankj:utilcode:1.28.6 '
5
+ implementation 'com.blankj:utilcode:1.29.0 '
6
6
7
7
// if u use AndroidX, use the following
8
- implementation 'com.blankj:utilcodex:1.28.6 '
8
+ implementation 'com.blankj:utilcodex:1.29.0 '
9
9
```
10
10
11
11
Original file line number Diff line number Diff line change 2
2
3
3
Gradle:
4
4
``` groovy
5
- implementation 'com.blankj:utilcode:1.28.6 '
5
+ implementation 'com.blankj:utilcode:1.29.0 '
6
6
7
7
// if u use AndroidX, use the following
8
- implementation 'com.blankj:utilcodex:1.28.6 '
8
+ implementation 'com.blankj:utilcodex:1.29.0 '
9
9
```
10
10
11
11
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public static Intent getInstallAppIntent(final String filePath) {
66
66
* @return the intent of install app
67
67
*/
68
68
public static Intent getInstallAppIntent (final File file ) {
69
- if (UtilsBridge .isFileExists (file )) return null ;
69
+ if (! UtilsBridge .isFileExists (file )) return null ;
70
70
Uri uri ;
71
71
if (Build .VERSION .SDK_INT < Build .VERSION_CODES .N ) {
72
72
uri = Uri .fromFile (file );
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ rm -rf .idea
3
+ find . -name " *.iml" -type f -exec rm -rf {} \;
4
+ find . -name " build" -type d -exec rm -rf {} \;
You can’t perform that action at this time.
0 commit comments