flutter踩坑小記:The number of method references in a .dex file cannot exceed 64K.


 

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

這句話的意思翻譯出來是:.dex文件中的方法引用數不能超過64K。

我的理解: 引用的第三方的方法超過了64K,需要在Android包下配置multidex減少第三方包引入(個人理解)

 

解決方案:

在android/app/build.gradle中的 dependencies 下添加 

implementation 'com.android.support:multidex:1.0.3'
 
在android/app/build.gradle中的 defaultConfig 下添加 
multiDexEnabled true
 
 

此方案不能保證一定解決問題,但可以試試。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM