Skip to content

Commit 3c68661

Browse files
committed
Merge ah/appcheck-interop into ah/appcheck-settings
commit be8e01f Author: Andrew Heard <andrewheard@google.com> Date: Tue Jun 6 13:05:11 2023 -0400 Fix integration tests `source_files` commit af314f8 Author: Andrew Heard <andrewheard@google.com> Date: Tue Jun 6 11:05:25 2023 -0400 Remove AppCheckInterop headers from AppCheck SDK Removed the headers in `AppCheck/Interop` from the App Check SDK `source_files`. commit 256f5f0 Author: Andrew Heard <andrewheard@google.com> Date: Fri Jun 2 11:27:12 2023 -0400 [App Check] Rename symbols in GACAppCheckLogger (#11381) The constants in `GACAppCheckLogger` conflict with those in `FIRAppCheckLogger`.
1 parent 2d9f72c commit 3c68661

File tree

12 files changed

+30
-14
lines changed

12 files changed

+30
-14
lines changed

AppCheck.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Pod::Spec.new do |s|
3636

3737
s.source_files = [
3838
base_dir + 'Sources/**/*.[mh]',
39-
base_dir + 'Interop/*.h',
4039
]
4140
s.public_header_files = base_dir + 'Sources/Public/AppCheck/*.h'
4241

@@ -86,6 +85,7 @@ Pod::Spec.new do |s|
8685
integration_tests.source_files = [
8786
base_dir + 'Tests/Integration/**/*.[mh]',
8887
base_dir + 'Tests/Integration/**/*.[mh]',
88+
'FirebaseCore/Extension/*.h',
8989
]
9090
integration_tests.resources = base_dir + 'Tests/Fixture/**/*'
9191
integration_tests.dependency 'FirebaseCore', '~> 10.0'
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright 2023 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
#import "GACAppCheckInterop.h"
18+
#import "GACAppCheckTokenResultInterop.h"

AppCheck/Sources/Core/GACAppCheck.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#import "FBLPromises.h"
2323
#endif
2424

25+
#import <AppCheckInterop/AppCheckInterop.h>
26+
2527
#import "AppCheck/Sources/Public/AppCheck/GACAppCheckErrors.h"
2628
#import "AppCheck/Sources/Public/AppCheck/GACAppCheckProvider.h"
2729
#import "AppCheck/Sources/Public/AppCheck/GACAppCheckSettings.h"
@@ -34,9 +36,6 @@
3436
#import "AppCheck/Sources/Core/TokenRefresh/GACAppCheckTokenRefreshResult.h"
3537
#import "AppCheck/Sources/Core/TokenRefresh/GACAppCheckTokenRefresher.h"
3638

37-
#import "AppCheck/Interop/GACAppCheckInterop.h"
38-
#import "AppCheck/Interop/GACAppCheckTokenResultInterop.h"
39-
4039
NS_ASSUME_NONNULL_BEGIN
4140

4241
/// A notification with the specified name is sent to the default notification center

AppCheck/Sources/Core/GACAppCheckTokenResult.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#import <Foundation/Foundation.h>
1818

19-
#import "AppCheck/Interop/GACAppCheckTokenResultInterop.h"
19+
#import <AppCheckInterop/AppCheckInterop.h>
2020

2121
NS_ASSUME_NONNULL_BEGIN
2222

AppCheck/Sources/Public/AppCheck/GACAppCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#import <Foundation/Foundation.h>
1818

19-
@import AppCheckInterop;
19+
#import <AppCheckInterop/AppCheckInterop.h>
2020

2121
@class GACAppCheckToken;
2222
@protocol GACAppCheckProvider;

AppCheck/Tests/Unit/Core/GACAppCheckTests.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
#import "AppCheck/Sources/Public/AppCheck/GACAppCheckProvider.h"
2626
#import "AppCheck/Sources/Public/AppCheck/GACAppCheckSettings.h"
2727

28-
#import "AppCheck/Interop/GACAppCheckInterop.h"
29-
#import "AppCheck/Interop/GACAppCheckTokenResultInterop.h"
30-
3128
#import "AppCheck/Sources/Core/Errors/GACAppCheckErrorUtil.h"
3229
#import "AppCheck/Sources/Core/GACAppCheckToken+Internal.h"
3330
#import "AppCheck/Sources/Core/GACAppCheckTokenResult.h"

AppCheck/Tests/Utils/AppCheckFake/GACAppCheckFake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#import <Foundation/Foundation.h>
1818

19-
#import "AppCheck/Interop/GACAppCheckInterop.h"
19+
#import <AppCheckInterop/AppCheckInterop.h>
2020

2121
NS_ASSUME_NONNULL_BEGIN
2222

AppCheck/Tests/Utils/AppCheckFake/GACAppCheckTokenResultFake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#import <Foundation/Foundation.h>
1818

19-
#import "AppCheck/Interop/GACAppCheckTokenResultInterop.h"
19+
#import <AppCheckInterop/AppCheckInterop.h>
2020

2121
NS_ASSUME_NONNULL_BEGIN
2222

0 commit comments

Comments
 (0)