我有一个使用本地文件require
显示 Web 内容的 WebView。
<WebView
source={ require('./inline_web_view/inline_web_view.html') }
injectedJavaScript={ scripts }
scrollEnabled={ this.props.scrollEnabled || false }
scalesPageToFit={ false }
style={{
width: this.state.width,
height: this.state.height,
}}
onNavigationStateChange={ (navState)=> this.onNavigationStateChange(navState) }
/>
这在开发模式下的 ios 和 Android 上完美运行,但是,似乎 HTML 文件未包含在 android 发布包中。
如何将其添加到捆绑包中?