Skip to content

Commit

Permalink
0.0.50.beta32
Browse files Browse the repository at this point in the history
- 修复了一个关于 FitSystemBarUtils 的空指针异常,issues#485
  • Loading branch information
kongzue committed Jan 21, 2025
1 parent ff1e4c1 commit 217c138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ public void onViewDetachedFromWindow(View view) {
* 针对不同版本处理Insets
*/
private void formatInsets(WindowInsetsCompat insetsCompat, RelativePadding initialPadding) {
if (contentView == null || insetsCompat == null || initialPadding == null) return;

relativePaddingCache = initialPadding;
int cutoutPaddingLeft = 0;
int cutoutPaddingTop = 0;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

BUILD_VERSION=0.0.50.beta31
BUILD_VERSION=0.0.50.beta32
BUILD_VERSION_INT=50
DIALOGX_STYLE_VERSION=5
android.nonTransitiveRClass=true

0 comments on commit 217c138

Please sign in to comment.