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



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

到目前为止,我有两个iOS应用程序,在应用程序发布后显示一次AdMob间隙广告。两者完全相同。两者在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.

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

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

// request access
TrackingTransparency.requestTrackingPermission().then(status => {
if (status === TrackingStatus.Authorized) {
// enable tracking features
}
});

最新更新