We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dcc0115 + 3dd9e51 commit ea78c26Copy full SHA for ea78c26
example/lib/main.dart
@@ -262,7 +262,8 @@ class _MyHomePageState extends State<MyHomePage> with WidgetsBindingObserver {
262
// Ask for tracking consent.
263
Adjust.requestAppTrackingAuthorization().then((status) {
264
print('[Adjust]: Authorization status update!');
265
- switch (status) {
+ final int statusInt = status.toInt();
266
+ switch (statusInt) {
267
case 0:
268
print(
269
'[Adjust]: Authorization status update: ATTrackingManagerAuthorizationStatusNotDetermined');
0 commit comments