我想在Android上获得ADID,在IOS上获得IDFA,如何在react native上做到这一点?
我使用这个名为react-native-idfa的库,但该库在IDFA上始终未定义

最佳答案

我们遇到了同样的问题。确保您的iAd.framework已链接到Xcode->“构建阶段”:

javascript - 如何在 native  react 中获取IDFA和ADID?-LMLPHP

他们确实在他们的github https://github.com/FreebirdRides/react-native-idfa#podfile上提到了这一点

在“将二进制文件与库链接”下添加AdSupport.framework:

javascript - 如何在 native  react 中获取IDFA和ADID?-LMLPHP

如果您想使用我们的,我们分叉了react-native-idfa:

https://github.com/FreebirdRides/react-native-idfa

该提交尤其是:

https://github.com/FreebirdRides/react-native-idfa/commit/9c6992a53dd109bed41e8c8300906a71e6068043

10-06 11:58