initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-06-15 16:19:32 +02:00
commit e8a203a71d
Se han modificado 42 ficheros con 1968 adiciones y 0 borrados

22
android-app/setup-icons.sh Archivo ejecutable
Ver fichero

@@ -0,0 +1,22 @@
#!/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."