Skip to content

Commit

Permalink
[MOD-2180] Fix Xcode 6.4 build error with iOS 9
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Feb 27, 2016
1 parent e0867db commit 7ed7817
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ android/.settings

android/launch-*
nbproject
ios/FacebookIOS.xcodeproj/project.xcworkspace/xcuserdata/
2 changes: 2 additions & 0 deletions ios/Classes/FacebookModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ -(BOOL)handleRelaunch
NSString *annotation;

if ([TiUtils isIOS9OrGreater]) {
#ifdef __IPHONE_9_0
annotation = [launchOptions objectForKey:UIApplicationOpenURLOptionsAnnotationKey];
#endif
} else {
annotation = nil;
}
Expand Down
Binary file not shown.

1 comment on commit 7ed7817

@mebarg
Copy link

@mebarg mebarg commented on 7ed7817 Mar 21, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works fine in yosemite 10.10.5 xcode 7.2.1 titanium 5.2.0 simulator 9.2

not working in yosemite 10.10.1 Xcode 6.4 titanium 5.2.0. simulator 8.4

[ERROR] : 2016-03-21 02:06:43.618 xcodebuild[709:13256] stream error: stream error at offset 8: unsupported version number ('1.04')
[ERROR] : ** BUILD FAILED **
[ERROR] : The following build commands failed:
[ERROR] : Ld build/Intermediates/Mis\ Vacunas.build/Debug-iphonesimulator/Mis\ Vacunas.build/Objects-normal/x86_64/Mis\ Vacunas normal x86_64
[ERROR] : (1 failure)

Please sign in to comment.