@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