From 4884927b091ea47a145aa1f4940fdf08cbcdf2a6 Mon Sep 17 00:00:00 2001 From: Pedro Filipe Date: Fri, 26 Feb 2016 12:09:32 +0100 Subject: [PATCH 1/4] Add device Id's to README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c7038ce60..43644f196 100644 --- a/README.md +++ b/README.md @@ -487,6 +487,17 @@ ADJEvent *event = [ADJEvent eventWithEventToken:@"abc123"]; You can read more about special partners and these integrations in our [guide to special partners.][special-partners] +### 13. Device id's + +Certains services such as Google Analytics, require that Device and Client IDs must first coordinate in order to prevent duplicate reporting. + +To obtain the device identifier idfa, call the function `idfa`: + +```objc +NSString * idfa = [Adjust idfa]; +}); +``` + [adjust.com]: http://adjust.com [cocoapods]: http://cocoapods.org [carthage]: https://github.com/Carthage/Carthage From 71bf362c8a01b8ea1d76f68f15861dfb39bbe3b1 Mon Sep 17 00:00:00 2001 From: Esa McGavin Date: Mon, 29 Feb 2016 18:50:58 +0100 Subject: [PATCH 2/4] edits to README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43644f196..2f2e5d10c 100644 --- a/README.md +++ b/README.md @@ -489,9 +489,9 @@ You can read more about special partners and these integrations in our ### 13. Device id's -Certains services such as Google Analytics, require that Device and Client IDs must first coordinate in order to prevent duplicate reporting. +Certain services (such as Google Analytics) require you to coordinate Device and Client IDs in order to prevent duplicate reporting. -To obtain the device identifier idfa, call the function `idfa`: +To obtain the device identifier IDFA, call the function `idfa`: ```objc NSString * idfa = [Adjust idfa]; From 8a72ec0297a2fecccc92a2c379e0d6513a43653c Mon Sep 17 00:00:00 2001 From: Esa McGavin Date: Mon, 29 Feb 2016 18:52:44 +0100 Subject: [PATCH 3/4] Fix acronym --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f2e5d10c..963f09359 100644 --- a/README.md +++ b/README.md @@ -487,7 +487,7 @@ ADJEvent *event = [ADJEvent eventWithEventToken:@"abc123"]; You can read more about special partners and these integrations in our [guide to special partners.][special-partners] -### 13. Device id's +### 13. Device IDS Certain services (such as Google Analytics) require you to coordinate Device and Client IDs in order to prevent duplicate reporting. From c6c67319bed5a716daaef347c4ee5f9ecc46ca16 Mon Sep 17 00:00:00 2001 From: Pedro Filipe Date: Thu, 3 Mar 2016 12:02:24 +0100 Subject: [PATCH 4/4] Readme idfa code fix --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 963f09359..c2a4ca360 100644 --- a/README.md +++ b/README.md @@ -495,7 +495,6 @@ To obtain the device identifier IDFA, call the function `idfa`: ```objc NSString * idfa = [Adjust idfa]; -}); ``` [adjust.com]: http://adjust.com