Skip to content

Commit dd1e760

Browse files
committed
see 08/30 log
1 parent c73e7a0 commit dd1e760

File tree

8 files changed

+10
-16
lines changed

8 files changed

+10
-16
lines changed

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.19.3-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.19.4-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.19.3-brightgreen.svg
44+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.19.4-brightgreen.svg
4545
[auc]: https://github.com/Blankj/AndroidUtilCode
4646

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

config.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ext {
66
compileSdkVersion: 27,
77
minSdkVersion : 14,
88
targetSdkVersion : 27,
9-
versionCode : 1_019_003,
10-
versionName : '1.19.3'// E.g. 1.9.72 => 1,009,072
9+
versionCode : 1_019_004,
10+
versionName : '1.19.4'// E.g. 1.9.72 => 1,009,072
1111
]
1212

1313
versionConfig = [
@@ -169,7 +169,7 @@ def configAppDependencies(Project pro) {
169169
// LeakCanary
170170
debugImplementation depConfig.leakcanary.android
171171
releaseImplementation depConfig.leakcanary.android_no_op
172-
// implementation 'com.blankj:utilcode:1.19.3'
172+
// implementation 'com.blankj:utilcode:1.19.4'
173173
}
174174
}
175175

update_log.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 18/08/30 修复 PermissionUtils$PermissionActivity 的 window 背景为黑色的问题,发布 1.19.4
12
* 18/08/28 新增 RegexUtils#isIDCard18Exact
23
* 18/08/26 新增 AppUtils#getAppSignatureSHA256 和 AppUtils#getAppSignatureMD5,发布 1.19.3
34
* 18/08/24 新增 ScreenUtils#restoreAdaptScreen,利用 FileProvider4UtilCode 不再需要初始化,发布 1.19.2

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.19.3'
5+
implementation 'com.blankj:utilcode:1.19.4'
66
```
77

88

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.19.3'
5+
implementation 'com.blankj:utilcode:1.19.4'
66
```
77

88

utilcode/proguard-rules.pro

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,4 @@
1818

1919
#-keep class com.blankj.utilcode.** { *; }
2020
#-keepclassmembers class com.blankj.utilcode.** { *; }
21-
#-dontwarn com.blankj.utilcode.**
22-
23-
# @Keep
24-
-keep,allowobfuscation @interface android.support.annotation.Keep
25-
-keep @android.support.annotation.Keep class *
26-
-keepclassmembers class * {
27-
@android.support.annotation.Keep *;
28-
}
21+
-dontwarn com.blankj.utilcode.**

utilcode/src/main/res/values-v21/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<item name="android:windowNoTitle">true</item>
99
<item name="android:statusBarColor">@android:color/transparent</item>
1010
<item name="android:backgroundDimEnabled">false</item>
11-
<item name="android:windowBackground">@null</item>
11+
<item name="android:windowBackground">@android:color/transparent</item>
1212
<item name="android:windowContentOverlay">@null</item>
1313
<item name="android:windowIsTranslucent">true</item>
1414
<item name="android:windowAnimationStyle">@null</item>

0 commit comments

Comments
 (0)