1

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

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

    <key>NSUserTrackingUsageDescription</key>
    <string>The app use data for tracking Opart users.</string>

第一个通过审核没有任何问题。另一个卡住了拒绝。

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.

问:也许有人知道如何在 Nativescript 应用程序中正确实现 AppTrackingTransparency 功能?

4

1 回答 1

2

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

// request access
TrackingTransparency.requestTrackingPermission().then(status => {
  if (status === TrackingStatus.Authorized) {
    // enable tracking features
  }
});
于 2021-05-27T12:47:00.780 回答