Skip to content

Commit 90bb541

Browse files
committed
Shuffling things around, removed -ObjC flag from Framework
1 parent dd539a1 commit 90bb541

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

FirebaseUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = "FirebaseUI"
3-
s.version = "0.1.0"
3+
s.version = "0.1.1"
44
s.summary = "UI binding libraries for Firebase."
55
s.homepage = "https://github.com/firebase/FirebaseUI-iOS"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }
77
s.author = { "Firebase" => "[email protected]" }
8-
s.source = { :git => "https://github.com/firebase/FirebaseUI-iOS.git", :tag => 'v0.1.0' }
8+
s.source = { :git => "https://github.com/firebase/FirebaseUI-iOS.git", :tag => 'v0.1.1' }
99
s.source_files = "FirebaseUI/**/*.{h,m}"
1010
s.dependency 'Firebase', '~> 2.3'
1111
s.platform = :ios
1212
s.ios.deployment_target = '7.0'
13-
s.ios.framework = 'UIKit'
13+
s.ios.framework = 'UIKit', 'Foundation'
1414
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Firebase"'}
1515
s.requires_arc = true
1616
end

FirebaseUI.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
/* End PBXAggregateTarget section */
2323

2424
/* Begin PBXBuildFile section */
25-
D8124F411B72A90C003441AD /* Firebase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8124F401B72A90C003441AD /* Firebase.framework */; };
2625
D8124F421B72B344003441AD /* FirebaseTableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B6ACF11B583C41005CDDB2 /* FirebaseTableViewDataSource.m */; };
27-
D8124F431B72B347003441AD /* FirebaseTableViewDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B6ACEE1B583C33005CDDB2 /* FirebaseTableViewDataSource.h */; };
26+
D8124F431B72B347003441AD /* FirebaseTableViewDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B6ACEE1B583C33005CDDB2 /* FirebaseTableViewDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
27+
D8124F441B72C94E003441AD /* Firebase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8124F401B72A90C003441AD /* Firebase.framework */; };
2828
D8784C401B719F280025587E /* FirebaseArrayDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D8784C3F1B719F280025587E /* FirebaseArrayDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
2929
D8B6ACE51B58383C005CDDB2 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8C579BB1B5837DF00899F86 /* UIKit.framework */; };
3030
D8B6ACE71B583877005CDDB2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8B6ACE61B583877005CDDB2 /* Foundation.framework */; };
@@ -82,8 +82,8 @@
8282
isa = PBXFrameworksBuildPhase;
8383
buildActionMask = 2147483647;
8484
files = (
85+
D8124F441B72C94E003441AD /* Firebase.framework in Frameworks */,
8586
D8B6ACE51B58383C005CDDB2 /* UIKit.framework in Frameworks */,
86-
D8124F411B72A90C003441AD /* Firebase.framework in Frameworks */,
8787
D8B6ACE71B583877005CDDB2 /* Foundation.framework in Frameworks */,
8888
);
8989
runOnlyForDeploymentPostprocessing = 0;
@@ -164,8 +164,8 @@
164164
D8B6ACF81B583D3E005CDDB2 /* FirebaseUI.h in Headers */,
165165
D8B6ACF91B583D3E005CDDB2 /* FirebaseDataSource.h in Headers */,
166166
D8784C401B719F280025587E /* FirebaseArrayDelegate.h in Headers */,
167-
D8B6ACFB1B583D48005CDDB2 /* FirebaseArray.h in Headers */,
168167
D8124F431B72B347003441AD /* FirebaseTableViewDataSource.h in Headers */,
168+
D8B6ACFB1B583D48005CDDB2 /* FirebaseArray.h in Headers */,
169169
);
170170
runOnlyForDeploymentPostprocessing = 0;
171171
};
@@ -283,15 +283,15 @@
283283
D8B6ADA51B58DCDD005CDDB2 /* Debug */ = {
284284
isa = XCBuildConfiguration;
285285
buildSettings = {
286-
OTHER_LDFLAGS = "-ObjC";
286+
OTHER_LDFLAGS = "";
287287
PRODUCT_NAME = "$(TARGET_NAME)";
288288
};
289289
name = Debug;
290290
};
291291
D8B6ADA61B58DCDD005CDDB2 /* Release */ = {
292292
isa = XCBuildConfiguration;
293293
buildSettings = {
294-
OTHER_LDFLAGS = "-ObjC";
294+
OTHER_LDFLAGS = "";
295295
PRODUCT_NAME = "$(TARGET_NAME)";
296296
};
297297
name = Release;

FirebaseUI/API/FirebaseTableViewDataSource.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030

3131
#import "FirebaseDataSource.h"
3232

33+
@class Firebase;
34+
3335
@interface FirebaseTableViewDataSource : FirebaseDataSource <UITableViewDataSource>
3436

3537
/**

0 commit comments

Comments
 (0)