Skip to content

Commit

Permalink
chore: fix statusbar color in android@13
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jan 12, 2024
1 parent a30cf46 commit 51d9b1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
<icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="resources/android/splash/icon.png" />
<preference name="AndroidWindowSplashScreenBackground" value="#ff0d6a" />
<preference name="AndroidPostSplashScreenTheme" value="@style/AeppBaseTheme" />
<resource-file src="resources/values/styles.xml" target="app/src/main/res/values/styles.xml" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
Expand Down
7 changes: 7 additions & 0 deletions resources/values/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AeppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:statusBarColor">#ff0d6a</item>
<item name="android:navigationBarColor">#001833</item>
</style>
</resources>

0 comments on commit 51d9b1a

Please sign in to comment.