Skip to content

Commit bce492f

Browse files
committed
fix FirestoreUI issues, release v4.5.0
Change-Id: I564c99c9874fc9101c7ae646cecdd984f965b4fe
1 parent a320ef3 commit bce492f

16 files changed

+20
-297
lines changed

FirebaseFirestoreUI/FUIFirestoreCollectionViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ NS_ASSUME_NONNULL_BEGIN
132132
* @return The created data source. This value must be retained while the collection
133133
* view is in use.
134134
*/
135-
- (FUIFirestoreCollectionViewDataSource *)bindToQuery:(FIRQuery *)query
135+
- (FUIFirestoreCollectionViewDataSource *)bindToFirestoreQuery:(FIRQuery *)query
136136
populateCell:(UICollectionViewCell *(^)(UICollectionView *collectionView,
137137
NSIndexPath *indexPath,
138138
FIRDocumentSnapshot *object))populateCell

FirebaseFirestoreUI/FUIFirestoreCollectionViewDataSource.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ - (NSInteger)collectionView:(nonnull UICollectionView *)collectionView
170170

171171
@implementation UICollectionView (FUIFirestoreCollectionViewDataSource)
172172

173-
- (FUIFirestoreCollectionViewDataSource *)bindToQuery:(FIRQuery *)query
173+
- (FUIFirestoreCollectionViewDataSource *)bindToFirestoreQuery:(FIRQuery *)query
174174
populateCell:(UICollectionViewCell *(^)(UICollectionView *,
175175
NSIndexPath *,
176176
FIRDocumentSnapshot *))populateCell {

FirebaseFirestoreUI/FUIFirestoreTableViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ NS_ASSUME_NONNULL_BEGIN
135135
* @return The created data source. This value must be retained while the table
136136
* view is in use.
137137
*/
138-
- (FUIFirestoreTableViewDataSource *)bindToQuery:(FIRQuery *)query
138+
- (FUIFirestoreTableViewDataSource *)bindToFirestoreQuery:(FIRQuery *)query
139139
populateCell:(UITableViewCell *(^)(UITableView *tableView,
140140
NSIndexPath *indexPath,
141141
FIRDocumentSnapshot *object))populateCell

FirebaseFirestoreUI/FUIFirestoreTableViewDataSource.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger
158158

159159
@implementation UITableView (FUIFirestoreTableViewDataSource)
160160

161-
- (FUIFirestoreTableViewDataSource *)bindToQuery:(FIRQuery *)query
161+
- (FUIFirestoreTableViewDataSource *)bindToFirestoreQuery:(FIRQuery *)query
162162
populateCell:(UITableViewCell *(^)(UITableView *tableView,
163163
NSIndexPath *indexPath,
164164
FIRDocumentSnapshot *snap))populateCell {

FirebaseUI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'UI binding libraries for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'FirebaseUIFrameworks/LICENSE' }
7-
s.source = { :http => 'https://github.com/firebase/FirebaseUI-iOS/releases/download/v4.4.0/FirebaseUIFrameworks.zip' }
7+
s.source = { :http => 'https://github.com/firebase/FirebaseUI-iOS/releases/download/v4.5.0/FirebaseUIFrameworks.zip' }
88
s.author = 'Firebase'
99
s.platform = :ios
1010
s.ios.deployment_target = '9.0'

FirebaseUI.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
8D3758551F6C671D007C4D87 /* FUIDocumentChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D3758541F6C671D007C4D87 /* FUIDocumentChange.m */; };
1818
8D3A120E1DC2B122007558BA /* FUISortedArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D3A120C1DC2B122007558BA /* FUISortedArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
1919
8D3A120F1DC2B122007558BA /* FUISortedArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D3A120D1DC2B122007558BA /* FUISortedArray.m */; };
20-
8D4B6BC01F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4B6BBE1F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.h */; };
20+
8D4B6BC01F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4B6BBE1F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
2121
8D4B6BC11F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D4B6BBF1F69EB2900C4A14B /* FUIFirestoreTableViewDataSource.m */; };
2222
8D559D4A1F68A7F100CE9D8A /* FirebaseFirestoreUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D559D411F68A7F100CE9D8A /* FirebaseFirestoreUI.framework */; };
2323
8D559D511F68A7F100CE9D8A /* FirebaseFirestoreUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D559D431F68A7F100CE9D8A /* FirebaseFirestoreUI.h */; settings = {ATTRIBUTES = (Public, ); }; };

