React native 与react native使用twilio聊天

React native 与react native使用twilio聊天,react-native,twilio,React Native,Twilio,我正在尝试使用带有react native的twilio聊天,当远程调试器处于活动状态时,我可以在ios和android上使用它,但当我使用没有调试器的android时,我无法初始化客户端 有人用过吗 这是代码的重要部分: import { Client } from 'twilio-chat'; this.client = await Client.create(chatToken).catch(err => this.onChatLoadFailed(err)); if (!this

我正在尝试使用带有react native的twilio聊天,当远程调试器处于活动状态时,我可以在ios和android上使用它,但当我使用没有调试器的android时,我无法初始化客户端

有人用过吗

这是代码的重要部分:

import { Client } from 'twilio-chat';

this.client = await Client.create(chatToken).catch(err => this.onChatLoadFailed(err));
if (!this.client) return this.onChatLoadFailed(this.client);
this.channels = await loadChannels();
和一部分警告日志

TwilsockError@http://10.0.2.2:8081/index.delta?platform=android&dev=true&minify=false
TwilsockUpstreamError@http://10.0.2.2:8081/index.delta?platform=android&dev=true&minify=false
使用外部调试器没有问题,所以我希望它在没有调试器所具有的V8引擎的情况下工作