Skip to content

Commit db04a37

Browse files
committed
clean up test stuff
1 parent 3c75a38 commit db04a37

File tree

9 files changed

+61
-64
lines changed

9 files changed

+61
-64
lines changed

FirebaseDatabaseUI/FirebaseCollectionViewDataSource.h

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

1919
// clang-format on
2020

21-
#import <UIKit/UIKit.h>
21+
@import UIKit;
2222

2323
#import "FirebaseDataSource.h"
2424

FirebaseDatabaseUI/FirebaseDataSource.h

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

1919
// clang-format on
2020

21-
#import <Foundation/Foundation.h>
21+
@import Foundation;
2222

2323
#import "FirebaseArray.h"
2424

FirebaseDatabaseUITests/FirebaseArrayTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
// clang-format on
2020

2121
@import XCTest;
22+
@import FirebaseDatabaseUI;
2223

23-
#import "FirebaseArray.h"
2424
#import "FirebaseArrayTestUtils.h"
2525

2626
@interface FirebaseArrayTest : XCTestCase

FirebaseDatabaseUITests/FirebaseArrayTestUtils.h

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

1919
// clang-format on
2020

21-
#import "FirebaseArray.h"
21+
@import FirebaseDatabaseUI;
2222

2323
NS_ASSUME_NONNULL_BEGIN
2424

FirebaseDatabaseUITests/FirebaseCollectionViewDataSourceTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
// clang-format on
2020

2121
@import XCTest;
22+
@import FirebaseDatabaseUI;
2223

23-
#import "FirebaseCollectionViewDataSource.h"
2424
#import "FirebaseArrayTestUtils.h"
2525

2626
static NSString *const kTestReuseIdentifier = @"FirebaseCollectionViewDataSourceTest";

FirebaseDatabaseUITests/FirebaseTableViewDataSourceTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
// clang-format on
2020

2121
@import XCTest;
22+
@import FirebaseDatabaseUI;
2223

23-
#import "FirebaseTableViewDataSource.h"
2424
#import "FirebaseArrayTestUtils.h"
2525

2626
static NSString *const kTestReuseIdentifier = @"FirebaseTableViewDataSourceTest";

FirebaseFacebookAuthUITests/FirebaseFacebookAuthUITests.m

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,21 @@
1515
//
1616

1717
@import XCTest;
18+
@import FirebaseFacebookAuthUI;
1819

1920
@interface FirebaseFacebookAuthUITests : XCTestCase
20-
21+
@property (nonatomic, strong) FIRFacebookAuthUI *provider;
2122
@end
2223

2324
@implementation FirebaseFacebookAuthUITests
2425

26+
- (void)setUp {
27+
[super setUp];
28+
self.provider = [[FIRFacebookAuthUI alloc] initWithAppID:@"an id"];
29+
}
30+
31+
- (void)testItExists {
32+
XCTAssert(self.provider != nil);
33+
}
34+
2535
@end

