# android-icon-resize **Repository Path**: mirrors_mingchen/android-icon-resize ## Basic Information - **Project Name**: android-icon-resize - **Description**: Generate different dimension of Android icons and put it to proper folder. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Android Icons Generator Generate different dimension of android icons and put it to proper folder. **Support dimensions:** xxxhdpi 192x192 xxhdpi 144x144 xhdpi 96x96 hdpi 72x72 mdpi 48x48 Usage ----- android_icons_generator.py / `raw icon file` is the high resolution icon file. `res dir` is your Android project's res dir. `prefix` can be `drawable` or `mipmap`. Examples -------- android_icons_generator.py ic_launcher.png ~/demoapp/app/src/main/res/mipmap android_icons_generator.py ic_person.png ~/demoapp/app/src/main/res/drawable A real example with execution result: $ android_icons_generator.py ic_launcher.png ~/awesome/app/src/main/res/mipmap Generating ~/awesome/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png... Generating ~/awesome/app/src/main/res/mipmap-xxhdpi/ic_launcher.png... Generating ~/awesome/app/src/main/res/mipmap-xhdpi/ic_launcher.png... Generating ~/awesome/app/src/main/res/mipmap-hdpi/ic_launcher.png... Generating ~/awesome/app/src/main/res/mipmap-mdpi/ic_launcher.png... Done