Skip to content

Commit

Permalink
Fix missing theme
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasBielefeld committed Jun 10, 2024
1 parent b4c6917 commit e3ad81f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
applicationId "de.tobiasbielefeld.searchbar"
minSdkVersion 21
targetSdkVersion 34
versionCode 11
versionCode 12
versionName "2.0"

vectorDrawables.useSupportLibrary = true
Expand Down
4 changes: 0 additions & 4 deletions app/src/main/res/values-v23/themes.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<resources xmlns:tools="http://schemas.android.com/tools">

<style name="AppThemeNoActionBar" parent="Base.AppThemeNoActionBar">
<item name="android:statusBarColor">@android:color/transparent</item>
</style>

<style name="AppThemeNoActionBarNoDrawer" parent="Base.AppThemeNoActionBar">
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>
Expand Down
5 changes: 4 additions & 1 deletion app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<resources>

<style name="AppThemeNoActionBarNoDrawer" parent="Base.AppThemeNoActionBar">
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>

<!-- Base application theme -->
<style name="Base.AppThemeActionBar" parent="Theme.Material3.DayNight">
<item name="colorPrimary">@color/colorPrimary</item>
Expand Down Expand Up @@ -32,7 +36,6 @@

<!-- Use overwritten styles in themes v23 -->
<style name="AppThemeActionBar" parent="Base.AppThemeActionBar" />
<style name="AppThemeNoActionBar" parent="Base.AppThemeNoActionBar" />
<style name="AppThemeActionBarNoDrawer" parent="Base.AppThemeActionBar" />

<!-- Button customization -->
Expand Down

0 comments on commit e3ad81f

Please sign in to comment.