Skip to content

Commit dc268f9

Browse files
committed
see 01/23 log
1 parent 9d0a0ab commit dc268f9

File tree

64 files changed

+494
-558
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+494
-558
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* `19/01/23` [add] Modify the demo of utilcode use kotlin. Publish v1.23.1.
2+
* `19/01/22` [fix] AppUtils#installApp.
13
* `19/01/17` [fix] Publish v1.23.0.
24
* `19/01/16` [fix] BarUtils get Activity from view and delete the function of set status bar alpha.
35
* `19/01/15` [add] ColorUtils.

README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
4343

44-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.0-brightgreen.svg
44+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.1-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

4747
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If this project helps you a lot and you want to support the project's developmen
4141

4242
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
4343

44-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.0-brightgreen.svg
44+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.23.1-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

4747
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

lib/base/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ dependencies {
1515
api dep.free_proguard
1616
api 'com.r0adkll:slidableactivity:2.0.5'
1717
compileOnly dep.leakcanary.android_no_op
18-
// api 'com.blankj:utilcode:1.23.0'
18+
// api 'com.blankj:utilcode:1.23.1'
1919
}

lib/base/src/main/java/com/blankj/lib/base/BaseApplication.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ open class BaseApplication : Application() {
8383
}
8484
}
8585

86-
protected fun isDebug(): Boolean {
86+
fun isDebug(): Boolean {
8787
if (isDebug == null) isDebug = AppUtils.isAppDebug()
8888
return isDebug!!
8989
}

utilcode/README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.23.0'
5+
implementation 'com.blankj:utilcode:1.23.1'
66
```
77

88

utilcode/README-STATIC-BUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ apply plugin: "com.blankj.bus"
2727
给 base 模块添加 [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode) 依赖:
2828

2929
```groovy
30-
api "com.blankj:utilcode:1.23.0"
30+
api "com.blankj:utilcode:1.23.1"
3131
```
3232

3333
比如 module0 中存在的 `Module0Activity.java`,我们通常都是在它内部写一个 `start` 函数来启动它,现在我们给它添加 `@BusUtils.Subscribe` 注解,并给注解的 `name` 赋唯一值,要注意,函数务必要 `public static` 哦:

utilcode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gradle:
44
```groovy
5-
implementation 'com.blankj:utilcode:1.23.0'
5+
implementation 'com.blankj:utilcode:1.23.1'
66
```
77

88

utilcode/pkg/src/main/java/com/blankj/utilcode/pkg/feature/activity/ActivityActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class ActivityActivity : BaseBackActivity() {
183183
0, 0)
184184
.toBundle()
185185
2 -> return ActivityOptionsCompat.makeThumbnailScaleUpAnimation(activityViewSharedElement,
186-
bitmap!!,
186+
bitmap,
187187
0, 0)
188188
.toBundle()
189189
3 -> return ActivityOptionsCompat.makeSceneTransitionAnimation(this,

utilcode/pkg/src/main/java/com/blankj/utilcode/pkg/feature/app/AppActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class AppActivity : BaseBackActivity() {
6868
.appendLine("getAppSignatureSHA1: " + AppUtils.getAppSignatureSHA1())
6969
.appendLine("getAppSignatureSHA256: " + AppUtils.getAppSignatureSHA256())
7070
.appendLine("getAppSignatureMD5: " + AppUtils.getAppSignatureMD5())
71-
.append("getApkInfo: " + AppUtils.getApkInfo(AppUtils.getAppPath())!!)
71+
.append("getApkInfo: " + AppUtils.getApkInfo(AppUtils.getAppPath()))
7272
.create()
7373
}
7474

0 commit comments

Comments
 (0)