react-native安卓运行报错:The number of method references in a .dex file cannot exceed 64K.

错误原因:App里面方法数超过64K
解决方法:
在android/app/build.gradle中添加
implementation 'com.android.support:multidex:1.0.3'
1

defaultConfig中添加

multiDexEnabled true
1

android中添加

dexOptions {
jumboMode true
javaMaxHeapSize "4g"
}
1
2
3
4

————————————————
版权声明:本文为CSDN博主「张瑞东」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42368597/article/details/112002279

posted @ 2021-10-09 16:52  我是真的大米  阅读(53)  评论(0编辑  收藏  举报