FirebaseUI_dev_auth.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAuthUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'UI Auth Base library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_db.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseDatabaseUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'Firebase Database UI binding library.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_fb.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseFacebookAuthUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'Facebook UI binding library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_ggl.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseGoogleAuthUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'Google UI binding library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_phone.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebasePhoneAuthUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'Phone Auth UI binding library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_storage.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseStorageUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'UI Storage library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

FirebaseUI_dev_tw.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseTwitterAuthUI'
3-
s.version = '4.4.0'
3+
s.version = '4.5.0'
44
s.summary = 'Twitter UI binding library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }

Gemfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: https://github.com/CocoaPods/CocoaPods.git
3-
revision: eb900a784c16d8ec13b6b97d36431248e73be006
3+
revision: f6a7d53286ccbc4c5e419c33f0eb3dbc320af2be
44
specs:
55
cocoapods (1.4.0.beta.1)
66
activesupport (>= 4.0.2, < 5)
@@ -24,7 +24,7 @@ GIT
2424

2525
GIT
2626
remote: https://github.com/CocoaPods/Core.git
27-
revision: 283ac03a69984faab02c03ad65871966f7581481
27+
revision: 3efa5e2f0dec56af6fdcfd98822156b65c888ef5
2828
specs:
2929
cocoapods-core (1.4.0.beta.1)
3030
activesupport (>= 4.0.2, < 6)
@@ -33,7 +33,7 @@ GIT
3333

3434
GIT
3535
remote: https://github.com/CocoaPods/Xcodeproj.git
36-
revision: 07607507950d971f7271c8f288e0b14cc11ea87a
36+
revision: 0b7414adf9a21efe139eeed9eda4c16eede431fd
3737
specs:
3838
xcodeproj (1.5.2)
3939
CFPropertyList (~> 2.3.3)
@@ -62,11 +62,13 @@ GEM
6262
netrc (~> 0.11)
6363
cocoapods-try (1.1.0)
6464
colored2 (3.1.2)
65+
concurrent-ruby (1.0.5)
6566
escape (0.0.4)
6667
fourflusher (2.0.1)
6768
fuzzy_match (2.0.4)
6869
gh_inspector (1.0.3)
69-
i18n (0.8.6)
70+
i18n (0.9.0)
71+
concurrent-ruby (~> 1.0)
7072
minitest (5.10.3)
7173
molinillo (0.6.3)
7274
nanaimo (0.2.3)

samples/objc/FirebaseUI-demo-objc.xcodeproj/project.pbxproj

Lines changed: 0 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
/* Begin PBXBuildFile section */
1010
8D7D5DC11D9D9536006C1857 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8D7D5DC01D9D9536006C1857 /* GoogleService-Info.plist */; };
1111
8D7F86B51D9DAA0100C2A122 /* FUIStorageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7F86B41D9DAA0100C2A122 /* FUIStorageViewController.m */; };
12-
B1C730E28DEEA49E857E4678 /* Pods_FirebaseUI_demo_objc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E9E94AE19193076EE6A1C1D /* Pods_FirebaseUI_demo_objc.framework */; };
1312
C30AEB081ED610740084E328 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = C30AEB051ED610740084E328 /* LaunchScreen.xib */; };
1413
C30AEB0A1ED610740084E328 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C30AEB071ED610740084E328 /* Main.storyboard */; };
1514
C30AEB0B1ED610780084E328 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C30AEB0D1ED610780084E328 /* Localizable.strings */; };
@@ -40,9 +39,6 @@
4039
/* End PBXBuildFile section */
4140

