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
Add support for rounded/adaptive icons.
Resources: https://developer.android.com/develop/ui/views/launch/icon_design_adaptive?hl=fr
https://airnativeextensions.github.io/tutorials/android-adaptive-icons#:~:text=Additionally%20if%20you%20want%20to,%2Ficon_round%22%20...%20%3E
Example 1: Using a Color Resource Define the color in res/values/colors.xml:
<resources> <color name="icon_background">#FF0000</color> <!-- Red color --> </resources>
Specify the background color in AndroidManifest.xml:
<application android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:iconBackground="@color/icon_background" ... > ... </application>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add support for rounded/adaptive icons.
Resources:
https://developer.android.com/develop/ui/views/launch/icon_design_adaptive?hl=fr
https://airnativeextensions.github.io/tutorials/android-adaptive-icons#:~:text=Additionally%20if%20you%20want%20to,%2Ficon_round%22%20...%20%3E
Example 1: Using a Color Resource
Define the color in res/values/colors.xml:
Specify the background color in AndroidManifest.xml:
The text was updated successfully, but these errors were encountered: