cocos creator 3d v1.1.0 安卓微信内置浏览器双指不响应

使用cocos creator 3d v1.1.0 写双指触摸,ios 微信扫一扫可以实现,安卓微信内置浏览器不能实现双指。萌新求助各位大佬

public onLoad() {
cc.systemEvent.on(cc.SystemEvent.EventType.TOUCH_START, this.onTouchStart, this);
}
public onTouchStart(t: Touch, e: EventTouch) {

    var touches = e.getTouches();
    this.lable.string += touches.length;
    for (let i = 0; i < touches.length; i++) {
        var pos = new cc.Node("touch" + i)
        var text = pos.addComponent(cc.Label);
    }
    if (touches.length == 1) {
        // 一根手指是移动,这里不用写任何代码       
    }
    else if (touches.length == 2) {
      
    }

}

我想要实现的功能是双指放大缩小模型,使用ios微信的内置浏览器已经实现,安卓微信浏览器只能识别单指,难道还需要做一些设置吗??

这是我的Demo和效果视频,求各位大佬关注
Demo下载地址 http://47.93.33.44:5000/C3DTouchDemo/A_ShowModel_Demo.rar

演示视频地址:http://47.93.33.44:5000/C3DTouchDemo/ios和安卓的测试效果.mp4

安卓手机型号:华为meta20