diff options
author | cyBerta <cyberta@riseup.net> | 2023-08-30 18:56:42 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2023-08-30 18:56:42 +0200 |
commit | 0022b01b34a290b27f859f3e8e231d504d473898 (patch) | |
tree | f1a7ba3733ed3486c2a7b589c7c19254d64f6006 /app/src/main/res | |
parent | 609ea1e6185055d8b67bcdd8f2a029a29b15241e (diff) |
fix notification permission handling, also covering the case of an app update for which the user has a provider already configured and only needs to give the lacking permissions
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_setup.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_setup.xml b/app/src/main/res/layout/activity_setup.xml index 5fff1154..6a2c5209 100644 --- a/app/src/main/res/layout/activity_setup.xml +++ b/app/src/main/res/layout/activity_setup.xml @@ -46,6 +46,7 @@ app:cardCornerRadius="6dp" app:cardElevation="0dp" android:layout_margin="4dp" + android:visibility="gone" > <View android:layout_width="match_parent" @@ -58,6 +59,20 @@ app:cardCornerRadius="6dp" app:cardElevation="0dp" android:layout_margin="4dp" + android:visibility="gone" + > + <View + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@color/colorPrimary"/> + </androidx.cardview.widget.CardView> + <androidx.cardview.widget.CardView + android:layout_width="12dp" + android:layout_height="12dp" + app:cardCornerRadius="6dp" + app:cardElevation="0dp" + android:layout_margin="4dp" + android:visibility="gone" > <View android:layout_width="match_parent" @@ -70,6 +85,20 @@ app:cardCornerRadius="6dp" app:cardElevation="0dp" android:layout_margin="4dp" + android:visibility="gone" + > + <View + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@color/colorPrimary"/> + </androidx.cardview.widget.CardView> + <androidx.cardview.widget.CardView + android:layout_width="12dp" + android:layout_height="12dp" + app:cardCornerRadius="6dp" + app:cardElevation="0dp" + android:layout_margin="4dp" + android:visibility="gone" > <View android:layout_width="match_parent" |