feat(ios) drop support for iOS 11
This commit is contained in:
parent
b1ecd03924
commit
4bfbc72613
|
@ -1,4 +1,4 @@
|
||||||
platform :ios, '11.0'
|
platform :ios, '12.0'
|
||||||
workspace 'jitsi-meet'
|
workspace 'jitsi-meet'
|
||||||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
||||||
install! 'cocoapods', :deterministic_uuids => false
|
install! 'cocoapods', :deterministic_uuids => false
|
||||||
|
@ -87,7 +87,7 @@ post_install do |installer|
|
||||||
target.build_configurations.each do |config|
|
target.build_configurations.each do |config|
|
||||||
config.build_settings['ENABLE_BITCODE'] = 'YES'
|
config.build_settings['ENABLE_BITCODE'] = 'YES'
|
||||||
config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
|
config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
|
||||||
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -605,6 +605,6 @@ SPEC CHECKSUMS:
|
||||||
RNWatch: a5320c959c75e72845c07985f3e935e58998f1d3
|
RNWatch: a5320c959c75e72845c07985f3e935e58998f1d3
|
||||||
Yoga: 96b469c5e81ff51b917b92e8c3390642d4ded30c
|
Yoga: 96b469c5e81ff51b917b92e8c3390642d4ded30c
|
||||||
|
|
||||||
PODFILE CHECKSUM: e830b1b5a46d340e22689b146b55dcf24664c6f1
|
PODFILE CHECKSUM: 3cc305fd6ee83fff506c10c4805471fa72b61c9a
|
||||||
|
|
||||||
COCOAPODS: 1.10.1
|
COCOAPODS: 1.10.1
|
||||||
|
|
|
@ -996,7 +996,7 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||||
);
|
);
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
@ -1049,7 +1049,7 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||||
);
|
);
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
SWIFT_COMPILATION_MODE = wholemodule;
|
SWIFT_COMPILATION_MODE = wholemodule;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright @ 2018-present 8x8, Inc.
|
* Copyright @ 2017-present 8x8, Inc.
|
||||||
* Copyright @ 2017-2018 Atlassian Pty Ltd
|
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -15,8 +14,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#import <Availability.h>
|
|
||||||
|
|
||||||
@import CoreSpotlight;
|
@import CoreSpotlight;
|
||||||
@import MobileCoreServices;
|
@import MobileCoreServices;
|
||||||
@import Intents; // Needed for NSUserActivity suggestedInvocationPhrase
|
@import Intents; // Needed for NSUserActivity suggestedInvocationPhrase
|
||||||
|
@ -58,9 +55,7 @@
|
||||||
[self _onJitsiMeetViewDelegateEvent:@"CONFERENCE_JOINED" withData:data];
|
[self _onJitsiMeetViewDelegateEvent:@"CONFERENCE_JOINED" withData:data];
|
||||||
|
|
||||||
// Register a NSUserActivity for this conference so it can be invoked as a
|
// Register a NSUserActivity for this conference so it can be invoked as a
|
||||||
// Siri shortcut. This is only supported in iOS >= 12.
|
// Siri shortcut.
|
||||||
#ifdef __IPHONE_12_0
|
|
||||||
if (@available(iOS 12.0, *)) {
|
|
||||||
NSUserActivity *userActivity
|
NSUserActivity *userActivity
|
||||||
= [[NSUserActivity alloc] initWithActivityType:JitsiMeetConferenceActivityType];
|
= [[NSUserActivity alloc] initWithActivityType:JitsiMeetConferenceActivityType];
|
||||||
|
|
||||||
|
@ -84,9 +79,6 @@
|
||||||
self.userActivity = userActivity;
|
self.userActivity = userActivity;
|
||||||
[userActivity becomeCurrent];
|
[userActivity becomeCurrent];
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)conferenceTerminated:(NSDictionary *)data {
|
- (void)conferenceTerminated:(NSDictionary *)data {
|
||||||
[self _onJitsiMeetViewDelegateEvent:@"CONFERENCE_TERMINATED" withData:data];
|
[self _onJitsiMeetViewDelegateEvent:@"CONFERENCE_TERMINATED" withData:data];
|
||||||
|
|
|
@ -520,7 +520,7 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
@ -576,7 +576,7 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
SWIFT_COMPILATION_MODE = wholemodule;
|
SWIFT_COMPILATION_MODE = wholemodule;
|
||||||
|
|
Loading…
Reference in New Issue