[Flutter] 플러터 Failed to read key key from store "android/app/key.jks" : Integrity check failed:


[Flutter] 플러터 Failed to read key key from store "android/app/key.jks" : Integrity check failed:

Java 버전에 따른 옵션 추가 Java9 버전 부터는 "default storetype"이 "pcks12" 라고 합니다. Java8은 기본 방법대로 사용하면 됩니다. 기존 방법 keytool -genkey -v -keystore ~/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key 뒤에 "-storetype JKS" 옵션을 넣으면 된다. keytool -genkey -v -keystore ~/key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key -storetype JKS 참고 링크 Flutter 앱 서명 key.jks 읽기 실패 Failed to read key key from store "android/app/key.jks" : Integrity check failed: java.security.NoSuchAlgorithmException: Algorithm Hmac...


#failed #flutter #java9 #key #NoSuchAlgorithmException #플러터

원문링크 : [Flutter] 플러터 Failed to read key key from store "android/app/key.jks" : Integrity check failed: