答案 0 :(得分:0)
看起来function getGroups($user_id) {
$this->db->select ( '*' );
$this->db->from ( 'user' );
$this->db->join ( 'groups', 'groups.user_id = user.id');
$this->db->join ( 'shop', 'shop.group_id = groups.group_id');
$this->db->where('user.id',$user_id);
$this->db->group_by(array('groups.id','shop.id'));
$this->db->order_by("groups.id", "desc");
return $this->db->get()->result_array();
}
方法可能正在从外部库/框架调用方法,并且该框架未针对get_secret
进行编译。因此,您必须获得为arm64
编译的该框架的副本,或者更改项目的活动体系结构,以使用该库支持的体系结构编译应用程序。