File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
packages/firebase_analytics/firebase_analytics/example Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 25
25
<string >arm64 </string >
26
26
</array >
27
27
<key >MinimumOSVersion </key >
28
- <string >11 .0 </string >
28
+ <string >12 .0 </string >
29
29
</dict >
30
30
</plist >
Original file line number Diff line number Diff line change 1
1
# Uncomment this line to define a global platform for your project
2
- platform :ios , '11 .0'
2
+ platform :ios , '12 .0'
3
3
4
4
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5
5
ENV [ 'COCOAPODS_DISABLE_STATS' ] = 'true'
Original file line number Diff line number Diff line change @@ -130,7 +130,11 @@ class _MyHomePageState extends State<MyHomePage> {
130
130
}
131
131
132
132
Future <void > _testSetConsent () async {
133
- await widget.analytics.setConsent (adStorageConsentGranted: true );
133
+ await widget.analytics.setConsent (
134
+ adStorageConsentGranted: true ,
135
+ adUserDataConsentGranted: true ,
136
+ adPersonalizationSignalsConsentGranted: true ,
137
+ );
134
138
setMessage ('setConsent succeeded' );
135
139
}
136
140
You can’t perform that action at this time.
0 commit comments