반응형
Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

차근차근

안드로이드 "apk설치 실패하였습니다" 오류 해결 본문

개발

안드로이드 "apk설치 실패하였습니다" 오류 해결

철산92 2017. 12. 12. 18:14
반응형

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

        

  

반응형
Comments