사용자 도구

사이트 도구


android:multidex

MultiDex 관련 설정하기

한국어

관련 에러 코드

Cannot fit requested classes in a single dex file (# methods: 75351 > 65536)

왜 발생하는가?

Android DEX 파일은 모든 메소드들의 갯수가 (라이브러리를 포함한 모든 메소들의 합) 65536 개를 넘을 수 없다. 보통 64K 제한이라고 부름

이 경우 참조하는 라이브러리 갯수를 줄이거나 메소드 최적화등을 통해 해결하거나, MultiDex 를 사용하도록 설정하면 해결할 수 있다.

MultiDex를 enable하는 방법은 다음 링크를 확인하면 된다.

https://developer.android.com/studio/build/multidex?hl=ko#java

English

Error code that is related with Dex

Cannot fit requested classes in a single dex file (# methods: 75351 > 65536)

Why?

Android Dex file has limitation about reference of methods (all of methods including libraries) Methods can not over than 65536 (it is called 64K)

In this case, You can fix this using multidex

How to enable?

https://developer.android.com/studio/build/multidex?hl=ko#java

android/multidex.txt · 마지막으로 수정됨: 2022/11/05 08:18 저자 lindol