React Native 应用程序仅在 iOS 发布模式下崩溃
2022-08-24
1616
当应用程序在发布模式下运行时,我收到以下错误。 此崩溃发生在应用程序在模拟器中启动时
Terminating app due to uncaught exception 'RCTFatalException: Unhandled JS Exception: TypeError: undefined is not an object (evaluating 't.insertRule=function(t,n){return t<=this.length&&(this.rules.splice(t,0,n),this.length++,!0)}')', reason: 'Unhandled JS Exception: TypeError: undefined is not an object (evaluating 't.insertRule=function(t,n){return t<=this.length&&(this.rules.splice(t,0,n),this.length++,!0)}'), stack:
同时,此应用程序在调试模式下运行良好。
您能帮我解决发布模式下出现的问题吗?
2个回答
我们已经分析了应用程序中的每个库,并且它使用了“ThemeProvider”包。
它应该像下面这样导入到移动基础应用程序中。
import { ThemeProvider } from "styled-components/native";
JAK
2022-09-14
您的 js 包代码中有一个未捕获的异常。您还必须在调试模式下修复它。但在发布模式下,未捕获的异常会触发崩溃。
מתניה אופן
2022-08-24