1. android: App requires Multidex support
在运行安卓时,引入方法过多会报 App requires Multidex support。
在android/app/src/main/AndroidManifest.xml中加 android:name
<application
android:name="androidx.multidex.MultiDexApplication"
/>
在app的build.gradle中加入 multiDexEnabled true
defaultConfig {
applicationId "com.example.finka_main.host"
...
multiDexEnabled true
}
2. ios: Unable to boot the Simulator
Unable to boot the Simulator. Domain: NSPOSIXErrorDomain Code: 60 Failure...
在活动监视器搜xcode强制关闭xcode,然后将simulator相关进程强制关闭
3.代码没问题,缓存有问题
修复步骤:1. 把编译失败提示的路径下的缓存文件删掉 2. 删除lock文件,如果不行则所有黄色的编译出的文件 3.重新pub get (pub upgrade可选)
网友评论