차근차근
안드로이드 "apk설치 실패하였습니다" 오류 해결 본문
반응형
1. build.gradle(Module: app)에 추가
android{
signingConfigs {
release {
v2SigningEnabled false
}
}
}
2. Enable Instant Run to hot swap code/resource changes on deploy(default enbled) 체크 해제
File -> Settings -> Build.Execution,Deplyment -> Instant Run에 위에 위치
3. apk 빌드시 Signature Versins 부분에 v1만 부분체크 후 apk생성
참조 : https://developer.android.com/about/versions/nougat/android-7.0.html#apk_signature_v2
http://blueamor.tistory.com/1098
http://bigenergy.tistory.com/435
반응형
'개발' 카테고리의 다른 글
안드로이드 웹뷰 alert창 url표시 제거 (0) | 2017.12.22 |
---|---|
a태그 스크롤 맨위 막기 (0) | 2017.12.22 |
MYSQL (REGEXP) 정규식 사용 검색 (0) | 2017.12.05 |
제이쿼리 체크박스 이벤트처리 (0) | 2017.12.04 |
자바스크립에러 Uncaught TypeError: is not a function (0) | 2017.12.04 |
Comments