fix: Build-Fehler beheben (gradle.properties, Theme, Icon) (#13)
- gradle.properties mit android.useAndroidX=true erstellt - themes.xml: Parent-Theme auf android:Theme.Material.Light.NoActionBar geändert - ic_launcher_background.xml: Ungültiges <rect> durch <path> ersetzt
This commit is contained in:
parent
040f007cd5
commit
85f3084ffa
3 changed files with 6 additions and 4 deletions
|
|
@ -4,8 +4,7 @@
|
|||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<rect
|
||||
<path
|
||||
android:fillColor="#4CAF50"
|
||||
android:height="108"
|
||||
android:width="108" />
|
||||
android:pathData="M0,0h108v108H0z" />
|
||||
</vector>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="Theme.Krisenvorrat" parent="Theme.Material3.DayNight.NoActionBar" />
|
||||
<style name="Theme.Krisenvorrat" parent="android:Theme.Material.Light.NoActionBar" />
|
||||
</resources>
|
||||
|
|
|
|||
3
gradle.properties
Normal file
3
gradle.properties
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
android.useAndroidX=true
|
||||
kotlin.code.style=official
|
||||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||||
Loading…
Reference in a new issue