Navigation Menu

Skip to content

Commit

Permalink
Adding support for sending Advertising identifier for conversion purp…
Browse files Browse the repository at this point in the history
…oses

Summary: On iOS6 and above, we can use Apple's blesssed Advertising Identifier for install conversion purposes.  Since we are not using this for tracking/targeted advertising purposes, we don't have to check the "limit targeting" setting.  (reference: https://developer.apple.com/library/ios/#documentation/AdSupport/Reference/ASIdentifierManager_Ref/ASIdentifierManager.html#//apple_ref/doc/uid/TP40012654)

Test Plan: Ran Scrumptious on a clean simulator and verified that the ad-id is being captured and sent.

Reviewers: jacl, mmarucheck, clang

Reviewed By: jacl

CC: jketchpaw, msdkexp@

Differential Revision: https://phabricator.fb.com/D583190
  • Loading branch information
vijaye committed Sep 25, 2012
1 parent e133058 commit e2b10bb
Show file tree
Hide file tree
Showing 13 changed files with 128 additions and 61 deletions.
Expand Up @@ -32,6 +32,7 @@
85C69D741602B098008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D711602B098008AD9A0 /* Default-568h@2x.png */; };
85C69D751602B098008AD9A0 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D721602B098008AD9A0 /* Default.png */; };
85C69D761602B098008AD9A0 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D731602B098008AD9A0 /* Default@2x.png */; };
B9A4167216113E93001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4167116113E93001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
DD37EA7F15ABA42D0015966B /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD37EA7E15ABA42D0015966B /* FacebookSDK.framework */; };
DE1C9C2A15CC8F9A00809B9E /* FacebookSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DE1C9C2915CC8F9A00809B9E /* FacebookSDKResources.bundle */; };
DE1C9C2C15CC8FE400809B9E /* FBUserSettingsViewResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DE1C9C2B15CC8FE400809B9E /* FBUserSettingsViewResources.bundle */; };
Expand Down Expand Up @@ -70,6 +71,7 @@
85C69D711602B098008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
85C69D721602B098008AD9A0 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
85C69D731602B098008AD9A0 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B9A4167116113E93001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
DD37EA7E15ABA42D0015966B /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = ../../build/FacebookSDK.framework; sourceTree = "<group>"; };
DE1C9C2915CC8F9A00809B9E /* FacebookSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = FacebookSDKResources.bundle; path = ../../build/FacebookSDK.framework/Versions/A/Resources/FacebookSDKResources.bundle; sourceTree = "<group>"; };
DE1C9C2B15CC8FE400809B9E /* FBUserSettingsViewResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = FBUserSettingsViewResources.bundle; path = ../../build/FacebookSDK.framework/Versions/A/Resources/FBUserSettingsViewResources.bundle; sourceTree = "<group>"; };
Expand All @@ -81,6 +83,7 @@
buildActionMask = 2147483647;
files = (
85A928C716114684008699F1 /* Social.framework in Frameworks */,
B9A4167216113E93001E7A77 /* AdSupport.framework in Frameworks */,
84605AB615A77C9300197AA7 /* Accounts.framework in Frameworks */,
84070D1B1540AA2B00E39703 /* UIKit.framework in Frameworks */,
84070D1D1540AA2B00E39703 /* Foundation.framework in Frameworks */,
Expand Down Expand Up @@ -113,6 +116,7 @@
84070D191540AA2B00E39703 /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4167116113E93001E7A77 /* AdSupport.framework */,
DE1C9C2B15CC8FE400809B9E /* FBUserSettingsViewResources.bundle */,
DE1C9C2915CC8F9A00809B9E /* FacebookSDKResources.bundle */,
DD37EA7E15ABA42D0015966B /* FacebookSDK.framework */,
Expand Down
Expand Up @@ -16,6 +16,7 @@
85C69D7F1602B0AF008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D7C1602B0AF008AD9A0 /* Default-568h@2x.png */; };
85C69D801602B0AF008AD9A0 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D7D1602B0AF008AD9A0 /* Default.png */; };
85C69D811602B0AF008AD9A0 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D7E1602B0AF008AD9A0 /* Default@2x.png */; };
B9A4167916113EAE001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4167816113EAE001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
DD37EA8615ABA4670015966B /* FacebookSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DD37EA8515ABA4670015966B /* FacebookSDKResources.bundle */; };
DD37EA8815ABA46B0015966B /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD37EA8715ABA46B0015966B /* FacebookSDK.framework */; };
E2D6B81315413A570050835F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2D6B81215413A570050835F /* UIKit.framework */; };
Expand All @@ -39,6 +40,7 @@
85C69D7C1602B0AF008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
85C69D7D1602B0AF008AD9A0 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
85C69D7E1602B0AF008AD9A0 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B9A4167816113EAE001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
DD37EA8515ABA4670015966B /* FacebookSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = FacebookSDKResources.bundle; path = ../../build/FacebookSDK.framework/Versions/A/Resources/FacebookSDKResources.bundle; sourceTree = "<group>"; };
DD37EA8715ABA46B0015966B /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = ../../build/FacebookSDK.framework; sourceTree = "<group>"; };
E2D6B80E15413A570050835F /* FriendPickerSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FriendPickerSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
Expand All @@ -63,6 +65,7 @@
buildActionMask = 2147483647;
files = (
85A928B91611462C008699F1 /* Social.framework in Frameworks */,
B9A4167916113EAE001E7A77 /* AdSupport.framework in Frameworks */,
84605AB315A77C2700197AA7 /* Accounts.framework in Frameworks */,
E2D6B81315413A570050835F /* UIKit.framework in Frameworks */,
E2D6B81515413A570050835F /* Foundation.framework in Frameworks */,
Expand Down Expand Up @@ -95,6 +98,7 @@
E2D6B81115413A570050835F /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4167816113EAE001E7A77 /* AdSupport.framework */,
DD37EA8515ABA4670015966B /* FacebookSDKResources.bundle */,
DD37EA8715ABA46B0015966B /* FacebookSDK.framework */,
84605AB215A77C2700197AA7 /* Accounts.framework */,
Expand Down
4 changes: 4 additions & 0 deletions samples/Hackbook/Hackbook.xcodeproj/project.pbxproj
Expand Up @@ -31,6 +31,7 @@
85AFB4E6158F9C5B000AF7F5 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 85AFB4E2158F9C5B000AF7F5 /* Icon.png */; };
85AFB4E7158F9C5B000AF7F5 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85AFB4E3158F9C5B000AF7F5 /* Icon@2x.png */; };
85C69D561602AFD4008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D551602AFD4008AD9A0 /* Default-568h@2x.png */; };
B9A4168016113EC3001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4167F16113EC3001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
DD35C4BE15B9307600C0849B /* FBConnect.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DD35C4BD15B9307600C0849B /* FBConnect.bundle */; };
DD37EA8F15ABA4920015966B /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD37EA8E15ABA4920015966B /* FacebookSDK.framework */; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -68,6 +69,7 @@
85AFB4E2158F9C5B000AF7F5 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
85AFB4E3158F9C5B000AF7F5 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
85C69D551602AFD4008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
B9A4167F16113EC3001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
DD35C4BD15B9307600C0849B /* FBConnect.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = FBConnect.bundle; path = Hackbook/FBConnect.bundle; sourceTree = "<group>"; };
DD37EA8E15ABA4920015966B /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = ../../build/FacebookSDK.framework; sourceTree = "<group>"; };
DD37EA9815ABA8A90015966B /* Facebook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Facebook.h; path = ../../build/FacebookSDK.framework/Versions/A/DeprecatedHeaders/Facebook.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -98,6 +100,7 @@
buildActionMask = 2147483647;
files = (
85A928C016114663008699F1 /* Social.framework in Frameworks */,
B9A4168016113EC3001E7A77 /* AdSupport.framework in Frameworks */,
84750AA0160A259400C1A13D /* Accounts.framework in Frameworks */,
30EA73FC13F5D590003DC0D2 /* CoreLocation.framework in Frameworks */,
30EA735E13F5D21B003DC0D2 /* UIKit.framework in Frameworks */,
Expand Down Expand Up @@ -140,6 +143,7 @@
30EA735C13F5D21B003DC0D2 /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4167F16113EC3001E7A77 /* AdSupport.framework */,
84750A9F160A259400C1A13D /* Accounts.framework */,
DD37EA8E15ABA4920015966B /* FacebookSDK.framework */,
30EA73FB13F5D590003DC0D2 /* CoreLocation.framework */,
Expand Down
Expand Up @@ -26,6 +26,7 @@
85C69D8F1602B0D3008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D8C1602B0D3008AD9A0 /* Default-568h@2x.png */; };
85C69D901602B0D3008AD9A0 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D8D1602B0D3008AD9A0 /* Default.png */; };
85C69D911602B0D3008AD9A0 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D8E1602B0D3008AD9A0 /* Default@2x.png */; };
B9A4168716113ED6001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4168616113ED6001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
DD37EAC015ABA8FA0015966B /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD37EABF15ABA8FA0015966B /* FacebookSDK.framework */; };
DD37EAC315ABA8FE0015966B /* FacebookSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DD37EAC215ABA8FE0015966B /* FacebookSDKResources.bundle */; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -55,6 +56,7 @@
85C69D8C1602B0D3008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
85C69D8D1602B0D3008AD9A0 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
85C69D8E1602B0D3008AD9A0 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B9A4168616113ED6001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
DD37EABF15ABA8FA0015966B /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = ../../build/FacebookSDK.framework; sourceTree = "<group>"; };
DD37EAC215ABA8FE0015966B /* FacebookSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = FacebookSDKResources.bundle; path = ../../build/FacebookSDK.framework/Versions/A/Resources/FacebookSDKResources.bundle; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand All @@ -65,6 +67,7 @@
buildActionMask = 2147483647;
files = (
85A928A31611305A008699F1 /* Social.framework in Frameworks */,
B9A4168716113ED6001E7A77 /* AdSupport.framework in Frameworks */,
8458462715A63635008A1F16 /* Accounts.framework in Frameworks */,
5F6AF18E1532A37B00DDBD75 /* UIKit.framework in Frameworks */,
5F6AF1901532A37B00DDBD75 /* Foundation.framework in Frameworks */,
Expand Down Expand Up @@ -98,6 +101,7 @@
5F6AF18C1532A37B00DDBD75 /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4168616113ED6001E7A77 /* AdSupport.framework */,
5FC4959715C21151007EE54E /* CoreLocation.framework */,
DD37EAC215ABA8FE0015966B /* FacebookSDKResources.bundle */,
DD37EABF15ABA8FA0015966B /* FacebookSDK.framework */,
Expand Down
Expand Up @@ -16,6 +16,7 @@
85C69D691602B06E008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D661602B06E008AD9A0 /* Default-568h@2x.png */; };
85C69D6A1602B06E008AD9A0 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D671602B06E008AD9A0 /* Default.png */; };
85C69D6B1602B06E008AD9A0 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D681602B06E008AD9A0 /* Default@2x.png */; };
B9A4168E16113EE7001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4168D16113EE7001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
DDA290AD15ABA96200F533F9 /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDA290AC15ABA96200F533F9 /* FacebookSDK.framework */; };
E2511742152BB6FE00CB342A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2511741152BB6FE00CB342A /* UIKit.framework */; };
E2511744152BB6FE00CB342A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2511743152BB6FE00CB342A /* Foundation.framework */; };
Expand All @@ -38,6 +39,7 @@
85C69D661602B06E008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
85C69D671602B06E008AD9A0 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
85C69D681602B06E008AD9A0 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B9A4168D16113EE7001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
DDA290AC15ABA96200F533F9 /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = ../../build/FacebookSDK.framework; sourceTree = "<group>"; };
E251173D152BB6FE00CB342A /* JustRequestSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JustRequestSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
E2511741152BB6FE00CB342A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
Expand All @@ -61,6 +63,7 @@
buildActionMask = 2147483647;
files = (
85A928CE161146AC008699F1 /* Social.framework in Frameworks */,
B9A4168E16113EE7001E7A77 /* AdSupport.framework in Frameworks */,
84605AB015A77B8600197AA7 /* Accounts.framework in Frameworks */,
E2511742152BB6FE00CB342A /* UIKit.framework in Frameworks */,
E2511744152BB6FE00CB342A /* Foundation.framework in Frameworks */,
Expand Down Expand Up @@ -93,6 +96,7 @@
E2511740152BB6FE00CB342A /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4168D16113EE7001E7A77 /* AdSupport.framework */,
DDA290AC15ABA96200F533F9 /* FacebookSDK.framework */,
84605AAF15A77B8600197AA7 /* Accounts.framework */,
E2511741152BB6FE00CB342A /* UIKit.framework */,
Expand Down
Expand Up @@ -16,6 +16,7 @@
85C69D9E1602B105008AD9A0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D9B1602B105008AD9A0 /* Default-568h@2x.png */; };
85C69D9F1602B105008AD9A0 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D9C1602B105008AD9A0 /* Default.png */; };
85C69DA01602B105008AD9A0 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 85C69D9D1602B105008AD9A0 /* Default@2x.png */; };
B9A4169516113EF8001E7A77 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9A4169416113EF8001E7A77 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
B9AF4BA9152E43EE00E9BA6C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9AF4BA8152E43EE00E9BA6C /* UIKit.framework */; };
B9AF4BAB152E43EE00E9BA6C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9AF4BAA152E43EE00E9BA6C /* Foundation.framework */; };
B9AF4BAD152E43EE00E9BA6C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9AF4BAC152E43EE00E9BA6C /* CoreGraphics.framework */; };
Expand All @@ -40,6 +41,7 @@
85C69D9B1602B105008AD9A0 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
85C69D9C1602B105008AD9A0 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
85C69D9D1602B105008AD9A0 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B9A4169416113EF8001E7A77 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
B9AF4BA4152E43EE00E9BA6C /* PlacePickerSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PlacePickerSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
B9AF4BA8152E43EE00E9BA6C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
B9AF4BAA152E43EE00E9BA6C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
Expand All @@ -65,6 +67,7 @@
buildActionMask = 2147483647;
files = (
85A928D5161146C7008699F1 /* Social.framework in Frameworks */,
B9A4169516113EF8001E7A77 /* AdSupport.framework in Frameworks */,
84605AAA15A777A800197AA7 /* Accounts.framework in Frameworks */,
B9AF4C37152E449300E9BA6C /* CoreLocation.framework in Frameworks */,
B9AF4BA9152E43EE00E9BA6C /* UIKit.framework in Frameworks */,
Expand Down Expand Up @@ -98,6 +101,7 @@
B9AF4BA7152E43EE00E9BA6C /* Frameworks */ = {
isa = PBXGroup;
children = (
B9A4169416113EF8001E7A77 /* AdSupport.framework */,
DD37EA7715ABA3E70015966B /* FacebookSDK.framework */,
DD37EA7515ABA3DF0015966B /* FacebookSDKResources.bundle */,
84605AA915A777A800197AA7 /* Accounts.framework */,
Expand Down

0 comments on commit e2b10bb

Please sign in to comment.