summaryrefslogtreecommitdiff
path: root/android-app
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-04-11 09:56:22 +0000
committerClaude <noreply@anthropic.com>2026-04-11 09:56:22 +0000
commit7dc7bae441f48a17ee694a80fb3ecbdd2f933b7f (patch)
tree5f9684bb0f0fc2e56c8b0626e9a6e2bb4dfbb103 /android-app
parent122e8b7b84df85b1f6a9ed50c6c66273acee911d (diff)
Fix: add explicit parent to ShapeAppearance.Nav.BottomSheet
Dot-notation style names imply a parent by convention; AAPT was looking for ShapeAppearance.Nav which doesn't exist. Parent is now ShapeAppearance.Material3.Corner.None (all-zero base) with the top corners overridden to 24dp. https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX
Diffstat (limited to 'android-app')
-rwxr-xr-xandroid-app/app/src/main/res/values/themes.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-app/app/src/main/res/values/themes.xml b/android-app/app/src/main/res/values/themes.xml
index a48a721..93f5209 100755
--- a/android-app/app/src/main/res/values/themes.xml
+++ b/android-app/app/src/main/res/values/themes.xml
@@ -120,7 +120,7 @@
</style>
<!-- Bottom sheet top-only rounded corners -->
- <style name="ShapeAppearance.Nav.BottomSheet">
+ <style name="ShapeAppearance.Nav.BottomSheet" parent="ShapeAppearance.Material3.Corner.None">
<item name="cornerFamily">rounded</item>
<item name="cornerSizeTopLeft">24dp</item>
<item name="cornerSizeTopRight">24dp</item>