Android 프로젝트 폴더 -> app -> build -> output -> mapping -> release -> mapping.txt


난독화한 엡에서 크래쉬 발생하는 경우

이걸 구글 스토어에 올려야지 

어느 코드에서 익셉션이 발생했는지 확인 가능


난독화 여부는 app의 build.gradle에서

buildTypes {
release {
//minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}


minifyEnabled를 true로 설정해야 함


난독화는 리버스 엔지니어링을 어렵게 하기 위해서 하는데

큰 의미는 없는 듯 하고... 안하는 것 보다 낫겠지.

+ Recent posts