Nativescript - структура прозрачности отслеживания приложений (ATT)

Я использую устаревший плагин для показа рекламы через Google AdMob framework - 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.

В: Может быть, кто-нибудь знает, как правильно реализовать в приложении Nativescript функции AppTrackingTransparency?

1 ответ

Думаю, вам стоит взглянуть на этот плагин (https://market.nativescript.org/plugins/@nstudio/nativescript-tracking-transparency/). Там также примерно объясняется, что вам нужно делать.

      // request access
TrackingTransparency.requestTrackingPermission().then(status => {
  if (status === TrackingStatus.Authorized) {
    // enable tracking features
  }
});
Другие вопросы по тегам