Skip to content

Commit b25ed20

Browse files
committed
see 05/28 log
1 parent 1079a03 commit b25ed20

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
* `20/05/28` [fix] IntentUtils#getInstallAppIntent file exist wrong. Publish v1.29.0.
12
* `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.
34
* `20/05/21` [add] Publish bus plugin v2.6. Publish api plugin v1.4. Publish. Publish v1.28.5.
45
* `20/05/19` [fix] FileUtils#copyOrMoveDird NPE.
56
* `20/05/18` [add] IntentUtils#getLaunchAppDetailsSettingsIntent support isNewTask.

buildSrc/src/main/groovy/Config.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class Config {
1414
static compileSdkVersion = 29
1515
static minSdkVersion = 14
1616
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
1919

2020
// lib version
2121
static gradlePluginVersion = '3.5.0'

lib/utilcode/README-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.28.6'
5+
implementation 'com.blankj:utilcode:1.29.0'
66
77
// if u use AndroidX, use the following
8-
implementation 'com.blankj:utilcodex:1.28.6'
8+
implementation 'com.blankj:utilcodex:1.29.0'
99
```
1010

1111

lib/utilcode/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.28.6'
5+
implementation 'com.blankj:utilcode:1.29.0'
66
77
// if u use AndroidX, use the following
8-
implementation 'com.blankj:utilcodex:1.28.6'
8+
implementation 'com.blankj:utilcodex:1.29.0'
99
```
1010

1111

lib/utilcode/src/main/java/com/blankj/utilcode/util/IntentUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static Intent getInstallAppIntent(final String filePath) {
6666
* @return the intent of install app
6767
*/
6868
public static Intent getInstallAppIntent(final File file) {
69-
if (UtilsBridge.isFileExists(file)) return null;
69+
if (!UtilsBridge.isFileExists(file)) return null;
7070
Uri uri;
7171
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
7272
uri = Uri.fromFile(file);

script/clean.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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 {} \;

0 commit comments

Comments
 (0)