如何为模拟器构建 react-native 缩小的“产品”应用程序?

Posted

技术标签:

【中文标题】如何为模拟器构建 react-native 缩小的“产品”应用程序?【英文标题】:How to build react-native minified "prod" app for simulator? 【发布时间】:2015-10-01 18:02:46 【问题描述】:

如何在模拟器上以 production 模式运行 react-native 应用程序?我想出了如何生成缩小包...

$ react-native bundle --minify
Building package...
transforming [========================================] 100% 302/302
Build complete
Successfully saved bundle to ios/main.jsbundle

...但我不明白如何将ios/main.jsbundle 加载到模拟器中。

【问题讨论】:

【参考方案1】:

我正在使用以下内容。 Xcode 不是从 iOS/main.jsbundle 而是从 iOS/PROJ/main.jsbundle 加载的。这可能只是我的情况,因为我已经升级了几次 react-native 版本。

$ react-native bundle --out iOS/MyProj/main.jsbundle --minify

关于产品,请使用?dev=false。还要确保构建为“发布”方案。

// AppDelegate.m
jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?dev=false"];

【讨论】:

以上是关于如何为模拟器构建 react-native 缩小的“产品”应用程序?的主要内容,如果未能解决你的问题,请参考以下文章

如何为 react-native 本机 ui 组件创建打字稿类型定义?

如何为 Apple 的大图像缩小 iOS 示例设置最大缩放限制?

如何为 tableview 单元格执行放大、缩小动画?

如何使用 DrawerLayoutAndroid 组件在 react-native 应用程序中构建抽屉?

如何为测试目的模拟网络故障(在 C# 中)?

如何为 std::vector 复制或使用隐式缩小转换禁用 Visual Studio 警告 C4244