Dart & Flutter

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

ju_young 2023. 2. 4. 12:26
728x90

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

이 에러는 method가 64K를 넘었을때 나오는 에러이다.

 

안드로이드 기준 해결 방법은 다음과 같다.

 

1. build.gradle 수정

android>app>build.gradle

defaultConfig {
        ...
        multiDexEnabled true
    }
    
dependencies {
    ...
    implementation 'com.android.support:multidex:2.0.1'
    }

defaultconfig에 multiDexEnabled true 를 추가해주고 dependencies에 implementation 'com.android.support:multidex:2.0.1' 를 추가해주면 된다. multidex의 버전(2.0.1)은 https://developer.android.com/studio/build/multidex 에서 확인해보면 된다.

728x90