import osdef set_mock_location(latitude, longitude): """ 모의 위치 앱을 사용해 GPS 위치 설정 :param latitude: 위도 :param longitude: 경도 """ try: print(f"GPS 위치를 설정 중: 위도 {latitude}, 경도 {longitude}...") # Fake GPS 앱을 통해 GPS 위치 설정 adb_command = f"adb shell am startservice -a com.lexa.fakegps.START -e lat {latitude} -e long {longitude}" # 명령 실행 result ..