URL : http://caliou.tistory.com/256
When I develop this integration, it seems ProGuard hasn't tested with SQLCipher yet. So I have to exclude SQLCipher libraries in ProGuard configuration.
-keep public class info.guardianproject.database.** {
*;
}
-libraryjars libs/commons-codec.jar
-libraryjars libs/guava-r09.jar
-libraryjars libs/jsr305-1.3.9.jar
-libraryjars libs/sqlcipher.jar
-libraryjars assets/icudt46l.zip
If you find errors similar with insertWithOnConflict or Verifier rejected class from SQLCipherpackage, you should upgrade your ProGuard libraries in your android-sdk.
'Programming > Android Java' 카테고리의 다른 글
[Tool]Proguard를 사용하여 난독화 진행서 오류 해결 (0) | 2014.03.13 |
---|---|
[Tool] Proguard 오류입니다.. apk 가 안뽑히는데 ... 봐주세요 ..; (0) | 2014.03.13 |
[Tool]Android Jar 파일만 ProGuard 적용하기 (0) | 2014.03.13 |
[Tool] 안드로이드 ProGuard 사용법 (소스 난독화, 암호화) (0) | 2014.03.13 |
[Tool] 이클립스 내에서 안드로이드 제공하는 소스 난독화(ProGuard) 적용 (0) | 2014.03.13 |