upgraded Gradle 8.0.2 -> 8.2.2
This commit is contained in:
parent
041690f8bd
commit
140b8ced08
192 changed files with 162 additions and 187 deletions
8
app/src/main/res/drawable/button_background.xml
Normal file
8
app/src/main/res/drawable/button_background.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:startColor="#989A98"
|
||||
android:endColor="#E7EBE7"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
9
app/src/main/res/drawable/button_background_dark.xml
Normal file
9
app/src/main/res/drawable/button_background_dark.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- Gradient Bg for button -->
|
||||
<gradient
|
||||
android:startColor="#181C18"
|
||||
android:endColor="#6B6D6B"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/button_separator.xml
Normal file
8
app/src/main/res/drawable/button_separator.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:startColor="#686C68"
|
||||
android:endColor="#B8BCB8"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/button_separator_dark.xml
Normal file
8
app/src/main/res/drawable/button_separator_dark.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:startColor="#2E322E"
|
||||
android:endColor="#878B87"
|
||||
android:angle="90" />
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/suggestion_separator.xml
Normal file
5
app/src/main/res/drawable/suggestion_separator.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<size android:width="1px" />
|
||||
<solid android:color="@color/candidate_separator" />
|
||||
</shape>
|
||||
Loading…
Add table
Add a link
Reference in a new issue