You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (const consentType of [
ConsentType.AdStorage,
ConsentType.AdUserData,
ConsentType.AdPersonalization,
]) {
await FirebaseAnalytics.setConsent({
type: consentType,
status: ConsentStatus.Denied,
});
}
And I activate Firebase depending on the state of the consent (this works through a custom modal):
await FirebaseAnalytics.setEnabled({enabled: state === 'granted'});
I found this info in Google Analytics Firebase, so as far as I understand, an ATT is not needed here, but I want to check this out, so I don't have in the future the surprise that my App is not compliant.
Did anyone have an experience with this kind of interaction?
If ATT is needed, how would you implement this? Is there a guide for Capacitor?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I use the
@capacitor-firebase/analyticsto track user experience anonymously. Because of that I disabled IDFA as follows:CapacitorFirebaseAnalytics/AnalyticsWithoutAdIdSupport<key>FIREBASE_ANALYTICS_COLLECTION_ENABLED</key><false/>My question is, do I still need to use ATT in this case? I never enable IDFA, I only use:
And just to be sure:
And I activate Firebase depending on the state of the consent (this works through a custom modal):
I found this info in Google Analytics Firebase, so as far as I understand, an ATT is not needed here, but I want to check this out, so I don't have in the future the surprise that my App is not compliant.
Did anyone have an experience with this kind of interaction?
If ATT is needed, how would you implement this? Is there a guide for Capacitor?
Beta Was this translation helpful? Give feedback.
All reactions