1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-06-12 17:19:18 +00:00

misc: Update some things

This commit is contained in:
2022-07-20 18:28:27 +02:00
parent 04911dcd23
commit 39c7c507c5
10 changed files with 24 additions and 11 deletions

View File

@ -31,7 +31,7 @@ android {
}
}
compileSdk 33
compileSdk 32
defaultConfig {
// App ID
@ -41,7 +41,7 @@ android {
minSdk 21
// Android 12
targetSdk 33
targetSdk 32
// Semantic Versioning
versionName "1.0.0"

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<background android:drawable="@drawable/logo_background_color"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
<color name="ic_launcher_background">?backgroundColor</color>
</resources>

View File

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="512dp"
android:viewportWidth="512"
android:viewportHeight="512"
android:tint="#FFFFFF">
<path
android:pathData="M0,0h512v512h-512z"
android:fillColor="#FF000000"/>
</vector>

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
@ -22,7 +21,7 @@
android:orientation="vertical">
<view
class="com.dzeio.charts.BarView"
class="com.dzeio.charts.views.BarChartView"
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="200dp"

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<background android:drawable="@drawable/logo_background_color"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>