Questions tagged [apptrackingtransparency]

66 questions
25
votes
6 answers

App Tracking Transparency Dialog does not appear on iOS

Apple reviewer has just rejected my app since ATT request doesn't appear: "We are unable to locate the App Tracking Transparency permission request when reviewed on iOS 15.0.1." My code is as shown below: if #available(iOS 14, *) { …
Ömer Karaca
  • 880
  • 1
  • 8
  • 13
17
votes
1 answer

App Store Rejection - Guideline 5.1.2 - Legal - Privacy - Data Use and Sharing

I use Firebase for user authentication, I just resubmitted my app and got the following rejection: Guideline 5.1.2 - Legal - Privacy - Data Use and Sharing We noticed you do not use App Tracking Transparency to request the user's permission before…
13
votes
2 answers

iOS 13 - Library not loaded: AppTrackingTransparency.framework/AppTrackingTransparency

I've started using AppTrackingTransparency framework with XCode 12 and my app works fine on iOS 14 but when I start my app on iOS 13 I get next error: dyld: Library not loaded:…
iUrii
  • 11,742
  • 1
  • 33
  • 48
10
votes
5 answers

iOS 15: How to display ATT dialog when the app starts in SwiftUI

In iOS 14, It could display ATT (App Tracking Transparency) dialog when app starts in SwiftUI as follows. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { …
donchan
  • 197
  • 1
  • 8
8
votes
1 answer

Apple App Tracking Transparency and Google Analytics

The recent WWDC Apple launched "App Tracking Transparency framework" and will be a part of iOS 14.3: With iOS 14, iPadOS 14, and tvOS 14, you will need to receive the user’s permission through the AppTrackingTransparency framework to track them or…
bjorkblom
  • 1,849
  • 3
  • 21
  • 31
6
votes
1 answer

Asking AppTrackingTransparency permission for using google analytics , is mandatory?

I am using Google Analytics SDK in my application. It uses the demographic area, age and other user informations. So, Am I need to ask permission for AppTracking manually or it was handled in google analytics SDK? Without AppTracking Permission,Will…
5
votes
1 answer

IOS: App rejected because of App Tracking Transparency on WebView

I'm working on an app made in React Native with Expo. It uses a web view to show the site in the app. Everything worked well, but when I submitted my app to the App Store, it got rejected. The mail said: We noticed you collect data to track after…
4
votes
1 answer

App Tracking Transparency with webview | Flutter app

My flutter app has access to some webviews, each webview opens a different page of the same website that has the cookie banner. I tought that the cookie banner would be enough for apple because the app doesn't actually track users, it's the website…
liz14
  • 168
  • 3
  • 14
4
votes
2 answers

Xamarin App Tracking Transparency Dialog does not appear since iOS 15

Since I started building my App for iOS 15 in Xamarin the Dialog with the Tracking Usage Description does not disappear anymore and it does not pass Apple's review. I tried with my iPhone 12 mini and also with various simulators. Simulators for iOS…
Ginbob89
  • 41
  • 1
4
votes
3 answers

Apple rejects app because of AppTrackingTransparency.framework (can't find it included in the app)

Just got this message from Apple this morning: We noticed that your Kids Category app includes analytics, advertising and collects, transmits, or has the ability to share personal information or device information with third parties.…
Ilya Karnaukhov
  • 3,838
  • 7
  • 31
  • 53
3
votes
0 answers

Module 'app_tracking_transparency' not found

flutter run works perfect, flutter build iOS works perfect, but when I archive through Xcode, build failed. I need a solution that does not involve updating flutter. thanks @import app_tracking_transparency; Module 'app_tracking_transparency' not…
Raffaelli L.C.
  • 5,237
  • 5
  • 11
  • 18
3
votes
0 answers

App Tracking Transparency implementation with firebase/facebook analytics

Since ios 14 developers are required to use App Tracking Transparency framework to request permissions from user for tracking. My app is running in flutter and uses firebase analytics and facebook analytics to log custom events for example:…
Code Spirit
  • 3,992
  • 4
  • 23
  • 34
3
votes
0 answers

RequestTrackingAuthorization on MacOS/MacCatalyst

I have an app for iOS, where request for tracking shows dialog. But when I run it on MacOS(MacCatalyst) no dialog is showed. I tried to create new project for testing but it also not working. I call in…
ZArez
  • 31
  • 2
3
votes
0 answers

Can we init Firebase if user has rejected AppTrackingTransparency dialog?

Can we init Firebase Analytics if user has rejected AppTrackingTransparency dialog? As noted here: https://developer.apple.com/app-store/user-privacy-and-data-use/ With iOS 14, iPadOS 14, and tvOS 14, you will need to receive the user’s permission…
3
votes
2 answers

Can we check if Allow Apps to Request to Track toggle is ON

In iOS 14 we have a new feature to track IDFA. It’s the default and only available in iOS 14. (Settings > Privacy > Tracking > Allow Apps to Request to Track). I want to check if Allow Apps to Request to Track toggle is ON or OFF using objective-C.…
Phạm Ân
  • 175
  • 2
  • 10
1
2 3 4 5