4241
/* Begin PBXFileReference section */
43-
0E9E94AE19193076EE6A1C1D /* Pods_FirebaseUI_demo_objc.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FirebaseUI_demo_objc.framework; sourceTree = BUILT_PRODUCTS_DIR; };
44-
4D897A28BD94E8A5736D6BB1 /* Pods-FirebaseUI-demo-objc.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseUI-demo-objc.debug.xcconfig"; path = "Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc.debug.xcconfig"; sourceTree = "<group>"; };
45-
6F543A4A2490F55C5E29CEEC /* Pods-FirebaseUI-demo-objc.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseUI-demo-objc.release.xcconfig"; path = "Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc.release.xcconfig"; sourceTree = "<group>"; };
4642
8D7D5DC01D9D9536006C1857 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
4743
8D7F86B31D9DAA0100C2A122 /* FUIStorageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FUIStorageViewController.h; path = Storage/FUIStorageViewController.h; sourceTree = "<group>"; };
4844
8D7F86B41D9DAA0100C2A122 /* FUIStorageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FUIStorageViewController.m; path = Storage/FUIStorageViewController.m; sourceTree = "<group>"; };
@@ -181,30 +177,12 @@
181177
isa = PBXFrameworksBuildPhase;
182178
buildActionMask = 2147483647;
183179
files = (
184-
B1C730E28DEEA49E857E4678 /* Pods_FirebaseUI_demo_objc.framework in Frameworks */,
185180
);
186181
runOnlyForDeploymentPostprocessing = 0;
187182
};
188183
/* End PBXFrameworksBuildPhase section */
189184

190185
/* Begin PBXGroup section */
191-
2C88CEFFB983F54FEAA9E884 /* Frameworks */ = {
192-
isa = PBXGroup;
193-
children = (
194-
0E9E94AE19193076EE6A1C1D /* Pods_FirebaseUI_demo_objc.framework */,
195-
);
196-
name = Frameworks;
197-
sourceTree = "<group>";
198-
};
199-
413E3E09EA41422454FCFCC9 /* Pods */ = {
200-
isa = PBXGroup;
201-
children = (
202-
4D897A28BD94E8A5736D6BB1 /* Pods-FirebaseUI-demo-objc.debug.xcconfig */,
203-
6F543A4A2490F55C5E29CEEC /* Pods-FirebaseUI-demo-objc.release.xcconfig */,
204-
);
205-
name = Pods;
206-
sourceTree = "<group>";
207-
};
208186
8D7D5DC51D9DA075006C1857 /* Storage */ = {
209187
isa = PBXGroup;
210188
children = (
@@ -285,8 +263,6 @@
285263
8D7D5DC01D9D9536006C1857 /* GoogleService-Info.plist */,
286264
D81A05F21B86A78700498183 /* FirebaseUI-demo-objc */,
287265
D81A05F11B86A78700498183 /* Products */,
288-
413E3E09EA41422454FCFCC9 /* Pods */,
289-
2C88CEFFB983F54FEAA9E884 /* Frameworks */,
290266
);
291267
sourceTree = "<group>";
292268
};
@@ -332,12 +308,9 @@
332308
isa = PBXNativeTarget;
333309
buildConfigurationList = D81A06131B86A78700498183 /* Build configuration list for PBXNativeTarget "FirebaseUI-demo-objc" */;
334310
buildPhases = (
335-
4561BA562D1BA6D80A1B6819 /* [CP] Check Pods Manifest.lock */,
336311
D81A05EC1B86A78700498183 /* Sources */,
337312
D81A05ED1B86A78700498183 /* Frameworks */,
338313
D81A05EE1B86A78700498183 /* Resources */,
339-
5610C7F0196CF7BB87291D17 /* [CP] Embed Pods Frameworks */,
340-
B83BEABE9A943ACA02D328EA /* [CP] Copy Pods Resources */,
341314
);
342315
buildRules = (
343316
);
@@ -493,86 +466,6 @@
493466
};
494467
/* End PBXResourcesBuildPhase section */
495468

