File tree Expand file tree Collapse file tree 3 files changed +2
-15
lines changed
ReleaseTooling/Sources/ZipBuilder Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 45
45
- [ fixed] Fixed rare crash on launch due to out-of-bounds exception in FirebaseCore. (#10025 )
46
46
47
47
# Firebase 9.3.0
48
+ - [ changed] Discontinue bitcode inclusion in all binary distributions.
48
49
- [ fixed] Remove GoogleSignInSwiftSupport from Zip and Carthage distributions due to
49
50
infeasibility. The GoogleSignIn distribution continues. (#9937 )
50
51
Original file line number Diff line number Diff line change @@ -215,10 +215,7 @@ struct FrameworkBuilder {
215
215
" BUILD_DIR= \( buildDir. path) " ,
216
216
" -sdk " , targetPlatform. sdkName,
217
217
cFlags]
218
- // Add bitcode option for platforms that need it.
219
- if targetPlatform. shouldEnableBitcode {
220
- args. append ( " BITCODE_GENERATION_MODE=bitcode " )
221
- }
218
+
222
219
// Code signing isn't needed for libraries. Disabling signing is required for
223
220
// Catalyst libs with resources. See
224
221
// https://github.com/CocoaPods/CocoaPods/issues/8891#issuecomment-573301570
Original file line number Diff line number Diff line change @@ -46,17 +46,6 @@ enum TargetPlatform: CaseIterable {
46
46
}
47
47
}
48
48
49
- /// Flag to determine if bitcode should be used for the target platform.
50
- var shouldEnableBitcode : Bool {
51
- switch self {
52
- // TODO: Do we need to include bitcode for Catalyst? We weren't before the latest arm64 changes.
53
- case . iOSDevice: return true
54
- case . macOS: return true
55
- case . tvOSDevice: return true
56
- default : return false
57
- }
58
- }
59
-
60
49
/// Name of the SDK as used by `xcodebuild` for the target platforms.
61
50
var sdkName : String {
62
51
switch self {
You can’t perform that action at this time.
0 commit comments