android
Keystore file not set for signing config release 에러 발생
easy16
2020. 4. 24. 12:26
발생 사유는 release 모드 빌드시 sign할 keystore가 지정되지 않았기 때문
1, Default debug.keystore를 local project에 copy
2, project structure -> sign config 들어가서 release에 해당 패스를 설정
3, 아래의 default key password 및 alias를 입력한다.
(customized 된 경우, 생성된 keystore의 정보가 반드시 필요함)
디폴트 keystore 사용 시 아래의 값을 지정.
Keystore name: "debug.keystore"
Keystore password: "android"
Key alias: "androiddebugkey"
Key password: "android"
CN: "CN=Android Debug,O=Android,C=US"