File tree Expand file tree Collapse file tree 6 files changed +29
-6
lines changed
FirebaseABTesting/Sources/Private Expand file tree Collapse file tree 6 files changed +29
-6
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright 2020 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ // An umbrella header, for any other libraries in this repo to access Firebase Public and Private
16
+ // headers. Any package manager complexity should be handled here.
17
+
18
+ #if SWIFT_PACKAGE
19
+ @import FirebaseABTesting;
20
+ #else
21
+ #import < FirebaseABTesting/FirebaseABTesting.h>
22
+ #endif
23
+
24
+ #import " FirebaseABTesting/Sources/Private/ABTExperimentPayload.h"
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ See more product details at https://firebase.google.com/products/in-app-messagin
27
27
s . source_files = [
28
28
base_dir + "Sources/**/*.[cmh]" ,
29
29
'Interop/Analytics/Public/*.h' ,
30
+ 'FirebaseABTesting/Sources/Private/*.h' ,
30
31
'FirebaseCore/Sources/Private/*.h' ,
31
32
'FirebaseInstallations/Source/Library/Private/*.h' ,
32
33
'GoogleUtilities/Environment/Private/*.h' ,
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ app update.
30
30
s . source_files = [
31
31
base_dir + '**/*.[mh]' ,
32
32
'Interop/Analytics/Public/*.h' ,
33
+ 'FirebaseABTesting/Sources/Private/*.h' ,
33
34
'FirebaseCore/Sources/Private/*.h' ,
34
35
'FirebaseInstallations/Source/Library/Private/*.h' ,
35
36
'GoogleUtilities/Environment/Private/*.h' ,
Original file line number Diff line number Diff line change 16
16
17
17
#import " FirebaseRemoteConfig/Sources/Public/FIRRemoteConfig.h"
18
18
19
- #import " FirebaseABTesting/Sources/Public/FIRExperimentController .h"
19
+ #import " FirebaseABTesting/Sources/Private/FirebaseABTestingInternal .h"
20
20
#import " FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
21
21
#import " FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.h"
22
22
#import " FirebaseRemoteConfig/Sources/Private/FIRRemoteConfig_Private.h"
Original file line number Diff line number Diff line change 16
16
17
17
#import " FirebaseRemoteConfig/Sources/RCNConfigExperiment.h"
18
18
19
- #import " FirebaseABTesting/Sources/Private/ABTExperimentPayload.h"
20
- #import " FirebaseABTesting/Sources/Public/FIRExperimentController.h"
21
- #import " FirebaseABTesting/Sources/Public/FIRLifecycleEvents.h"
19
+ #import " FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h"
22
20
#import " FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
23
21
#import " FirebaseRemoteConfig/Sources/RCNConfigDBManager.h"
24
22
#import " FirebaseRemoteConfig/Sources/RCNConfigDefines.h"
Original file line number Diff line number Diff line change 26
26
#import " FirebaseRemoteConfig/Sources/RCNConfigValue_Internal.h"
27
27
#import " FirebaseRemoteConfig/Tests/Unit/RCNTestUtilities.h"
28
28
29
- #import " FirebaseABTesting/Sources/Private/ABTExperimentPayload.h"
30
- #import " FirebaseABTesting/Sources/Public/FIRExperimentController.h"
29
+ #import " FirebaseABTesting/Sources/Private/FirebaseABTestingInternal.h"
31
30
32
31
#import " Interop/Analytics/Public/FIRAnalyticsInterop.h"
33
32
You can’t perform that action at this time.
0 commit comments