FirebaseUI.xcodeproj/project.pbxproj

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@
7272
8DA941B11D67908E00CD3685 /* FIRFacebookAuthUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA941AF1D67908E00CD3685 /* FIRFacebookAuthUI.m */; };
7373
8DA941B41D6790E900CD3685 /* FIRGoogleAuthUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA941B21D6790E900CD3685 /* FIRGoogleAuthUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
7474
8DA941B51D6790E900CD3685 /* FIRGoogleAuthUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA941B31D6790E900CD3685 /* FIRGoogleAuthUI.m */; };
75-
8DA941BA1D67914800CD3685 /* FirebaseAuthUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FC11D678CDC00B0D3C4 /* FirebaseAuthUI.framework */; };
76-
8DA941BB1D67915100CD3685 /* FirebaseAuthUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FC11D678CDC00B0D3C4 /* FirebaseAuthUI.framework */; };
7775
8DA941BF1D67923F00CD3685 /* ic_google.png in Resources */ = {isa = PBXBuildFile; fileRef = 8DA941BC1D67923F00CD3685 /* ic_google.png */; };
7876
8DA941C01D67923F00CD3685 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 8DA941BD1D67923F00CD3685 /* [email protected] */; };
7977
8DA941C11D67923F00CD3685 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 8DA941BE1D67923F00CD3685 /* [email protected] */; };
@@ -88,36 +86,32 @@
8886
8DA941F01D67951B00CD3685 /* FirebaseCollectionViewDataSourceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA941EC1D67951B00CD3685 /* FirebaseCollectionViewDataSourceTest.m */; };
8987
8DA941F11D67951B00CD3685 /* FirebaseTableViewDataSourceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA941ED1D67951B00CD3685 /* FirebaseTableViewDataSourceTest.m */; };
9088
8DCC4FA81D678CC400B0D3C4 /* FirebaseDatabaseUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCC4FA71D678CC400B0D3C4 /* FirebaseDatabaseUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
91-
8DCC4FAF1D678CC400B0D3C4 /* FirebaseDatabaseUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FA51D678CC400B0D3C4 /* FirebaseDatabaseUI.framework */; };
92-
8DCC4FCB1D678CDC00B0D3C4 /* FirebaseAuthUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FC11D678CDC00B0D3C4 /* FirebaseAuthUI.framework */; };
9389
8DCC4FD01D678CDC00B0D3C4 /* FirebaseAuthUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCC4FCF1D678CDC00B0D3C4 /* FirebaseAuthUITests.m */; };
94-
8DCC4FE71D678CE800B0D3C4 /* FirebaseFacebookAuthUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FDD1D678CE800B0D3C4 /* FirebaseFacebookAuthUI.framework */; };
9590
8DCC4FEC1D678CE800B0D3C4 /* FirebaseFacebookAuthUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCC4FEB1D678CE800B0D3C4 /* FirebaseFacebookAuthUITests.m */; };
96-
8DCC50031D678CF500B0D3C4 /* FirebaseGoogleAuthUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DCC4FF91D678CF500B0D3C4 /* FirebaseGoogleAuthUI.framework */; };
9791
8DCC50081D678CF500B0D3C4 /* FirebaseGoogleAuthUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCC50071D678CF500B0D3C4 /* FirebaseGoogleAuthUITests.m */; };
9892
/* End PBXBuildFile section */
9993

