Reputation: 41
I have an iOS app that I would like to advertise using Google Ads. However, because I can't track conversions it just says "Misconfigured".
I am currently updating my app and I have create a Firebase Project and imported Firebase into my App as Google Ads suggested.
But I am now concerned about Apple's App Tracking Transparency and the 'nutrition' label. If I select the dependancy "FirebaseAnalyticsWithoutAdIdSupport" is that enough to set up a conversion, like "First Open" to satisfy Google Ads but also enough that I don't need to ask permission from my app user to track anything.
Personally I don't really want to track or collect any data, alls I want is for my Google Ads to work so if there is another way around it that would be preferred.
Upvotes: 1
Views: 1669
Reputation: 404
If you plan not to implement ATT framework, Firebase Analytics SDK automatically registers your app to Apple's SKAdNetwork to track your attribution. As per this Google Ads doc, it says that SKAdnetwork works with Google Ads and Firebase, so you should be able to track your ads. Make sure you're using the latest Firebase Analytics SDK version for iOS. As the SKAdnetwork is only available on SDK version 6.29.0 and higher versions.
Upvotes: 1