我正在使用wix.App的react-native-navigation(v1)在启动时崩溃,而在Android上没有任何错误消息,但在iOS上运行正常。
Navigation.startSingleScreenApp({
screen: {
screen: 'Home',
navigatorStyle:{navBarHidden:true,
disabledBackGesture:true,
hideBackButtonTitle: true,
navBarBackgroundColor:'#63DCAD',
navBarButtonColor:'#FFF',
navBarTextColor:'#FFF'},
},
drawer: {
left: {
screen: 'menu',
},
disableOpenGesture: true
}
});
答案 0 :(得分:0)
大多数情况是由于android配置导致的。
您是否已在android MainApplication.java
文件中添加了以下内容:
@Override
public String getJSMainModuleName() {
return "index";
}
如果您使用index.js
而不是index.ios.js
和index.android.js
作为入口点(这是React Native 0.49以来的默认设置)。
希望对您有帮助。