Skip to content

Commit b2619e6

Browse files
authored
feat!: bump iOS SDK to version 12.0.0 (#17549)
1 parent d50aad9 commit b2619e6

File tree

91 files changed

+272
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+272
-140
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ import PackageDescription
1010

1111
// auto-generated by melos post commit hook script
1212
let firebase_core_version: String = "3.15.2"
13-
let firebase_ios_sdk_version: String = "11.15.0"
13+
let firebase_ios_sdk_version: String = "12.0.0"
1414

1515
// Shared Swift package manager code for firebase core
1616
let package = Package(
1717
name: "remote_firebase_core",
1818
platforms: [
19-
.iOS("13.0"),
19+
.iOS("15.0"),
2020
.macOS("10.15"),
2121
],
2222
products: [

packages/cloud_firestore/cloud_firestore/example/ios/Podfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '13.0'
2+
platform :ios, '15.0'
33

44
require 'yaml'
55

@@ -51,7 +51,8 @@ target 'Runner' do
5151
end
5252
end
5353

54-
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
54+
# TODO: Uncomment this when the binary distribution is working again
55+
# pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
5556
end
5657

5758
post_install do |installer|

packages/cloud_firestore/cloud_firestore/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@
372372
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
373373
GCC_WARN_UNUSED_FUNCTION = YES;
374374
GCC_WARN_UNUSED_VARIABLE = YES;
375-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
375+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
376376
MTL_ENABLE_DEBUG_INFO = NO;
377377
SDKROOT = iphoneos;
378378
SUPPORTED_PLATFORMS = iphoneos;
@@ -450,7 +450,7 @@
450450
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
451451
GCC_WARN_UNUSED_FUNCTION = YES;
452452
GCC_WARN_UNUSED_VARIABLE = YES;
453-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
453+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
454454
MTL_ENABLE_DEBUG_INFO = YES;
455455
ONLY_ACTIVE_ARCH = YES;
456456
SDKROOT = iphoneos;
@@ -499,7 +499,7 @@
499499
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
500500
GCC_WARN_UNUSED_FUNCTION = YES;
501501
GCC_WARN_UNUSED_VARIABLE = YES;
502-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
502+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
503503
MTL_ENABLE_DEBUG_INFO = NO;
504504
SDKROOT = iphoneos;
505505
SUPPORTED_PLATFORMS = iphoneos;

packages/cloud_firestore/cloud_firestore/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
buildConfiguration = "Debug"
4545
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4646
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
4748
shouldUseLaunchSchemeArgsEnv = "YES">
4849
<MacroExpansion>
4950
<BuildableReference
@@ -61,11 +62,13 @@
6162
buildConfiguration = "Debug"
6263
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
6364
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
65+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
6466
launchStyle = "0"
6567
useCustomWorkingDirectory = "NO"
6668
ignoresPersistentStateOnLaunch = "NO"
6769
debugDocumentVersioning = "YES"
6870
debugServiceExtension = "internal"
71+
enableGPUValidationMode = "1"
6972
allowLocationSimulation = "YES">
7073
<BuildableProductRunnable
7174
runnableDebuggingMode = "0">

packages/cloud_firestore/cloud_firestore/example/macos/Podfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ target 'Runner' do
5050
end
5151
end
5252

53-
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
53+
# TODO: Uncomment this when the binary distribution is working again
54+
# pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
5455
end
5556

5657
post_install do |installer|

packages/cloud_firestore/cloud_firestore/ios/cloud_firestore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Pod::Spec.new do |s|
2828
s.public_header_files = 'cloud_firestore/Sources/cloud_firestore/include/Public/**/*.h'
2929
s.private_header_files = 'cloud_firestore/Sources/cloud_firestore/include/Private/**/*.h'
3030

31-
s.ios.deployment_target = '13.0'
31+
s.ios.deployment_target = '15.0'
3232
s.dependency 'Flutter'
3333

3434
s.dependency 'firebase_core'

packages/cloud_firestore/cloud_firestore/ios/cloud_firestore/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ guard let shared_spm_version = Version("\(firebase_core_version_string)\(shared_
8585
let package = Package(
8686
name: "cloud_firestore",
8787
platforms: [
88-
.iOS("13.0"),
88+
.iOS("15.0"),
8989
],
9090
products: [
9191
.library(name: "cloud-firestore", targets: ["cloud_firestore"]),
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.15.0
1+
12.0.0

packages/cloud_firestore/cloud_firestore_web/ios/cloud_firestore_web.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
1616
s.public_header_files = 'Classes/**/*.h'
1717
s.dependency 'Flutter'
1818

19-
s.ios.deployment_target = '13.0'
19+
s.ios.deployment_target = '15.0'
2020
end
2121

packages/cloud_functions/cloud_functions/example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '13.0'
2+
platform :ios, '15.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

0 commit comments

Comments
 (0)