Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<preference name="GradlePluginKotlinEnabled" value="true" />
<preference name="android-targetSdkVersion" value="36" />
<preference name="android-minSdkVersion" value="26" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="0" />
<preference name="FadeSplashScreenDuration" value="0" />
Comment on lines +43 to +44

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 SplashScreenDelay / FadeSplashScreenDuration redundancy with existing config — the file already declares SplashScreen "none" on line 27, which disables the legacy Cordova splash-screen plugin entirely. The SplashScreenDelay, FadeSplashScreen, and FadeSplashScreenDuration preferences are only consumed by that same legacy plugin, so they have no effect here. These three preferences can be omitted without changing runtime behavior, keeping the fix to just AutoHideSplashScreen and AndroidWindowSplashScreenBehavior.

<preference name="FadeSplashScreen" value="false" />
<preference name="AndroidWindowSplashScreenBehavior" value="icon_preferred" />



<edit-config file="app/src/main/AndroidManifest.xml" mode="merge"
Comment on lines +46 to 50

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Two consecutive blank lines were added after the last preference. One blank line is enough to separate this block from the edit-config below it.

Suggested change
<preference name="AndroidWindowSplashScreenBehavior" value="icon_preferred" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge"
<preference name="AndroidWindowSplashScreenBehavior" value="icon_preferred" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge"

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Expand Down