10094
/* Begin PBXContainerItemProxy section */
101-
8DA941B61D67911900CD3685 /* PBXContainerItemProxy */ = {
95+
8D0BD3D21D81E9BC00F7BF3D /* PBXContainerItemProxy */ = {
10296
isa = PBXContainerItemProxy;
10397
containerPortal = 8D2A849D1D678B2B0058DF04 /* Project object */;
10498
proxyType = 1;
10599
remoteGlobalIDString = 8DCC4FC01D678CDC00B0D3C4;
106100
remoteInfo = FirebaseAuthUI;
107101
};
108-
8DA941B81D67912000CD3685 /* PBXContainerItemProxy */ = {
102+
8D0F5E951D81EB06001C47AA /* PBXContainerItemProxy */ = {
109103
isa = PBXContainerItemProxy;
110104
containerPortal = 8D2A849D1D678B2B0058DF04 /* Project object */;
111105
proxyType = 1;
112-
remoteGlobalIDString = 8DCC4FC01D678CDC00B0D3C4;
113-
remoteInfo = FirebaseAuthUI;
106+
remoteGlobalIDString = 8DCC4FA41D678CC400B0D3C4;
107+
remoteInfo = FirebaseDatabaseUI;
114108
};
115-
8DCC4FB01D678CC400B0D3C4 /* PBXContainerItemProxy */ = {
109+
8DA941B81D67912000CD3685 /* PBXContainerItemProxy */ = {
116110
isa = PBXContainerItemProxy;
117111
containerPortal = 8D2A849D1D678B2B0058DF04 /* Project object */;
118112
proxyType = 1;
119-
remoteGlobalIDString = 8DCC4FA41D678CC400B0D3C4;
120-
remoteInfo = FirebaseDatabaseUI;
113+
remoteGlobalIDString = 8DCC4FC01D678CDC00B0D3C4;
114+
remoteInfo = FirebaseAuthUI;
121115
};
122116
8DCC4FCC1D678CDC00B0D3C4 /* PBXContainerItemProxy */ = {
123117
isa = PBXContainerItemProxy;
@@ -174,6 +168,7 @@
174168
8D2A84A61D678B2B0058DF04 /* FirebaseUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FirebaseUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
175169
8D2A84A91D678B2B0058DF04 /* FirebaseUI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirebaseUI.h; sourceTree = "<group>"; };
176170
8D2A84AB1D678B2B0058DF04 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
171+
8D9861121D81EEE2007D3FD3 /* libPods-FirebaseDatabaseUI.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libPods-FirebaseDatabaseUI.a"; path = "../../Library/Developer/Xcode/DerivedData/FirebaseUI-fwcyvciocjlrhqbyjmmybozelsll/Build/Products/Debug-iphonesimulator/libPods-FirebaseDatabaseUI.a"; sourceTree = "<group>"; };
177172
8DA941391D678DEB00CD3685 /* FirebaseArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirebaseArray.h; sourceTree = "<group>"; };
178173
8DA9413A1D678DEB00CD3685 /* FirebaseArrayDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirebaseArrayDelegate.h; sourceTree = "<group>"; };
179174
8DA9413B1D678DEB00CD3685 /* FirebaseCollectionViewDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirebaseCollectionViewDataSource.h; sourceTree = "<group>"; };
@@ -293,7 +288,6 @@
293288
isa = PBXFrameworksBuildPhase;
294289
buildActionMask = 2147483647;
295290
files = (
296-
8DCC4FAF1D678CC400B0D3C4 /* FirebaseDatabaseUI.framework in Frameworks */,
297291
);
298292
runOnlyForDeploymentPostprocessing = 0;
299293
};
@@ -308,39 +302,34 @@
308302
isa = PBXFrameworksBuildPhase;
309303
buildActionMask = 2147483647;
310304
files = (
311-
8DCC4FCB1D678CDC00B0D3C4 /* FirebaseAuthUI.framework in Frameworks */,
312305
);
313306
runOnlyForDeploymentPostprocessing = 0;
314307
};
315308
8DCC4FD91D678CE800B0D3C4 /* Frameworks */ = {
316309
isa = PBXFrameworksBuildPhase;
317310
buildActionMask = 2147483647;
318311
files = (
319-
8DA941BB1D67915100CD3685 /* FirebaseAuthUI.framework in Frameworks */,
320312
);
321313
runOnlyForDeploymentPostprocessing = 0;
322314
};
323315
8DCC4FE31D678CE800B0D3C4 /* Frameworks */ = {
324316
isa = PBXFrameworksBuildPhase;
325317
buildActionMask = 2147483647;
326318
files = (
327-
8DCC4FE71D678CE800B0D3C4 /* FirebaseFacebookAuthUI.framework in Frameworks */,
328319
);
329320
runOnlyForDeploymentPostprocessing = 0;
330321
};
331322
8DCC4FF51D678CF500B0D3C4 /* Frameworks */ = {
332323
isa = PBXFrameworksBuildPhase;
333324
buildActionMask = 2147483647;
334325
files = (
335-
8DA941BA1D67914800CD3685 /* FirebaseAuthUI.framework in Frameworks */,
336326
);
337327
runOnlyForDeploymentPostprocessing = 0;
338328
};
339329
8DCC4FFF1D678CF500B0D3C4 /* Frameworks */ = {
340330
isa = PBXFrameworksBuildPhase;
341331
buildActionMask = 2147483647;
342332
files = (
343-
8DCC50031D678CF500B0D3C4 /* FirebaseGoogleAuthUI.framework in Frameworks */,
344333
);
345334
runOnlyForDeploymentPostprocessing = 0;
346335
};
@@ -360,6 +349,7 @@
360349
8DCC4FFA1D678CF500B0D3C4 /* FirebaseGoogleAuthUI */,
361350
8DCC50061D678CF500B0D3C4 /* FirebaseGoogleAuthUITests */,
362351
8D2A84A71D678B2B0058DF04 /* Products */,
352+
C6755E8A1320A2BECE081E94 /* Frameworks */,
363353
);
364354
sourceTree = "<group>";
365355
};
@@ -614,6 +604,14 @@
614604
path = FirebaseGoogleAuthUITests;
615605
sourceTree = "<group>";
616606
};
607+
C6755E8A1320A2BECE081E94 /* Frameworks */ = {
608+
isa = PBXGroup;
609+
children = (
610+
8D9861121D81EEE2007D3FD3 /* libPods-FirebaseDatabaseUI.a */,
611+
);
612+
name = Frameworks;
613+
sourceTree = "<group>";
614+
};
617615
/* End PBXGroup section */
618616

