Cocos-js 打包apk cc.tableview闪退

cocos-js 打包apk cc.tableview闪退,但是在谷歌浏览器运行是可以正常显示的。

最后定位在
this.addChild(this.tableView);
这个地方出问题。想问一下打包apk,这个怎么要怎么解决才不会闪退,能正常显示。

代码如下:
this.tableView = new cc.TableView(this, cc.size(contentSize.width, 413));
this.tableView.setDirection(cc.SCROLLVIEW_DIRECTION_VERTICAL); //设置table 方向
//this.tableView.setAnchorPoint(cc.p(0.5,0))
this.tableView.x = -contentSize.width / 2;
this.tableView.y = -contentSize.height / 2 + 20;
this.tableView.setDelegate(this);
this.tableView.setVerticalFillOrder(cc.TABLEVIEW_FILL_TOPDOWN);
this.addChild(this.tableView);
this.tableView.reloadData(); //加载table

或许你应该留个引擎版本号先

@panda

不好意思,cocos2d-js版本号为3.6,jdk用的是1.7,ndk版本为r10e