【发布时间】:2021-07-25 05:34:44
【问题描述】:
我的应用更新已被苹果拒绝,因为它需要应用跟踪透明度,我在我的 ios info.plist 文件中添加了以下行
<key>NSUserTrackingUsageDescription</key>
<string>Your data will be used to connect external sites to allow you to log-in and track your orders using your email.</string>
我试过这个插件https://github.com/chemerisuk/cordova-plugin-idfa
getInfo(){
return this.platform
.ready()
.then(() => cordova.plugins.idfa.getInfo())
}
但是当我运行 ionic cordova build iOS 时它显示错误。 错误是:cannot find idfa property in cordova.plugins
是否有任何官方 ionic cordova 插件来实现应用跟踪透明度? 或者有人有为此目的的定制解决方案吗? 请帮忙。
【问题讨论】:
标签: ios cordova ionic-framework