We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a custom colors.xml with one color in it in order to use the new adaptive icons feature that cordova provides:
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="background">#000000</color> </resources>
This gets overwritten by firebasex like so:
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="accent">#FF00FFFF</color> </resources>
However when I add a second (useless) color to my configuration firebasex merged the config like it should:
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="background">#000000</color> <color name="background_blk">#000000</color> </resources>
After build:
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="background">#000000</color> <color name="background_blk">#000000</color> <color name="accent">#FF00FFFF</color> </resources>
It would be good if it also works with only one color since that's what the cordova documentation shows for adaptive icons.
The text was updated successfully, but these errors were encountered:
69565d1
No branches or pull requests
I have a custom colors.xml with one color in it in order to use the new adaptive icons feature that cordova provides:
This gets overwritten by firebasex like so:
However when I add a second (useless) color to my configuration firebasex merged the config like it should:
After build:
It would be good if it also works with only one color since that's what the cordova documentation shows for adaptive icons.
The text was updated successfully, but these errors were encountered: