프로그램/Ant
android - multi-dex(sub dex) 만들기
ant 스크립트는 android-sdk\tools\ant 위치에 있다.(build.xml)참고로 sdk 버젼 바다 ant 빌드스크립트는 다르다. 어느정도 버젼마다 호환은 된다.ant build 에서 target -compile 실행 후 실행 되도록 subdex를 만들 target 하나를 추가해 주자.proguard 를 사용한다면 proguard 실행 후 실행되도록 추가.target -compile 실행 후 bin 위치에 컴파일된 .class 된 파일들이 모여 있을것이다.이 .class 를 subdex 로 만들 부분과 maindex 부분을 분리를 한다.subdex로 묶을 .class 파일을 다른 위치에 복사 그리고 이 .class 를 jar 로 묶는다. 이제 코드 설명. Converting compiled..
2013. 7. 22. 18:16