标签: android flutter
如何解决dex错误,该错误表示安装时无法加载超过65K。
答案 0 :(得分:0)
在您的android/app/build.gradle中,将multiDexEnabled设置为true,如下:
android/app/build.gradle
multiDexEnabled
true
defaultConfig { applicationId "com.xyz" ... multiDexEnabled true }