File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
analytics/testapp/Assets/Firebase/Sample/Analytics Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -128,13 +128,17 @@ public void AnalyticsSetConsent() {
128128 FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( )
129129 {
130130 { ConsentType . AnalyticsStorage , ConsentStatus . Denied } ,
131- { ConsentType . AdStorage , ConsentStatus . Denied }
131+ { ConsentType . AdStorage , ConsentStatus . Denied } ,
132+ { ConsentType . AdUserData , ConsentStatus . Denied } ,
133+ { ConsentType . AdPersonalization , ConsentStatus . Denied }
132134 } ) ;
133135 FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( ) ) ;
134136 FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( )
135137 {
136138 { ConsentType . AnalyticsStorage , ConsentStatus . Granted } ,
137- { ConsentType . AdStorage , ConsentStatus . Granted }
139+ { ConsentType . AdStorage , ConsentStatus . Granted } ,
140+ { ConsentType . AdUserData , ConsentStatus . Granted } ,
141+ { ConsentType . AdPersonalization , ConsentStatus . Granted }
138142 } ) ;
139143 }
140144
You can’t perform that action at this time.
0 commit comments