idfa

iOS Firebase Analytics : It seems that firebase analytics does not collect user auto-collection information

拟墨画扇 提交于 2020-04-30 10:23:27
问题 My app is currently using google analytics. And try to introduce firebase analytics. We have included the AdSupport.framework in the project as described in the manual to automatically collect user attributes using idfa. However, when the filter is applied in the firebase analytics dashboard console, it appears as if it is not collected. How do I automatically collect user information? Is it just collecting apps downloaded from the App Store? my develop environment: Xcode 9.4.1 Firebase (5.4

IOS application that uses Facebook SDK, which options should be selected on iTunes Connect IDFA?

荒凉一梦 提交于 2020-01-03 02:41:11
问题 My iOS Application is using Facebook SDK [FBSettings setDefaultAppID:FACEBOOK_ID]; [FBAppEvents activateApp]; So Which options should be selected on iTunes Connect? Also Should I Check Limit Ad Tracking Settings Thanks for your answers, 回答1: Facebook uses the IDFA to attribute installs. So you should check the second checkbox. In case you also show ads, then you should check the first box too. Good luck with your submission! 来源: https://stackoverflow.com/questions/27296913/ios-application

unable to have a unique ios device, as advertising identifier returned as 00000000-0000-0000-0000-000000000000 after ios 10

时光怂恿深爱的人放手 提交于 2019-12-25 13:23:30
问题 I used to use apples advertising identifier as the Unique device ID key, to keep a track of users device, But with upgrade to iOS 10 and limit ad tracking returning IDFA as 00000000-0000-0000-0000-000000000000 , I am unable to maintain the device records, Is there any other replacement which I can use for device id to be stored unique to a user as he signs up. 回答1: As per my understanding of your requirement your best option is: Identifier for Vendor (IDFV) Identifier for Vendor (IDFV) change

unable to have a unique ios device, as advertising identifier returned as 00000000-0000-0000-0000-000000000000 after ios 10

泪湿孤枕 提交于 2019-12-25 13:23:22
问题 I used to use apples advertising identifier as the Unique device ID key, to keep a track of users device, But with upgrade to iOS 10 and limit ad tracking returning IDFA as 00000000-0000-0000-0000-000000000000 , I am unable to maintain the device records, Is there any other replacement which I can use for device id to be stored unique to a user as he signs up. 回答1: As per my understanding of your requirement your best option is: Identifier for Vendor (IDFV) Identifier for Vendor (IDFV) change

IDFA & Google Conversion Tracking SDK [closed]

我的未来我决定 提交于 2019-12-21 02:34:20
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Apple started explaining about your app. use of the IDFA (Advertising Identifier) on app. submission. I am using Google Conversion Tracking SDK upon my client request. Which requires to add Adsupport.framework to the project Build Phases in xCode. Adsupport.framework uses the IDFA. On App. submission you will be

How to retrieve iPhone IDFA from API?

大兔子大兔子 提交于 2019-12-17 22:29:28
问题 I would like to get the device IDFA . How to get this info from iOS official API ? 回答1: First of all: #import <AdSupport/ASIdentifierManager.h> If you would like to get it as an NSString, use: [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString] So your code might look like this: NSString *idfaString = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]; 回答2: You first have to check if user user has decided to opt out from ad tracking . Only if he

How do I check where my app is using IDFA

断了今生、忘了曾经 提交于 2019-12-17 17:32:24
问题 While submitting my app to the App Store, I got this message: "Your app is using the Advertising Identifier (IDFA). You must either provide details about the IDFA usage or remove it from the app and submit your binary again." I am no longer displaying ads so I said that I was not using the IDFA when I was asked. I also tried submitting the app by saying that I was using the IDFA to display targeted ads. When I WAS displaying ads, I was using MoPub and Facebook Audience Network. Is there a way

Xamarin.IOS.dll use of Advertising identifier (IDFA)

只愿长相守 提交于 2019-12-13 14:23:34
问题 We are wanting to submit our Xamarin application for review for the Apple Appstore and in the submission process the following question is asked: Does this app use the Advertising Identifier (IDFA)? The Advertising Identifier (IDFA) is a unique ID for each iOS device and is the only way to offer targeted ads. Users can choose to limit ad targeting on their iOS device. It also gives a very dire warning in red: Ensure that you select the correct answer for Advertising Identifier (IDFA) usage.