Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Commit cee941e

Browse files
committed
WindowInsetsAnimation: Fix lint errors
Change-Id: I652a51eb3de955e1e65322402d543873ea98b18a
1 parent c6d1520 commit cee941e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

WindowInsetsAnimation/app/src/main/res/values/themes.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
~ limitations under the License.
1616
-->
1717

18-
<resources>
18+
<resources xmlns:tools="http://schemas.android.com/tools">
1919
<!-- Theme to use for the app -->
2020
<style name="Theme.Chat" parent="Theme.MaterialComponents.DayNight.NoActionBar">
2121
<item name="android:statusBarColor">?attr/colorSurface</item>
22-
<item name="android:windowLightStatusBar">?attr/isLightTheme</item>
22+
<item name="android:windowLightStatusBar" tools:targetApi="23">?attr/isLightTheme</item>
2323

2424
<item name="android:navigationBarColor">?attr/colorSurface</item>
25-
<item name="android:windowLightNavigationBar">?attr/isLightTheme</item>
25+
<item name="android:windowLightNavigationBar" tools:targetApi="27">?attr/isLightTheme</item>
2626
</style>
2727
</resources>

WindowInsetsAnimation/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
}
2424

2525
dependencies {
26-
classpath 'com.android.tools.build:gradle:7.2.1'
26+
classpath 'com.android.tools.build:gradle:7.2.2'
2727
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2828
}
2929
}

0 commit comments

Comments
 (0)