File tree Expand file tree Collapse file tree 6 files changed +13
-8
lines changed
src/main/java/com/blankj/utilcode/util Expand file tree Collapse file tree 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.
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.
Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 22
33Gradle:
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
Original file line number Diff line number Diff line change 22
33Gradle:
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
Original file line number Diff line number Diff 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 );
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