Skip to content

Commit f05d7a7

Browse files
committed
WIP
1 parent 7d48b26 commit f05d7a7

File tree

2 files changed

+6
-50
lines changed

2 files changed

+6
-50
lines changed

Firestack.podspec

+4-48
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ Pod::Spec.new do |s|
5353
# If this Pod runs only on iOS or OS X, then specify the platform and
5454
# the deployment target. You can optionally include the target after the platform.
5555

56-
s.platform = :ios
57-
# s.platform = :ios, "5.0"
58-
5956
# When using multiple platforms
6057
s.ios.deployment_target = "8.0"
6158
# s.osx.deployment_target = "10.7"
@@ -70,45 +67,14 @@ Pod::Spec.new do |s|
7067
#
7168

7269
# s.source = { :git => "https://github.com/fullstackreact/react-native-firestack.git", :tag => "#{s.version}" }
73-
s.source = { :git => repo['url'], :branch => "feature/remoteConfig" }
74-
75-
76-
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
77-
#
78-
# CocoaPods is smart about how it includes source code. For source files
79-
# giving a folder will include any swift, h, m, mm, c & cpp files.
80-
# For header files it will include any header in the folder.
81-
# Not including the public_header_files will make all headers public.
82-
#
83-
70+
s.source = { :git => repo['url'], :tag => "feature/remoteConfig" }
8471
# s.source_files = "ios/Firestack"#, "ios/Firestack/*.{h,m}"
85-
# s.exclude_files = "Classes/Exclude"
86-
87-
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
88-
#
89-
# A list of resources included with the Pod. These are copied into the
90-
# target bundle with a build phase script. Anything else will be cleaned.
91-
# You can preserve files from being cleaned, please don't preserve
92-
# non-essential files like tests, examples and documentation.
93-
#
94-
95-
# s.resource = "icon.png"
96-
# s.resources = "Resources/*.png"
9772

9873
s.source_files = 'ios/Firestack/**/*.{h,m}'
99-
s.preserve_paths = "**/*.js"
100-
s.dependency 'React'
74+
s.preserve_paths = 'README.md', 'package.json', '**/*.js'
75+
# s.preserve_paths = "**/*.js", "ios/Firestack/Pods/**/*.h"
10176
# s.preserve_paths = ["**/*.js", "ios/Firestack/Pods/**/*"]
10277

103-
104-
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
105-
#
106-
# Link your library with frameworks, or libraries. Libraries do not include
107-
# the lib prefix of their name.
108-
#
109-
110-
# s.framework = "SomeFramework"
111-
# s.frameworks = "SomeFramework", "AnotherFramework"
11278
[
11379
'Firebase/Core',
11480
'Firebase/Auth',
@@ -118,6 +84,7 @@ Pod::Spec.new do |s|
11884
].each do |lib|
11985
s.dependency lib
12086
end
87+
s.dependency 'React'
12188

12289
s.pod_target_xcconfig = {
12390
'OTHER_LDFLAGS' => '$(inherited) -ObjC -lBOZO'
@@ -127,17 +94,6 @@ Pod::Spec.new do |s|
12794
s.ios.framework = 'SystemConfiguration', 'CFNetwork', 'Security'
12895
s.ios.libraries = 'c++'
12996

130-
131-
# s.library = "iconv"
132-
# s.libraries = "iconv", "xml2"
133-
134-
135-
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
136-
#
137-
# If your library depends on compiler flags you can set them in the xcconfig hash
138-
# where they will only apply to your library. If you depend on other Podspecs
139-
# you can include multiple dependencies to ensure it works.
140-
14197
# s.requires_arc = true
14298

14399
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }

ios/Firestack/Firestack.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
// #import <UIKit/UIKit.h>
88
#import <Firebase.h>
9-
#import "RCTBridgeModule.h"
10-
#import "RCTEventDispatcher.h"
9+
#import <React/RCTBridgeModule.h>
10+
#import <React/RCTEventDispatcher.h>
1111

1212
@interface Firestack : NSObject <RCTBridgeModule> {
1313
FIRAuthStateDidChangeListenerHandle authListenerHandle;

0 commit comments

Comments
 (0)