Meteor使用mobile-config.js
自动创建Cordova的config.xml
。从iOS 10开始,开发人员必须包含各自的原因,他们将访问Cordova构建中由Cordova自行修改的Info.plist
文件中的麦克风,相机,联系人等。
我需要在Cordova的config.xml
中加入以下内容,以请求访问设备麦克风。
<edit-config target="NSMicrophoneUsageDescription" file="*-Info.plist" mode="merge">
<string>need microphone access to record sounds</string>
</edit-config>
如何使用Meteor mobile-config.js
维护edit-config
标记?
答案 0 :(得分:0)
我找到了解决方案。以下内容应添加到public function webshops()
{
return $this->hasMany(Webshop::class);
}
public function products()
{
return $this->morphMany(Product::class, 'productable');
}
。
mobile-config.js
如果您需要,官方documentation中有关于在Meteor中配置插件的更多信息。