我正在使用过时的插件通过谷歌AdMob框架- https://market.nativescript.org/plugins/nativescript-admob/显示广告
到目前为止,我有2个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.问:也许有人知道如何在原生脚本应用程序中正确实现AppTrackingTransparency特性?
发布于 2021-05-27 20:47:01
我认为你应该看看这个插件(https://market.nativescript.org/plugins/@nstudio/nativescript-tracking-transparency/)。这里还粗略地解释了你必须做什么。
// request access
TrackingTransparency.requestTrackingPermission().then(status => {
if (status === TrackingStatus.Authorized) {
// enable tracking features
}
});https://stackoverflow.com/questions/66715996
复制相似问题