mirror of
https://github.com/apache/cordova-android.git
synced 2026-07-06 00:00:08 +08:00
f4ecf9974d
- This change fixes an issue where the color #FFFFFFFF (fully opaque white) is treated as an invalid color when used for the status bar background.
- The problem happens because Color.parseColor("#FFFFFFFF") correctly returns -1, which collides with the current sentinel value used for INVALID_COLOR.
- Fixes #1938