3

How i can retrieve Apple IDFA in Flutter App? I have already tried advertising_id plugin, but it crashes on Android and doesn't retrieve ID at IOS.

Marcel Golob
  • 451
  • 1
  • 5
  • 9

1 Answers1

4

Did you check this package?

First add the package to your dependencies (pubspec.yaml)

dependencies:
  advertising_id: ^0.9.2

Then run get packages to install it. Then add it to your file:

import 'package:advertising_id/advertising_id.dart';

Then use it like:

print(await AdvertisingId.id);

I checked it and I couldn't make it work on iOS but it is working on Android. I hope this helps.

Sevki Baba
  • 336
  • 1
  • 8