619617
/* Begin PBXHeadersBuildPhase section */
@@ -732,7 +730,7 @@
732730
isa = PBXNativeTarget;
733731
buildConfigurationList = 8DCC4FBB1D678CC400B0D3C4 /* Build configuration list for PBXNativeTarget "FirebaseDatabaseUITests" */;
734732
buildPhases = (
735-
F2A4D7C9DAECFCEB6E34164A /* [CP] Check Pods Manifest.lock */,
733+
0CFC3EDD5C8B3997272245C3 /* [CP] Check Pods Manifest.lock */,
736734
8DCC4FAA1D678CC400B0D3C4 /* Sources */,
737735
8DCC4FAB1D678CC400B0D3C4 /* Frameworks */,
738736
8DCC4FAC1D678CC400B0D3C4 /* Resources */,
@@ -742,7 +740,7 @@
742740
buildRules = (
743741
);
744742
dependencies = (
745-
8DCC4FB11D678CC400B0D3C4 /* PBXTargetDependency */,
743+
8D0F5E961D81EB06001C47AA /* PBXTargetDependency */,
746744
);
747745
name = FirebaseDatabaseUITests;
748746
productName = FirebaseDatabaseUITests;
@@ -804,7 +802,7 @@
804802
buildRules = (
805803
);
806804
dependencies = (
807-
8DA941B71D67911900CD3685 /* PBXTargetDependency */,
805+
8D0BD3D31D81E9BC00F7BF3D /* PBXTargetDependency */,
808806
);
809807
name = FirebaseFacebookAuthUI;
810808
productName = FirebaseFacebookAuthUI;
@@ -1044,6 +1042,21 @@
10441042
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
10451043
showEnvVarsInLog = 0;
10461044
};
1045+
0CFC3EDD5C8B3997272245C3 /* [CP] Check Pods Manifest.lock */ = {
1046+
isa = PBXShellScriptBuildPhase;
1047+
buildActionMask = 2147483647;
1048+
files = (
1049+
);
1050+
inputPaths = (
1051+
);
1052+
name = "[CP] Check Pods Manifest.lock";
1053+
outputPaths = (
1054+
);
1055+
runOnlyForDeploymentPostprocessing = 0;
1056+
shellPath = /bin/sh;
1057+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
1058+
showEnvVarsInLog = 0;
1059+
};
10471060
0E313AC97278C6E97B08E714 /* [CP] Copy Pods Resources */ = {
10481061
isa = PBXShellScriptBuildPhase;
10491062
buildActionMask = 2147483647;
@@ -1344,21 +1357,6 @@
13441357
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-FirebaseDatabaseUITests/Pods-FirebaseDatabaseUITests-resources.sh\"\n";
13451358
showEnvVarsInLog = 0;
13461359
};
1347-
F2A4D7C9DAECFCEB6E34164A /* [CP] Check Pods Manifest.lock */ = {
1348-
isa = PBXShellScriptBuildPhase;
1349-
buildActionMask = 2147483647;
1350-
files = (
1351-
);
1352-
inputPaths = (
1353-
);
1354-
name = "[CP] Check Pods Manifest.lock";
1355-
outputPaths = (
1356-
);
1357-
runOnlyForDeploymentPostprocessing = 0;
1358-
shellPath = /bin/sh;
1359-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
1360-
showEnvVarsInLog = 0;
1361-
};
13621360
/* End PBXShellScriptBuildPhase section */
13631361

13641362
/* Begin PBXSourcesBuildPhase section */
@@ -1456,21 +1454,21 @@
14561454
/* End PBXSourcesBuildPhase section */
14571455

