-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client App updates for auth-swift and Xcode 15 (#12231)
Co-authored-by: Nick Cooke <36927374+ncooke3@users.noreply.github.com>
- Loading branch information
Showing
12 changed files
with
160 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 52 additions & 30 deletions
82
IntegrationTesting/ClientApp/ClientApp.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
IntegrationTesting/ClientApp/Shared-iOS13+/objc-header-import-test.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// This file imports all Firebase products that vend an umbrella header. | ||
// Products implemented in Swift are therefore omitted. | ||
|
||
// ‼️ NOTE: Changes should also be reflected in `objcxx-header-import-test.m`. | ||
|
||
#import <Firebase.h> | ||
#import <FirebaseABTesting/FirebaseABTesting.h> | ||
#import <FirebaseAnalytics/FirebaseAnalytics.h> | ||
#import <FirebaseAuth/FirebaseAuth.h> | ||
#import <FirebaseCore/FirebaseCore.h> | ||
#import "Firebase.h" | ||
#import "FirebaseABTesting/FirebaseABTesting.h" | ||
#import "FirebaseAnalytics/FirebaseAnalytics.h" | ||
#import "FirebaseAuth/FirebaseAuth.h" | ||
#import "FirebaseCore/FirebaseCore.h" | ||
#if (TARGET_OS_IOS && !TARGET_OS_MACCATALYST) || TARGET_OS_TV | ||
#import <FirebaseInAppMessaging/FirebaseInAppMessaging.h> | ||
#import "FirebaseInAppMessaging/FirebaseInAppMessaging.h" | ||
#endif |
27 changes: 27 additions & 0 deletions
27
IntegrationTesting/ClientApp/Shared-iOS13+/objc-module-import-test.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// ‼️ NOTE: Changes should also be reflected in `objcxx-module-import-test.m`. | ||
|
||
#if !COCOAPODS | ||
// TODO(ncooke3): Figure out why this isn't working on CocoaPods. | ||
@import Firebase; | ||
#endif // !COCOAPODS | ||
@import FirebaseABTesting; | ||
@import FirebaseAnalytics; | ||
@import FirebaseAuth; | ||
@import FirebaseCore; | ||
#if (TARGET_OS_IOS && !TARGET_OS_MACCATALYST) || TARGET_OS_TV | ||
@import FirebaseInAppMessaging; | ||
#endif |
33 changes: 33 additions & 0 deletions
33
IntegrationTesting/ClientApp/Shared-iOS13+/objcxx-header-import-test.mm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// This file imports all Firebase products that vend an umbrella header. | ||
// Products implemented in Swift are therefore omitted. | ||
|
||
// ‼️ Changes should also be reflected in `objc-header-import-test.m`. | ||
|
||
#import <Firebase.h> | ||
#import <FirebaseABTesting/FirebaseABTesting.h> | ||
#import <FirebaseAnalytics/FirebaseAnalytics.h> | ||
#import <FirebaseAuth/FirebaseAuth.h> | ||
#import <FirebaseCore/FirebaseCore.h> | ||
#import "Firebase.h" | ||
#import "FirebaseABTesting/FirebaseABTesting.h" | ||
#import "FirebaseAnalytics/FirebaseAnalytics.h" | ||
#import "FirebaseAuth/FirebaseAuth.h" | ||
#import "FirebaseCore/FirebaseCore.h" | ||
#if (TARGET_OS_IOS && !TARGET_OS_MACCATALYST) || TARGET_OS_TV | ||
#import <FirebaseInAppMessaging/FirebaseInAppMessaging.h> | ||
#import "FirebaseInAppMessaging/FirebaseInAppMessaging.h" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters