Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-11-01 17:31:57 +0300
committerStefan Niedermann <info@niedermann.it>2020-11-01 17:31:57 +0300
commitad41b1df555d085edaaf5f00963ff9007536f88c (patch)
tree5633c6f58842e3ce1d84622ca98e0bf7da801f38 /app/src/main/res/drawable-v21
parentf05402c7b67f8ea234f6e9ce749dfe8ba95b22af (diff)
Fix crash on Android 4.4
Signed-off-by: Stefan Niedermann <info@niedermann.it>
Diffstat (limited to 'app/src/main/res/drawable-v21')
-rw-r--r--app/src/main/res/drawable-v21/bottom_sheet_rounded.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/res/drawable-v21/bottom_sheet_rounded.xml b/app/src/main/res/drawable-v21/bottom_sheet_rounded.xml
new file mode 100644
index 000000000..ba266ed32
--- /dev/null
+++ b/app/src/main/res/drawable-v21/bottom_sheet_rounded.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <solid android:color="?attr/colorSurface" />
+ <corners
+ android:topLeftRadius="16dp"
+ android:topRightRadius="16dp" />
+
+</shape> \ No newline at end of file