tune

Configuration

FOREGROUND
add_photo_alternate
Upload Foreground
Drag & Drop or Click
Foreground preview
contrast Mono Icon Android 13+
invert_colors
Upload Mono Layer
Or auto-convert from foreground
check_circle
50% 150%
100%
visibility

Preview

12:30
signal_cellular_alt wifi battery_full
12:30
Sunday, Jan 14

Switch theme mode to preview themed monochrome icons

download

Export

0
Files
3
Platforms
PLATFORMS
android
Android
Adaptive + Legacy + Mono
phone_iphone
iOS
All sizes + Contents.json
language
Web / PWA
Favicon + Manifest icons
tv
Android TV
Banner 320×180
storefront
Play Store
512×512 Hi-Res
FILE STRUCTURE
code

Code Snippets

AndroidManifest.xml
<application
    android:icon="@mipmap/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:banner="@drawable/ic_launcher_tv_banner">
ic_launcher.xml
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/ic_launcher_background"/>
    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
    <monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
ic_launcher_background.xml
<resources>
    <color name="ic_launcher_background">#1a1a1a</color>
</resources>
manifest.json (PWA)
{
  "name": "MyApp",
  "short_name": "MyApp",
  "theme_color": "#1a1a1a",
  "icons": [
    { "src": "/icons/icon-192.png", "sizes": "192x192" },
    { "src": "/icons/icon-512.png", "sizes": "512x512" }
  ]
}