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
'Dart & Flutter' 카테고리의 다른 글
[Flutter] Unhandled Exception: type 'List<dynamic>' is not a subtype of type 'List<String>?' in type cast (0) | 2023.02.15 |
---|---|
[Flutter] BLOC: state management (0) | 2023.02.07 |
[Flutter] setstate 없이 Button 사용 (0) | 2023.01.30 |
[Flutter] VSCode Settings (0) | 2023.01.15 |
[Flutter] Installation (Windows) (0) | 2023.01.14 |