File tree 1 file changed +6
-2
lines changed
analytics/testapp/Assets/Firebase/Sample/Analytics
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -128,13 +128,17 @@ public void AnalyticsSetConsent() {
128
128
FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( )
129
129
{
130
130
{ ConsentType . AnalyticsStorage , ConsentStatus . Denied } ,
131
- { ConsentType . AdStorage , ConsentStatus . Denied }
131
+ { ConsentType . AdStorage , ConsentStatus . Denied } ,
132
+ { ConsentType . AdUserData , ConsentStatus . Denied } ,
133
+ { ConsentType . AdPersonalization , ConsentStatus . Denied }
132
134
} ) ;
133
135
FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( ) ) ;
134
136
FirebaseAnalytics . SetConsent ( new Dictionary < ConsentType , ConsentStatus > ( )
135
137
{
136
138
{ ConsentType . AnalyticsStorage , ConsentStatus . Granted } ,
137
- { ConsentType . AdStorage , ConsentStatus . Granted }
139
+ { ConsentType . AdStorage , ConsentStatus . Granted } ,
140
+ { ConsentType . AdUserData , ConsentStatus . Granted } ,
141
+ { ConsentType . AdPersonalization , ConsentStatus . Granted }
138
142
} ) ;
139
143
}
140
144
You can’t perform that action at this time.
0 commit comments