Skip to content

Commit d154940

Browse files
committed
feat: add support for API 35 EdgeToEdge
1 parent e004565 commit d154940

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="ResourceName">
3+
4+
<!-- Override the base FirebaseUI theme for edge-to-edge support -->
5+
<style name="FirebaseUI" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
6+
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
7+
</style>
8+
9+
</resources>

buildSrc/src/main/kotlin/Config.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ object Config {
55
private const val kotlinVersion = "2.1.0"
66

77
object SdkVersions {
8-
const val compile = 34
9-
const val target = 34
8+
const val compile = 35
9+
const val target = 35
1010
const val min = 23
1111
}
1212

0 commit comments

Comments
 (0)