提交 b25ed202 编写于 作者: B Blankj

see 05/28 log

上级 1079a039
* `20/05/28` [fix] IntentUtils#getInstallAppIntent file exist wrong. Publish v1.29.0.
* `20/05/23` [fix] BusUtils#postSticky times not right. Publish v1.28.6.
* `20/05/22` [add] IntentUtils#getInstallAppIntent support Uri param. Publish.
* `20/05/22` [add] IntentUtils#getInstallAppIntent support Uri param.
* `20/05/21` [add] Publish bus plugin v2.6. Publish api plugin v1.4. Publish. Publish v1.28.5.
* `20/05/19` [fix] FileUtils#copyOrMoveDird NPE.
* `20/05/18` [add] IntentUtils#getLaunchAppDetailsSettingsIntent support isNewTask.
......
......@@ -14,8 +14,8 @@ class Config {
static compileSdkVersion = 29
static minSdkVersion = 14
static targetSdkVersion = 29
static versionCode = 1_028_006
static versionName = '1.28.6'// E.g. 1.9.72 => 1,009,072
static versionCode = 1_029_000
static versionName = '1.29.0'// E.g. 1.9.72 => 1,009,072
// lib version
static gradlePluginVersion = '3.5.0'
......
......@@ -2,10 +2,10 @@
Gradle:
```groovy
implementation 'com.blankj:utilcode:1.28.6'
implementation 'com.blankj:utilcode:1.29.0'
// if u use AndroidX, use the following
implementation 'com.blankj:utilcodex:1.28.6'
implementation 'com.blankj:utilcodex:1.29.0'
```
......
......@@ -2,10 +2,10 @@
Gradle:
```groovy
implementation 'com.blankj:utilcode:1.28.6'
implementation 'com.blankj:utilcode:1.29.0'
// if u use AndroidX, use the following
implementation 'com.blankj:utilcodex:1.28.6'
implementation 'com.blankj:utilcodex:1.29.0'
```
......
......@@ -66,7 +66,7 @@ public final class IntentUtils {
* @return the intent of install app
*/
public static Intent getInstallAppIntent(final File file) {
if (UtilsBridge.isFileExists(file)) return null;
if (!UtilsBridge.isFileExists(file)) return null;
Uri uri;
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
uri = Uri.fromFile(file);
......
#!/usr/bin/env bash
rm -rf .idea
find . -name "*.iml" -type f -exec rm -rf {} \;
find . -name "build" -type d -exec rm -rf {} \;
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册