Error: Cannot fit requested classes in a single dex file 解決方法

Error: Cannot fit requested classes in a single dex file (# methods: 72725 > 65536)

 

1.在app的gradle下defaultConfig配置添加:
multiDexEnabled true

2.在app的gradle下的dependencies配置添加:
implementation 'com.android.support:multidex:1.0.3'

 

參考:https://developer.android.com/studio/build/multidex

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章