首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Nativescript -应用程序跟踪透明度(ATT)框架

Nativescript -应用程序跟踪透明度(ATT)框架
EN

Stack Overflow用户
提问于 2021-03-20 05:48:15
回答 1查看 393关注 0票数 0

我正在使用过时的插件通过谷歌AdMob框架- https://market.nativescript.org/plugins/nativescript-admob/显示广告

到目前为止,我有2个iOS应用程序与AdMob间隙广告显示在应用程序启动后一次。两者是相同的。两者在Info.plist中都有相同的记录:

代码语言:javascript
复制
    <key>NSUserTrackingUsageDescription</key>
    <string>The app use data for tracking Opart users.</string>

第一个通过了审查,没有任何问题。另一个被拒绝了。

代码语言:javascript
复制
Guideline 2.1 - Information Needed


We're looking forward to completing the review of your app, but we need more information to continue. Specifically, we noticed that your app uses the AppTrackingTransparency framework, but we haven't been able to locate the relevant AppTrackingTransparency permission requests.

While it is not required to implement AppTrackingTransparency at this time, we check to make sure the implementation is compliant with our guidelines when we detect the framework in an app. 

Next Steps

If your app integrates AppTrackingTransparency, please indicate where in your app we can find the AppTrackingTransparency permission request.

If your app does not integrate AppTrackingTransparency, please indicate this information in the Review Notes section for each version of your app in App Store Connect when submitting for review.

Resources 
See the app privacy question update.
Learn more about how AppTrackingTransparency protects user's privacy and data.



Since your App Store Connect status is Metadata Rejected, we do NOT require a new binary. To revise the metadata, visit App Store Connect to select your app and revise the desired metadata values. Once you’ve completed all changes, reply to this message in Resolution Center and we will continue the review.

问:也许有人知道如何在原生脚本应用程序中正确实现AppTrackingTransparency特性?

EN

回答 1

Stack Overflow用户

发布于 2021-05-27 20:47:01

我认为你应该看看这个插件(https://market.nativescript.org/plugins/@nstudio/nativescript-tracking-transparency/)。这里还粗略地解释了你必须做什么。

代码语言:javascript
复制
// request access
TrackingTransparency.requestTrackingPermission().then(status => {
  if (status === TrackingStatus.Authorized) {
    // enable tracking features
  }
});
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/66715996

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档