@g9k/expo-dynamic-app-icon
v2.0.8
Published
Programmatically change the app icon in Expo.
Maintainers
Readme
🎨 @g9k/expo-dynamic-app-icon
Easily change your app icon dynamically in Expo SDK 52, 53 & 54!
📑 Table of Contents
🚀 What's New in This Fork:
✨ Available as an NPM package
🎁 Features:
✅ Reset icon to default ✅ Support for round icons ✅ Different icons for iOS and Android ✅ Dynamic icon variants for iOS (light, dark, tinted) ✅ iOS icon update with or without alert popup ✅ Simple API to get and set the app icon
Demo🚀
⚙️ Requirements
- Expo SDK 52, 53 or 54 (SDK 54 support is untested but should work)
- Development Client required - This module uses native code and cannot work with Expo Go
- Both iOS and Android supported
🚀 Quick Start
# 1. Install
npx expo install @g9k/expo-dynamic-app-icon
# 2. Add icons to your app.json (see Configuration below)
# 3. Generate native files
expo prebuild
# 4. Build and run
npx expo run:ios # or npx expo run:androidThen in your code:
import { setAppIcon, getAppIcon } from "@g9k/expo-dynamic-app-icon";
// Change icon (use the names you configured in app.json)
setAppIcon("blue");
// Get current icon
const current = getAppIcon();📦 Installation
npx expo install @g9k/expo-dynamic-app-icon🔧 Configuration
Step 1: Configure Your Icons
Add the plugin to your app.json or app.config.js:
"plugins": [
[
"@g9k/expo-dynamic-app-icon",
{
"blue": {
"ios": "./assets/ios_icon_blue.png",
"android": {
"foregroundImage": "./assets/android_icon_blue_fg.png",
"backgroundColor": "#0000FF"
}
},
"red": {
"ios": "./assets/ios_icon_red.png",
"android": {
"foregroundImage": "./assets/android_icon_red_fg.png",
"backgroundColor": "#FF0000"
}
},
"purple": {
"ios": "./assets/ios_icon_purple.png",
"android": "./assets/android_icon_purple.png" // Legacy string format still supported
},
"summer": {
"ios": {
"light": "./assets/ios_icon_summer_light.png",
"dark": "./assets/ios_icon_summer_dark.png",
"tinted": "./assets/ios_icon_summer_tinted.png"
}
// Android can also use the adaptive format here if desired
}
}
]
]Note on Android Adaptive Icons:
For Android, you can now provide an object with foregroundImage (path to your foreground asset) and backgroundColor (hex string) to generate proper adaptive icons. If you provide a direct string path, it will be treated as a legacy icon.
Icon Name Reference:
The icon names you configure here (e.g., blue, red, purple, summer) are what you'll pass to setAppIcon() in your code.
Step 2: Prebuild (Generate Native Code)
After configuring your icons, you need to generate the native files:
expo prebuildThis command will:
- ✅ Generate native iOS and Android projects
- ✅ Add icon aliases to
AndroidManifest.xml - ✅ Configure iOS project settings
- ✅ Copy and process your icon assets
Important: You must run expo prebuild again whenever you:
- Add or remove icon configurations
- Change icon file paths
- Update the plugin configuration
Step 3: Build Development Client
Since this module uses native code, you can't use Expo Go. Build a development client:
# For iOS
npx expo run:ios
# For Android
npx expo run:androidThis will:
- Compile the native code
- Install the app on your device/simulator
- Start the Metro bundler
📜 Verifying Native Setup
After running expo prebuild, you can verify the setup:
Android Verification
Check if the following lines have been added to android/app/src/main/AndroidManifest.xml. The android:icon and android:roundIcon attributes will point to different resources based on your configuration:
For Adaptive Icons (example: blue):
<activity-alias
android:name="expo.modules.dynamicappicon.example.MainActivityblue"
android:enabled="false"
android:exported="true"
android:icon="@mipmap/ic_launcher_adaptive_blue"
android:roundIcon="@mipmap/ic_launcher_adaptive_blue"
android:targetActivity=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity-alias>For Legacy Icons (example: purple):
<activity-alias
android:name="expo.modules.dynamicappicon.example.MainActivitypurple"
android:enabled="false"
android:exported="true"
android:icon="@mipmap/purple"
android:roundIcon="@mipmap/purple_round"
android:targetActivity=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity-alias>🚀 Usage
Set App Icon
import { setAppIcon } from "@g9k/expo-dynamic-app-icon";
/**
* Change app icon to 'blue'
* (Use the icon names from your app.json configuration)
*/
setAppIcon("blue");
/**
* Change to 'red' icon
*/
setAppIcon("red");
/**
* Reset to default icon
*/
setAppIcon(null);✅ Available Parameters:
setAppIcon(
name: IconName | null,
isInBackground?: boolean
)| Parameter | Type | Default | Description |
| ---------------- | ------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------ |
| name | IconName \| null | null | The icon name to switch to. Pass null to reset to the default icon. |
| isInBackground | boolean | true | - true: Icon changes silently in the background (no alert on iOS).- false: Immediate change, with system alert on iOS. |
✅ Returns:
"DEFAULT"if reset to the original icon.- The new icon name on success.
falseif an error occurs.
Get Current Icon
import { getAppIcon } from "@g9k/expo-dynamic-app-icon";
// Get the current app icon name
const icon = getAppIcon();
console.log(icon); // "blue" or "red" or "purple" (or "DEFAULT" if not changed)⚠️ Notes:
Android limitations: Android does not support icon changes while the app is running in the foreground. To work around this, the icon is changed when the app enters the Pause state (background).
⚠️ Pause state can also trigger during events like permission dialogs. To avoid unwanted icon changes, a 5-second delay is added to ensure the app is truly in the background.
To disable the delay and apply the icon change immediately (with the risk of it running during permission dialogs or other pause events), set:
setAppIcon("blue", false);- On iOS,
isInBackground: falsetriggers the system alert immediately. - On Android, it applies the icon change right away without waiting.
- On iOS,
🔧 Troubleshooting
"Module not found" or import errors
Problem: Getting errors like Cannot find module '@g9k/expo-dynamic-app-icon'
Solution:
- Make sure you installed the package:
npx expo install @g9k/expo-dynamic-app-icon - Clear cache:
npx expo start --clear - Rebuild the app:
npx expo run:iosornpx expo run:android
Icons not changing
Problem: setAppIcon() returns false or icons don't change
Solution:
- Verify you ran
expo prebuildafter configuring icons - Check that icon names match your
app.jsonconfiguration exactly (case-sensitive) - Ensure icon assets exist at the paths you specified
- Rebuild your app:
npx expo run:iosornpx expo run:android - Check native logs for errors:
- iOS: Open Xcode logs
- Android: Run
npx react-native log-android
"This module uses native code and cannot work with Expo Go"
Problem: App crashes or module doesn't work in Expo Go
Solution: This is expected behavior. You must use a development client:
npx expo run:ios # For iOS
npx expo run:android # For AndroidIcons not appearing after prebuild
Problem: Ran prebuild but icons missing in native projects
Solution:
- Check that icon paths in
app.jsonare correct and files exist - Delete
ios/andandroid/folders - Run
expo prebuild --clean - Rebuild:
npx expo run:iosornpx expo run:android
Android icon changes but shows wrong icon temporarily
Problem: Icon briefly shows old icon before changing
Solution: This is an Android limitation. The system caches launcher icons. Try:
- Clear launcher cache (varies by device)
- Restart device
- Uninstall and reinstall the app
iOS shows alert popup when changing icon
Problem: iOS displays a system alert when icon changes
Solution: This is iOS default behavior when changing icons immediately. To change in background:
setAppIcon("blue", true); // true = silent background change (default)Configuration changes not taking effect
Problem: Updated app.json but changes don't appear
Solution:
- Run
expo prebuildagain (required after ANY config changes) - Rebuild the app:
npx expo run:iosornpx expo run:android - Don't just refresh - native changes require full rebuild
🗺️ Roadmap
Help us improve this package! Here's what's on the horizon:
- [ ] Verify compatibility with Expo SDK 54 - Test and confirm the package works with SDK 54
- [ ] Improve documentation - Add video tutorial or animated examples
- [ ] Enhanced TypeScript support - Better type definitions for icon configurations
- [ ] Testing suite - Add automated tests for iOS and Android
- [ ] Performance optimization - Reduce icon switching latency on Android
Want to contribute? Feel free to:
- Open an issue for bugs or feature requests
- Submit a PR for any of the above items
- Share your use cases and feedback
☕ Shoutout to previous contributors
A huge shoutout to:
- outsung for the original package!
- mozzius for adding support for Expo SDK 51!
- howincodes for adding support for Expo SDK 52 and for a couple of other improvements!
- elberfeld2 for adding support for Expo SDK 53!
🌐 About Us
This package is maintained by Piotr Grzegorczyk.
🔥 Enjoy building dynamic and customizable apps with Expo! 🚀
