From 2576cc6f23481b599561d6f406b4c2f65b7d95d0 Mon Sep 17 00:00:00 2001 From: Breno Douglas Date: Thu, 11 Feb 2016 08:52:48 -0200 Subject: [PATCH 1/2] Cordova 3.6.3 - 'CB-7187 Delete CDVShared.m & remove dependency on CoreLocation --- src/ios/YoikScreenOrientation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ios/YoikScreenOrientation.h b/src/ios/YoikScreenOrientation.h index 95da6e8..f226a93 100644 --- a/src/ios/YoikScreenOrientation.h +++ b/src/ios/YoikScreenOrientation.h @@ -23,7 +23,6 @@ SOFTWARE. */ #import -#import @interface YoikScreenOrientation : CDVPlugin From 0708a8371616b94c9263827bce844b20c1210967 Mon Sep 17 00:00:00 2001 From: Breno Douglas Date: Thu, 11 Feb 2016 08:57:43 -0200 Subject: [PATCH 2/2] Fix conflict return type in implementation of 'supportedInterfaceOrientations' --- src/ios/YoikScreenOrientation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/YoikScreenOrientation.m b/src/ios/YoikScreenOrientation.m index f2dd444..51e90f0 100644 --- a/src/ios/YoikScreenOrientation.m +++ b/src/ios/YoikScreenOrientation.m @@ -95,7 +95,7 @@ SOFTWARE. @implementation ForcedViewController -- (NSUInteger) supportedInterfaceOrientations +- (UIInterfaceOrientationMask) supportedInterfaceOrientations { if ([self.calledWith rangeOfString:@"portrait"].location != NSNotFound) { return UIInterfaceOrientationMaskPortrait;