[android] Keystore was tampered with, or password was incorrect
Programming/Android 2015. 9. 20. 17:49android adt(eclipse)에서 default keystore 대신 새로 생성한 keystore를 넣을 때 아래와 같은 에러가 나는경우가 있습니다.
Keystore was tampered with, or password was incorrect |
잘못된 keytstore를 넣었을 리는 없으니 패스워드가 틀린 것입니다
아마도 default password 와 달라서인것 같은데.. 아무리 찾아봐도 password를 변경할 방법을 찾을 수가 없습니다.
(android studio는 password는 넣을 수 있었던것 같으나 아직 확인하진 못했습니다.)
쉽게 하는 방법은 keysotre의 password를 default password로 만들어주는 것이겠죠
이것은 다음과 같은 방법으로 쉽게 할 수 있습니다.
keytool -storepasswd -keystore path_to_keystorefile 예제> keytool -storepasswd -keystore path_to_keystorefile D:\keystore\eclipseKey.keystore |
reference >
http://stackoverflow.com/questions/2889238/keystore-change-passwords
'Programming > Android' 카테고리의 다른 글
[Android] Android Google Plus getCurrentPerson returns null (0) | 2015.11.05 |
---|---|
[android] cannot recover key android (2) | 2015.09.20 |
[android] 라이브러리 중복해서 쓸 때, android v4 에러의 해결 (0) | 2015.09.14 |
[android] All versions of the libraries must be the same at this time (0) | 2015.09.10 |
[android] volley framework build with ant (0) | 2015.09.10 |