분류 전체보기

@echo offchcp 65001 >nulecho ============================================echo Flutter 새 프로젝트 세팅 스크립트echo ============================================echo.REM 1단계: 기존 키스토어 파일 삭제echo [1/5] 기존 키스토어 파일 삭제 중...if exist "android\app\upload-keystore.jks" ( del /f /q "android\app\upload-keystore.jks" echo ✓ upload-keystore.jks 삭제 완료) else ( echo - upload-keystore.jks 파일이 없습니다)if exist "andr..
문제 상황Google Play Console에 Flutter 앱을 업로드하려고 할 때 다음과 같은 오류가 발생했습니다:디버그 모드로 서명한 APK 또는 Android App Bundle을 업로드했습니다. 출시 모드로 APK 또는 Android App Bundle에 서명해야 합니다.이 오류는 앱이 디버그 키로 서명되어 있어서 발생하는 문제입니다.Play Store에 업로드하려면 반드시 **출시용 키(Release Key)**로 서명된 앱이 필요합니다. 해결 방법1단계: Keystore 생성먼저 앱 서명에 사용할 키스토어(Keystore) 파일을 생성해야 합니다.프로젝트 루트 디렉토리에서 터미널을 열고 다음 명령어를 실행합니다:cd android/appkeytool -genkey -v -keystore up..
1. flutter clean # 이전 빌드 정리2. flutter pub get # 의존성 설치3. flutter build appbundle --release # AAB 빌드
연결된 디바이스 확인adb devices====== 예시 출력List of devices attachedR3CN202ABC device 현재 실행 중인 앱(프로세스) 전체 확인adb shell ps | grep u0_========== 예시 출력u0_a123 10793 1234 123456 ... com.stockexam.appu0_a124 10822 1234 123456 ... com.android.chrome 특정 앱의 PID 확인adb shell pidof -s com.stockexam.app========== 예시 출력10793 특정 PID 로그만 보기adb logcat --pid=10793 -v time 특정 PID 로그 중 JS/RN 로그만 보기adb logcat --pid=$(..
원하는 위치에 코드 삽입 console.log('✅ Hello World from OTA build!'); OTA 실행eas update --branch production --message "커밋명" 연결된 디바이스 확인adb devices====== 예시 출력List of devices attachedR3CN202ABC device 현재 실행 중인 앱(프로세스) 전체 확인adb shell ps | grep u0_========== 예시 출력u0_a123 10793 1234 123456 ... com.stockexam.appu0_a124 10822 1234 123456 ... com.android.chrome 특정 앱의 PID 확인 adb shell pidof -s com.stock..
https://drive.google.com/file/d/1V7KOHvvyW-Hz_mRUczfFOK5P-367ur9f/view?usp=sharing profile-character.zip drive.google.com // 동물 50개 (이름과 이미지 경로) const animals = [ { name: '호랑이', image: 'tiger' }, { name: '사자', image: 'lion' }, { name: '곰', image: 'bear' }, { name: '여우', image: 'fox' }, { name: '늑대', image: 'wolf' }, { name: '토끼', image: 'rabbit' }, { name: '다람쥐', image: '..
# Android 프로덕션 빌드 (AAB 파일)eas build --platform android --profile production# Android 개발 빌드 (APK 파일)eas build --platform android --profile development
순코딩
'분류 전체보기' 카테고리의 글 목록