YD_S 개발로그
article thumbnail
Android - Keystore 생성 및 앱 서명하기
Android 2023. 4. 19. 16:00

● Android - Keystore 생성 및 앱 서명하기 1. Keystore 생성 keystore 파일명 지정 (디렉토리를 지정하여 생성할 수도 있다.) alias명 지정 keytool -genkey -v -keystore ~/[Keystore 파일명].jks -keyalg RSA -keysize 2048 -validity 10000 -alias [alias명] -storetype JKS 질문에 답하기 Enter Keystore password : [생성할 키스토어 비밀번호] Re-enter new password : [생성할 키스토어 비밀번호 확인] Whit is your first and last name? : [생성자 성과 이름] What is the name of your organizati..

article thumbnail
Build Options 정리
Flutter 2023. 2. 9. 14:36

flutter build 시 내가 주로 사용하는 옵션을 정리해보았다. 빌드 명령어 형식 flutter build [arguments] 1. Subcommand options 해당 옵션은 필수적으로 입력해야 된다. 없이 입력할 경우 subcommand를 입력하라고 터미널 창에 출력된다. 아래는 주로 사용하는 옵션이다. Command 설명 apk Android APK 파일로 Build appbundle Android App Bundle 파일로 Build ios iOS apllication Bundle로 빌드 ipa 배포용 archive Bundle 및 IPA 빌드 web web application Build 1-1. APK와 App Bundle의 차이 구글은 2021년 8월부터 구글 플레이에 등록되는 신규..