14581456
/* Begin PBXTargetDependency section */
1459-
8DA941B71D67911900CD3685 /* PBXTargetDependency */ = {
1457+
8D0BD3D31D81E9BC00F7BF3D /* PBXTargetDependency */ = {
14601458
isa = PBXTargetDependency;
14611459
target = 8DCC4FC01D678CDC00B0D3C4 /* FirebaseAuthUI */;
1462-
targetProxy = 8DA941B61D67911900CD3685 /* PBXContainerItemProxy */;
1460+
targetProxy = 8D0BD3D21D81E9BC00F7BF3D /* PBXContainerItemProxy */;
1461+
};
1462+
8D0F5E961D81EB06001C47AA /* PBXTargetDependency */ = {
1463+
isa = PBXTargetDependency;
1464+
target = 8DCC4FA41D678CC400B0D3C4 /* FirebaseDatabaseUI */;
1465+
targetProxy = 8D0F5E951D81EB06001C47AA /* PBXContainerItemProxy */;
14631466
};
14641467
8DA941B91D67912000CD3685 /* PBXTargetDependency */ = {
14651468
isa = PBXTargetDependency;
14661469
target = 8DCC4FC01D678CDC00B0D3C4 /* FirebaseAuthUI */;
14671470
targetProxy = 8DA941B81D67912000CD3685 /* PBXContainerItemProxy */;
14681471
};
1469-
8DCC4FB11D678CC400B0D3C4 /* PBXTargetDependency */ = {
1470-
isa = PBXTargetDependency;
1471-
target = 8DCC4FA41D678CC400B0D3C4 /* FirebaseDatabaseUI */;
1472-
targetProxy = 8DCC4FB01D678CC400B0D3C4 /* PBXContainerItemProxy */;
1473-
};
14741472
8DCC4FCD1D678CDC00B0D3C4 /* PBXTargetDependency */ = {
14751473
isa = PBXTargetDependency;
14761474
target = 8DCC4FC01D678CDC00B0D3C4 /* FirebaseAuthUI */;
@@ -1693,6 +1691,7 @@
16931691
8DCC4FB81D678CC400B0D3C4 /* Debug */ = {
16941692
isa = XCBuildConfiguration;
16951693
buildSettings = {
1694+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
16961695
INFOPLIST_FILE = FirebaseDatabaseUITests/Info.plist;
16971696
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
16981697
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseDatabaseUITests;
@@ -1703,6 +1702,7 @@
17031702
8DCC4FB91D678CC400B0D3C4 /* Release */ = {
17041703
isa = XCBuildConfiguration;
17051704
buildSettings = {
1705+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
17061706
INFOPLIST_FILE = FirebaseDatabaseUITests/Info.plist;
17071707
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
17081708
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseDatabaseUITests;

Podfile

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,53 +14,40 @@ end
1414

1515
target 'FirebaseDatabaseUI' do
1616
# Pods for Database
17-
pod 'Firebase'
1817
pod 'Firebase/Database'
1918

2019
target 'FirebaseDatabaseUITests' do
2120
inherit! :search_paths
22-
pod 'Firebase'
2321
pod 'Firebase/Database'
2422
end
2523
end
2624

2725
target 'FirebaseAuthUI' do
2826
# Pods for Auth
29-
pod 'Firebase'
3027
pod 'Firebase/Auth'
3128

3229
target 'FirebaseAuthUITests' do
3330
inherit! :search_paths
34-
pod 'Firebase'
35-
pod 'Firebase/Auth'
3631
end
3732
end
3833

3934
target 'FirebaseFacebookAuthUI' do
4035
# Pods for Facebook Auth
41-
pod 'Firebase'
4236
pod 'Firebase/Auth'
4337
pod 'FBSDKLoginKit', '~> 4.0'
4438

4539
target 'FirebaseFacebookAuthUITests' do
4640
inherit! :search_paths
47-
pod 'Firebase'
48-
pod 'Firebase/Auth'
49-
pod 'FBSDKLoginKit', '~> 4.0'
5041
end
5142
end
5243

5344
target 'FirebaseGoogleAuthUI' do
5445
# Pods for Google Auth
55-
pod 'Firebase'
5646
pod 'Firebase/Auth'
5747
pod 'GoogleSignIn', '~> 4.0'
5848

5949
target 'FirebaseGoogleAuthUITests' do
6050
inherit! :search_paths
61-
pod 'Firebase'
62-
pod 'Firebase/Auth'
63-
pod 'GoogleSignIn', '~> 4.0'
6451
end
6552
end
6653

0 commit comments

Comments
 (0)