#!/bin/bash # Create basic launcher icons for the app # This script creates placeholder PNG files for the app icons APP_DIR="/home/ale/projects/android/chatrtc/app/src/main/res" # Create mipmap directories mkdir -p "$APP_DIR/mipmap-hdpi" mkdir -p "$APP_DIR/mipmap-mdpi" mkdir -p "$APP_DIR/mipmap-xhdpi" mkdir -p "$APP_DIR/mipmap-xxhdpi" mkdir -p "$APP_DIR/mipmap-xxxhdpi" echo "Mipmap directories created. You can add your custom app icons to these directories:" echo "- mipmap-mdpi/ic_launcher.png (48x48px)" echo "- mipmap-hdpi/ic_launcher.png (72x72px)" echo "- mipmap-xhdpi/ic_launcher.png (96x96px)" echo "- mipmap-xxhdpi/ic_launcher.png (144x144px)" echo "- mipmap-xxxhdpi/ic_launcher.png (192x192px)" echo "" echo "For now, the app will use the vector drawable icons defined in the XML files."