Files
MyReactNativeAndroid/setup_android.bat
chiDT 463c6ebd87 Initial React Native Android project setup with multiplatform desktop support.
Added React Native project structure with Android configuration, Tauri desktop app support, and build artifacts. Includes development tools, test configuration, and platform-specific resources.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-14 23:24:05 +09:00

57 lines
1.3 KiB
Batchfile

@echo off
chcp 65001 >nul
rem Android Development Environment Setup Script - Python Launcher
rem MyMemoApp - Launches Python setup script
rem Date: 2025-09-14
echo Starting Android Development Environment Setup...
echo ======================================================
echo.
rem Check Administrator Privileges
net session >nul 2>&1
if %errorlevel% neq 0 (
echo.
echo ERROR: Administrator privileges required.
echo Please right-click this script and select "Run as administrator".
echo.
pause
exit /b 1
)
echo Administrator privileges confirmed
echo.
rem Check if Python is installed
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ERROR: Python is not installed.
echo Please install Python 3.8 or later from:
echo https://www.python.org/downloads/
echo.
echo Make sure to check "Add Python to PATH" during installation.
echo.
pause
exit /b 1
)
echo Python installation confirmed:
python --version
echo.
rem Run Python setup script
echo Launching Python setup script...
echo ------------------------------------------------------
python "%~dp0setup_android.py"
if %errorlevel% neq 0 (
echo.
echo Setup script failed. Please check the error messages above.
pause
exit /b 1
)
echo.
echo Setup completed!
pause