我正在尝试将twilio-chat与react-native结合使用,当远程调试器处于活动状态时,我设法在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引擎的情况下工作。