목차

반응형

개요

유니티 빌드시 아래 오류가 나서 multidex 설정을 했음에도 불구하고 계속 이 에러가 나는 사람을 대상으로 하는 글이다.

The number of method references in a .dex file cannot exceed 64K

 

https://stackoverflow.com/questions/36785014/the-number-of-method-references-in-a-dex-file-cannot-exceed-64k-api-17

 

The number of method references in a .dex file cannot exceed 64k API 17

I am building an app with SugarORM Library but when I try to build the project for API 17 (didn't check for others) it shows build error. Information:Gradle tasks [:app:assembleDebug] :app:pre...

stackoverflow.com

위 게시물에 설명이 자세하게 나와있다.

 

하지만 나는 설정대로 했지만 계속해서 The number of method references in a .dex file cannot exceed 64K 오류가 났다.

처음에는 특정 라이브러리 문제인가 싶었는데 다른문제였다.

 

해결방법

multiDexEnabled true를 mainTemplate.gradle 파일에 작성하라고 써있지만 그것이 아니라

 

Custom Launcher Gradle Template을 활성화한다음 생성되는 gradle 파일에다가 multiDexEnabled true를 해주면 해결된다.

 

반응형