496-
/* Begin PBXShellScriptBuildPhase section */
497-
4561BA562D1BA6D80A1B6819 /* [CP] Check Pods Manifest.lock */ = {
498-
isa = PBXShellScriptBuildPhase;
499-
buildActionMask = 2147483647;
500-
files = (
501-
);
502-
inputPaths = (
503-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
504-
"${PODS_ROOT}/Manifest.lock",
505-
);
506-
name = "[CP] Check Pods Manifest.lock";
507-
outputPaths = (
508-
"$(DERIVED_FILE_DIR)/Pods-FirebaseUI-demo-objc-checkManifestLockResult.txt",
509-
);
510-
runOnlyForDeploymentPostprocessing = 0;
511-
shellPath = /bin/sh;
512-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
513-
showEnvVarsInLog = 0;
514-
};
515-
5610C7F0196CF7BB87291D17 /* [CP] Embed Pods Frameworks */ = {
516-
isa = PBXShellScriptBuildPhase;
517-
buildActionMask = 2147483647;
518-
files = (
519-
);
520-
inputPaths = (
521-
"${SRCROOT}/Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc-frameworks.sh",
522-
"${BUILT_PRODUCTS_DIR}/Bolts/Bolts.framework",
523-
"${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework",
524-
"${BUILT_PRODUCTS_DIR}/FBSDKLoginKit/FBSDKLoginKit.framework",
525-
"${BUILT_PRODUCTS_DIR}/GTMOAuth2/GTMOAuth2.framework",
526-
"${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework",
527-
"${BUILT_PRODUCTS_DIR}/GoogleToolboxForMac/GoogleToolboxForMac.framework",
528-
"${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework",
529-
"${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework",
530-
"${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework",
531-
);
532-
name = "[CP] Embed Pods Frameworks";
533-
outputPaths = (
534-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Bolts.framework",
535-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBSDKCoreKit.framework",
536-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBSDKLoginKit.framework",
537-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMOAuth2.framework",
538-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework",
539-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleToolboxForMac.framework",
540-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework",
541-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework",
542-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework",
543-
);
544-
runOnlyForDeploymentPostprocessing = 0;
545-
shellPath = /bin/sh;
546-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc-frameworks.sh\"\n";
547-
showEnvVarsInLog = 0;
548-
};
549-
B83BEABE9A943ACA02D328EA /* [CP] Copy Pods Resources */ = {
550-
isa = PBXShellScriptBuildPhase;
551-
buildActionMask = 2147483647;
552-
files = (
553-
);
554-
inputPaths = (
555-
"${SRCROOT}/Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc-resources.sh",
556-
"$PODS_CONFIGURATION_BUILD_DIR/FirebaseUI/FirebaseAuthUI.bundle",
557-
"$PODS_CONFIGURATION_BUILD_DIR/FirebaseUI/FirebaseFacebookAuthUI.bundle",
558-
"$PODS_CONFIGURATION_BUILD_DIR/FirebaseUI/FirebaseGoogleAuthUI.bundle",
559-
"$PODS_CONFIGURATION_BUILD_DIR/FirebaseUI/FirebasePhoneAuthUI.bundle",
560-
"$PODS_CONFIGURATION_BUILD_DIR/FirebaseUI/FirebaseTwitterAuthUI.bundle",
561-
"${PODS_ROOT}/GoogleSignIn/Resources/GoogleSignIn.bundle",
562-
"${PODS_ROOT}/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle",
563-
"${PODS_ROOT}/TwitterKit/iOS/TwitterKit.framework/TwitterShareExtensionUIResources.bundle",
564-
);
565-
name = "[CP] Copy Pods Resources";
566-
outputPaths = (
567-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}",
568-
);
569-
runOnlyForDeploymentPostprocessing = 0;
570-
shellPath = /bin/sh;
571-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-FirebaseUI-demo-objc/Pods-FirebaseUI-demo-objc-resources.sh\"\n";
572-
showEnvVarsInLog = 0;
573-
};
574-
/* End PBXShellScriptBuildPhase section */
575-
576469
/* Begin PBXSourcesBuildPhase section */
577470
D81A05EC1B86A78700498183 /* Sources */ = {
578471
isa = PBXSourcesBuildPhase;
@@ -784,7 +677,6 @@
784677
};
785678
D81A06141B86A78700498183 /* Debug */ = {
786679
isa = XCBuildConfiguration;
787-
baseConfigurationReference = 4D897A28BD94E8A5736D6BB1 /* Pods-FirebaseUI-demo-objc.debug.xcconfig */;
788680
buildSettings = {
789681
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
790682
CODE_SIGN_ENTITLEMENTS = "FirebaseUI-demo-objc/FirebaseUI-demo-objc.entitlements";
@@ -818,7 +710,6 @@
818710
};
819711
D81A06151B86A78700498183 /* Release */ = {
820712
isa = XCBuildConfiguration;
821-
baseConfigurationReference = 6F543A4A2490F55C5E29CEEC /* Pods-FirebaseUI-demo-objc.release.xcconfig */;
822713
buildSettings = {
823714
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
824715
CODE_SIGN_ENTITLEMENTS = "FirebaseUI-demo-objc/FirebaseUI-demo-objc.entitlements";

0 commit comments

Comments
 (0)